Man Linux: Main Page and Category List

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

   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
               CANID

           a11.ext.code  Reply Code
               Unsigned 8-bit integer
               PDSN Code.

           a11.ext.dormant  All Dormant Indicator
               Unsigned 16-bit integer
               All Dormant Indicator.

           a11.ext.fqi.dscp  Forward DSCP
               Unsigned 8-bit integer
               Forward Flow DSCP.

           a11.ext.fqi.entrylen  Entry Length
               Unsigned 8-bit integer
               Forward Entry Length.

           a11.ext.fqi.flags  Flags
               Unsigned 8-bit integer
               Forward Flow Entry Flags.

           a11.ext.fqi.flowcount  Forward Flow Count
               Unsigned 8-bit integer
               Forward Flow Count.

           a11.ext.fqi.flowid  Forward Flow Id
               Unsigned 8-bit integer
               Forward Flow Id.

           a11.ext.fqi.flowstate  Forward Flow State
               Unsigned 8-bit integer
               Forward Flow State.

           a11.ext.fqi.graqos  Granted QoS
               Byte array
               Forward Granted QoS.

           a11.ext.fqi.graqoslen  Granted QoS Length
               Unsigned 8-bit integer
               Forward Granted QoS Length.

           a11.ext.fqi.length  Length
               Unsigned 16-bit integer

           a11.ext.fqi.reqqos  Requested QoS
               Byte array
               Forward Requested QoS.

           a11.ext.fqi.reqqoslen  Requested QoS Length
               Unsigned 8-bit integer
               Forward Requested QoS Length.

           a11.ext.fqi.srid  SRID
               Unsigned 8-bit integer
               Forward Flow Entry SRID.

           a11.ext.fqui.flowcount  Forward QoS Update Flow Count
               Unsigned 8-bit integer
               Forward QoS Update Flow Count.

           a11.ext.fqui.updatedqos  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
               MNSR-ID

           a11.ext.msid  MSID(BCD)
               String
               MSID(BCD).

           a11.ext.msid_len  MSID Length
               Unsigned 8-bit integer
               MSID Length.

           a11.ext.msid_type  MSID Type
               Unsigned 16-bit integer
               MSID Type.

           a11.ext.panid  PANID
               Byte array
               PANID

           a11.ext.ppaddr  Anchor P-P Address
               IPv4 address
               Anchor P-P Address.

           a11.ext.ptype  Protocol Type
               Unsigned 16-bit integer
               Protocol Type.

           a11.ext.qosmode  QoS Mode
               Unsigned 8-bit integer
               QoS Mode.

           a11.ext.rqi.entrylen  Entry Length
               Unsigned 8-bit integer
               Reverse Flow Entry Length.

           a11.ext.rqi.flowcount  Reverse Flow Count
               Unsigned 8-bit integer
               Reverse Flow Count.

           a11.ext.rqi.flowid  Reverse Flow Id
               Unsigned 8-bit integer
               Reverse Flow Id.

           a11.ext.rqi.flowstate  Flow State
               Unsigned 8-bit integer
               Reverse Flow State.

           a11.ext.rqi.graqos  Granted QoS
               Byte array
               Reverse Granted QoS.

           a11.ext.rqi.graqoslen  Granted QoS Length
               Unsigned 8-bit integer
               Reverse Granted QoS Length.

           a11.ext.rqi.length  Length
               Unsigned 16-bit integer

           a11.ext.rqi.reqqos  Requested QoS
               Byte array
               Reverse Requested QoS.

           a11.ext.rqi.reqqoslen  Requested QoS Length
               Unsigned 8-bit integer
               Reverse Requested QoS Length.

           a11.ext.rqi.srid  SRID
               Unsigned 8-bit integer
               Reverse Flow Entry SRID.

           a11.ext.rqui.flowcount  Reverse QoS Update Flow Count
               Unsigned 8-bit integer
               Reverse QoS Update Flow Count.

           a11.ext.rqui.updatedqos  Reverse Updated QoS Sub-Blob
               Byte array
               Reverse Updated QoS Sub-Blob.

           a11.ext.rqui.updatedqoslen  Reverse Updated QoS Sub-Blob Length
               Unsigned 8-bit integer
               Reverse Updated QoS Sub-Blob Length.

           a11.ext.sidver  Session ID Version
               Unsigned 8-bit integer
               Session ID Version

           a11.ext.sqp.profile  Subscriber QoS Profile
               Byte array
               Subscriber QoS Profile.

           a11.ext.sqp.profilelen  Subscriber QoS Profile Length
               Byte array
               Subscriber QoS Profile Length.

           a11.ext.srvopt  Service Option
               Unsigned 16-bit integer
               Service Option.

           a11.ext.type  Extension Type
               Unsigned 8-bit integer
               Mobile IP Extension Type.

           a11.ext.vid  Vendor ID
               Unsigned 32-bit integer
               Vendor ID.

           a11.extension  Extension
               Byte array
               Extension

           a11.flags  Flags
               Unsigned 8-bit integer

           a11.g  GRE
               Boolean
               MN wants GRE encapsulation

           a11.haaddr  Home Agent
               IPv4 address
               Home agent IP Address.

           a11.homeaddr  Home Address
               IPv4 address
               Mobile Node's home address.

           a11.ident  Identification
               Byte array
               MN Identification.

           a11.life  Lifetime
               Unsigned 16-bit integer
               A11 Registration Lifetime.

           a11.m  Minimal Encapsulation
               Boolean
               MN wants Minimal encapsulation

           a11.nai  NAI
               String
               NAI

           a11.s  Simultaneous Bindings
               Boolean
               Simultaneous Bindings Allowed

           a11.t  Reverse Tunneling
               Boolean
               Reverse tunneling requested

           a11.type  Message Type
               Unsigned 8-bit integer
               A11 Message type.

           a11.v  Van Jacobson
               Boolean
               Van Jacobson

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

           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
               Key

           eapol.keydes.key_info  Key Information
               Unsigned 16-bit integer
               WPA key info

           eapol.keydes.key_info.encr_key_data  Encrypted Key Data flag
               Boolean
               Encrypted Key Data flag

           eapol.keydes.key_info.error  Error flag
               Boolean
               Error flag

           eapol.keydes.key_info.install  Install flag
               Boolean
               Install flag

           eapol.keydes.key_info.key_ack  Key Ack flag
               Boolean
               Key Ack flag

           eapol.keydes.key_info.key_index  Key Index
               Unsigned 16-bit integer
               Key Index (0-3) (RSN: Reserved)

           eapol.keydes.key_info.key_mic  Key MIC flag
               Boolean
               Key MIC flag

           eapol.keydes.key_info.key_type  Key Type
               Boolean
               Key Type (Pairwise or Group)

           eapol.keydes.key_info.keydes_ver  Key Descriptor Version
               Unsigned 16-bit integer
               Key Descriptor Version Type

           eapol.keydes.key_info.request  Request flag
               Boolean
               Request flag

           eapol.keydes.key_info.secure  Secure flag
               Boolean
               Secure flag

           eapol.keydes.key_iv  Key IV
               Byte array
               Key Initialization Vector

           eapol.keydes.key_signature  Key Signature
               Byte array
               Key Signature

           eapol.keydes.keylen  Key Length
               Unsigned 16-bit integer
               Key Length

           eapol.keydes.mic  WPA Key MIC
               Byte array
               WPA Key Message Integrity Check

           eapol.keydes.nonce  Nonce
               Byte array
               WPA Key Nonce

           eapol.keydes.replay_counter  Replay Counter
               Unsigned 64-bit integer
               Replay Counter

           eapol.keydes.rsc  WPA Key RSC
               Byte array
               WPA Key Receive Sequence Counter

           eapol.keydes.type  Descriptor Type
               Unsigned 8-bit integer
               Key Descriptor Type

           eapol.len  Length
               Unsigned 16-bit integer
               Length

           eapol.type  Type
               Unsigned 8-bit integer

           eapol.version  Version
               Unsigned 8-bit integer

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

           acp133.ACPPreferredDelivery  ACPPreferredDelivery
               Unsigned 32-bit integer
               acp133.ACPPreferredDelivery

           acp133.ALType  ALType
               Signed 32-bit integer
               acp133.ALType

           acp133.AddressCapabilities  AddressCapabilities
               No value
               acp133.AddressCapabilities

           acp133.Addressees  Addressees
               Unsigned 32-bit integer
               acp133.Addressees

           acp133.Addressees_item  Addressees item
               String
               acp133.PrintableString_SIZE_1_55

           acp133.AlgorithmInformation  AlgorithmInformation
               No value
               acp133.AlgorithmInformation

           acp133.Capability  Capability
               No value
               acp133.Capability

           acp133.Classification  Classification
               Unsigned 32-bit integer
               acp133.Classification

           acp133.Community  Community
               Unsigned 32-bit integer
               acp133.Community

           acp133.DLPolicy  DLPolicy
               No value
               acp133.DLPolicy

           acp133.DLSubmitPermission  DLSubmitPermission
               Unsigned 32-bit integer
               acp133.DLSubmitPermission

           acp133.DistributionCode  DistributionCode
               String
               acp133.DistributionCode

           acp133.ExtendedContentType  ExtendedContentType
               Object Identifier
               x411.ExtendedContentType

           acp133.GeneralNames  GeneralNames
               Unsigned 32-bit integer
               x509ce.GeneralNames

           acp133.JPEG  JPEG
               Byte array
               acp133.JPEG

           acp133.Kmid  Kmid
               Byte array
               acp133.Kmid

           acp133.MLReceiptPolicy  MLReceiptPolicy
               Unsigned 32-bit integer
               acp133.MLReceiptPolicy

           acp133.MonthlyUKMs  MonthlyUKMs
               No value
               acp133.MonthlyUKMs

           acp133.OnSupported  OnSupported
               Byte array
               acp133.OnSupported

           acp133.RIParameters  RIParameters
               No value
               acp133.RIParameters

           acp133.Remarks  Remarks
               Unsigned 32-bit integer
               acp133.Remarks

           acp133.Remarks_item  Remarks item
               String
               acp133.PrintableString

           acp133.UKMEntry  UKMEntry
               No value
               acp133.UKMEntry

           acp133.acp127-nn  acp127-nn
               Boolean

           acp133.acp127-pn  acp127-pn
               Boolean

           acp133.acp127-tn  acp127-tn
               Boolean

           acp133.address  address
               No value
               x411.ORAddress

           acp133.algorithm_identifier  algorithm-identifier
               No value
               x509af.AlgorithmIdentifier

           acp133.capabilities  capabilities
               Unsigned 32-bit integer
               acp133.SET_OF_Capability

           acp133.classification  classification
               Unsigned 32-bit integer
               acp133.Classification

           acp133.content_types  content-types
               Unsigned 32-bit integer
               acp133.SET_OF_ExtendedContentType

           acp133.conversion_with_loss_prohibited  conversion-with-loss-prohibited
               Unsigned 32-bit integer
               acp133.T_conversion_with_loss_prohibited

           acp133.date  date
               String
               acp133.UTCTime

           acp133.description  description
               String
               acp133.GeneralString

           acp133.disclosure_of_other_recipients  disclosure-of-other-recipients
               Unsigned 32-bit integer
               acp133.T_disclosure_of_other_recipients

           acp133.edition  edition
               Signed 32-bit integer
               acp133.INTEGER

           acp133.encoded_information_types_constraints  encoded-information-types-constraints
               No value
               x411.EncodedInformationTypesConstraints

           acp133.encrypted  encrypted
               Byte array
               acp133.BIT_STRING

           acp133.further_dl_expansion_allowed  further-dl-expansion-allowed
               Boolean
               acp133.BOOLEAN

           acp133.implicit_conversion_prohibited  implicit-conversion-prohibited
               Unsigned 32-bit integer
               acp133.T_implicit_conversion_prohibited

           acp133.inAdditionTo  inAdditionTo
               Unsigned 32-bit integer
               acp133.SEQUENCE_OF_GeneralNames

           acp133.individual  individual
               No value
               x411.ORName

           acp133.insteadOf  insteadOf
               Unsigned 32-bit integer
               acp133.SEQUENCE_OF_GeneralNames

           acp133.kmid  kmid
               Byte array
               acp133.Kmid

           acp133.maximum_content_length  maximum-content-length
               Unsigned 32-bit integer
               x411.ContentLength

           acp133.member_of_dl  member-of-dl
               No value
               x411.ORName

           acp133.member_of_group  member-of-group
               Unsigned 32-bit integer
               x509if.Name

           acp133.minimize  minimize
               Boolean
               acp133.BOOLEAN

           acp133.none  none
               No value
               acp133.NULL

           acp133.originating_MTA_report  originating-MTA-report
               Signed 32-bit integer
               acp133.T_originating_MTA_report

           acp133.originator_certificate_selector  originator-certificate-selector
               No value
               x509ce.CertificateAssertion

           acp133.originator_report  originator-report
               Signed 32-bit integer
               acp133.T_originator_report

           acp133.originator_requested_alternate_recipient_removed  originator-requested-alternate-recipient-removed
               Boolean
               acp133.BOOLEAN

           acp133.pattern_match  pattern-match
               No value
               acp133.ORNamePattern

           acp133.priority  priority
               Signed 32-bit integer
               acp133.T_priority

           acp133.proof_of_delivery  proof-of-delivery
               Signed 32-bit integer
               acp133.T_proof_of_delivery

           acp133.rI  rI
               String
               acp133.PrintableString

           acp133.rIType  rIType
               Unsigned 32-bit integer
               acp133.T_rIType

           acp133.recipient_certificate_selector  recipient-certificate-selector
               No value
               x509ce.CertificateAssertion

           acp133.removed  removed
               No value
               acp133.NULL

           acp133.replaced  replaced
               Unsigned 32-bit integer
               x411.RequestedDeliveryMethod

           acp133.report_from_dl  report-from-dl
               Signed 32-bit integer
               acp133.T_report_from_dl

           acp133.report_propagation  report-propagation
               Signed 32-bit integer
               acp133.T_report_propagation

           acp133.requested_delivery_method  requested-delivery-method
               Unsigned 32-bit integer
               acp133.T_requested_delivery_method

           acp133.return_of_content  return-of-content
               Unsigned 32-bit integer
               acp133.T_return_of_content

           acp133.sHD  sHD
               String
               acp133.PrintableString

           acp133.security_labels  security-labels
               Unsigned 32-bit integer
               x411.SecurityContext

           acp133.tag  tag
               No value
               acp133.PairwiseTag

           acp133.token_encryption_algorithm_preference  token-encryption-algorithm-preference
               Unsigned 32-bit integer
               acp133.SEQUENCE_OF_AlgorithmInformation

           acp133.token_signature_algorithm_preference  token-signature-algorithm-preference
               Unsigned 32-bit integer
               acp133.SEQUENCE_OF_AlgorithmInformation

           acp133.ukm  ukm
               Byte array
               acp133.OCTET_STRING

           acp133.ukm_entries  ukm-entries
               Unsigned 32-bit integer
               acp133.SEQUENCE_OF_UKMEntry

           acp133.unchanged  unchanged
               No value
               acp133.NULL

   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.clientautoresp.client_caps_flags  Client Capabilities Flags
               Unsigned 32-bit integer

           aim_messaging.clientautoresp.protocol_version  Version
               Unsigned 16-bit integer

           aim_messaging.clientautoresp.reason  Reason
               Unsigned 16-bit integer

           aim_messaging.evil.new_warn_level  New warning level
               Unsigned 16-bit integer

           aim_messaging.evil.warn_level  Old warning level
               Unsigned 16-bit integer

           aim_messaging.evilreq.origin  Send Evil Bit As
               Unsigned 16-bit integer

           aim_messaging.icbm.channel  Channel to setup
               Unsigned 16-bit integer

           aim_messaging.icbm.extended_data.message.flags  Message Flags
               Unsigned 8-bit integer

           aim_messaging.icbm.extended_data.message.flags.auto  Auto Message
               Boolean

           aim_messaging.icbm.extended_data.message.flags.normal  Normal Message
               Boolean

           aim_messaging.icbm.extended_data.message.priority_code  Priority Code
               Unsigned 16-bit integer

           aim_messaging.icbm.extended_data.message.status_code  Status Code
               Unsigned 16-bit integer

           aim_messaging.icbm.extended_data.message.text  Text
               String

           aim_messaging.icbm.extended_data.message.text_length  Text Length
               Unsigned 16-bit integer

           aim_messaging.icbm.extended_data.message.type  Message Type
               Unsigned 8-bit integer

           aim_messaging.icbm.flags  Message Flags
               Unsigned 32-bit integer

           aim_messaging.icbm.max_receiver_warnlevel  max receiver warn level
               Unsigned 16-bit integer

           aim_messaging.icbm.max_sender_warn-level  Max sender warn level
               Unsigned 16-bit integer

           aim_messaging.icbm.max_snac  Max SNAC Size
               Unsigned 16-bit integer

           aim_messaging.icbm.min_msg_interval  Minimum message interval (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 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
               Is MEID configured

           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.for_req_type  Forward Request Type
               Unsigned 8-bit integer

           ansi_801.for_rsp_type  Forward Response Type
               Unsigned 8-bit integer

           ansi_801.for_sess_tag  Forward Session Tag
               Unsigned 8-bit integer

           ansi_801.rev_req_type  Reverse Request Type
               Unsigned 8-bit integer

           ansi_801.rev_rsp_type  Reverse Response Type
               Unsigned 8-bit integer

           ansi_801.rev_sess_tag  Reverse Session Tag
               Unsigned 8-bit integer

           ansi_801.sess_tag  Session Tag
               Unsigned 8-bit integer

   ANSI Mobile Application Part (ansi_map)
           ansi_map.CDMABandClassInformation  CDMABandClassInformation
               No value
               ansi_map.CDMABandClassInformation

           ansi_map.CDMAChannelNumberList_item  CDMAChannelNumberList item
               No value
               ansi_map.CDMAChannelNumberList_item

           ansi_map.CDMACodeChannelInformation  CDMACodeChannelInformation
               No value
               ansi_map.CDMACodeChannelInformation

           ansi_map.CDMAConnectionReferenceList_item  CDMAConnectionReferenceList item
               No value
               ansi_map.CDMAConnectionReferenceList_item

           ansi_map.CDMAPSMMList_item  CDMAPSMMList item
               No value
               ansi_map.CDMAPSMMList_item

           ansi_map.CDMAServiceOption  CDMAServiceOption
               Byte array
               ansi_map.CDMAServiceOption

           ansi_map.CDMATargetMAHOInformation  CDMATargetMAHOInformation
               No value
               ansi_map.CDMATargetMAHOInformation

           ansi_map.CDMATargetMeasurementInformation  CDMATargetMeasurementInformation
               No value
               ansi_map.CDMATargetMeasurementInformation

           ansi_map.CallRecoveryID  CallRecoveryID
               No value
               ansi_map.CallRecoveryID

           ansi_map.DataAccessElementList_item  DataAccessElementList item
               No value
               ansi_map.DataAccessElementList_item

           ansi_map.DataUpdateResult  DataUpdateResult
               No value
               ansi_map.DataUpdateResult

           ansi_map.ModificationRequest  ModificationRequest
               No value
               ansi_map.ModificationRequest

           ansi_map.ModificationResult  ModificationResult
               Unsigned 32-bit integer
               ansi_map.ModificationResult

           ansi_map.PACA_Level  PACA Level
               Unsigned 8-bit integer
               PACA Level

           ansi_map.ServiceDataAccessElement  ServiceDataAccessElement
               No value
               ansi_map.ServiceDataAccessElement

           ansi_map.ServiceDataResult  ServiceDataResult
               No value
               ansi_map.ServiceDataResult

           ansi_map.TargetMeasurementInformation  TargetMeasurementInformation
               No value
               ansi_map.TargetMeasurementInformation

           ansi_map.TerminationList_item  TerminationList item
               Unsigned 32-bit integer
               ansi_map.TerminationList_item

           ansi_map.aCGDirective  aCGDirective
               No value
               ansi_map.ACGDirective

           ansi_map.aKeyProtocolVersion  aKeyProtocolVersion
               Byte array
               ansi_map.AKeyProtocolVersion

           ansi_map.accessDeniedReason  accessDeniedReason
               Unsigned 32-bit integer
               ansi_map.AccessDeniedReason

           ansi_map.acgencountered  acgencountered
               Byte array
               ansi_map.ACGEncountered

           ansi_map.actionCode  actionCode
               Unsigned 8-bit integer
               ansi_map.ActionCode

           ansi_map.addService  addService
               No value
               ansi_map.AddService

           ansi_map.addServiceRes  addServiceRes
               No value
               ansi_map.AddServiceRes

           ansi_map.alertCode  alertCode
               Byte array
               ansi_map.AlertCode

           ansi_map.alertResult  alertResult
               Unsigned 8-bit integer
               ansi_map.AlertResult

           ansi_map.alertcode.alertaction  Alert Action
               Unsigned 8-bit integer
               Alert Action

           ansi_map.alertcode.cadence  Cadence
               Unsigned 8-bit integer
               Cadence

           ansi_map.alertcode.pitch  Pitch
               Unsigned 8-bit integer
               Pitch

           ansi_map.allOrNone  allOrNone
               Unsigned 32-bit integer
               ansi_map.AllOrNone

           ansi_map.analogRedirectInfo  analogRedirectInfo
               Byte array
               ansi_map.AnalogRedirectInfo

           ansi_map.analogRedirectRecord  analogRedirectRecord
               No value
               ansi_map.AnalogRedirectRecord

           ansi_map.analyzedInformation  analyzedInformation
               No value
               ansi_map.AnalyzedInformation

           ansi_map.analyzedInformationRes  analyzedInformationRes
               No value
               ansi_map.AnalyzedInformationRes

           ansi_map.announcementCode1  announcementCode1
               Byte array
               ansi_map.AnnouncementCode

           ansi_map.announcementCode2  announcementCode2
               Byte array
               ansi_map.AnnouncementCode

           ansi_map.announcementList  announcementList
               No value
               ansi_map.AnnouncementList

           ansi_map.announcementcode.class  Tone
               Unsigned 8-bit integer
               Tone

           ansi_map.announcementcode.cust_ann  Custom Announcement
               Unsigned 8-bit integer
               Custom Announcement

           ansi_map.announcementcode.std_ann  Standard Announcement
               Unsigned 8-bit integer
               Standard Announcement

           ansi_map.announcementcode.tone  Tone
               Unsigned 8-bit integer
               Tone

           ansi_map.authenticationAlgorithmVersion  authenticationAlgorithmVersion
               Byte array
               ansi_map.AuthenticationAlgorithmVersion

           ansi_map.authenticationCapability  authenticationCapability
               Unsigned 8-bit integer
               ansi_map.AuthenticationCapability

           ansi_map.authenticationData  authenticationData
               Byte array
               ansi_map.AuthenticationData

           ansi_map.authenticationDirective  authenticationDirective
               No value
               ansi_map.AuthenticationDirective

           ansi_map.authenticationDirectiveForward  authenticationDirectiveForward
               No value
               ansi_map.AuthenticationDirectiveForward

           ansi_map.authenticationDirectiveForwardRes  authenticationDirectiveForwardRes
               No value
               ansi_map.AuthenticationDirectiveForwardRes

           ansi_map.authenticationDirectiveRes  authenticationDirectiveRes
               No value
               ansi_map.AuthenticationDirectiveRes

           ansi_map.authenticationFailureReport  authenticationFailureReport
               No value
               ansi_map.AuthenticationFailureReport

           ansi_map.authenticationFailureReportRes  authenticationFailureReportRes
               No value
               ansi_map.AuthenticationFailureReportRes

           ansi_map.authenticationRequest  authenticationRequest
               No value
               ansi_map.AuthenticationRequest

           ansi_map.authenticationRequestRes  authenticationRequestRes
               No value
               ansi_map.AuthenticationRequestRes

           ansi_map.authenticationResponse  authenticationResponse
               Byte array
               ansi_map.AuthenticationResponse

           ansi_map.authenticationResponseBaseStation  authenticationResponseBaseStation
               Byte array
               ansi_map.AuthenticationResponseBaseStation

           ansi_map.authenticationResponseReauthentication  authenticationResponseReauthentication
               Byte array
               ansi_map.AuthenticationResponseReauthentication

           ansi_map.authenticationResponseUniqueChallenge  authenticationResponseUniqueChallenge
               Byte array
               ansi_map.AuthenticationResponseUniqueChallenge

           ansi_map.authenticationStatusReport  authenticationStatusReport
               No value
               ansi_map.AuthenticationStatusReport

           ansi_map.authenticationStatusReportRes  authenticationStatusReportRes
               No value
               ansi_map.AuthenticationStatusReportRes

           ansi_map.authorizationDenied  authorizationDenied
               Unsigned 32-bit integer
               ansi_map.AuthorizationDenied

           ansi_map.authorizationPeriod  authorizationPeriod
               Byte array
               ansi_map.AuthorizationPeriod

           ansi_map.authorizationperiod.period  Period
               Unsigned 8-bit integer
               Period

           ansi_map.availabilityType  availabilityType
               Unsigned 8-bit integer
               ansi_map.AvailabilityType

           ansi_map.baseStationChallenge  baseStationChallenge
               No value
               ansi_map.BaseStationChallenge

           ansi_map.baseStationChallengeRes  baseStationChallengeRes
               No value
               ansi_map.BaseStationChallengeRes

           ansi_map.baseStationManufacturerCode  baseStationManufacturerCode
               Byte array
               ansi_map.BaseStationManufacturerCode

           ansi_map.baseStationPartialKey  baseStationPartialKey
               Byte array
               ansi_map.BaseStationPartialKey

           ansi_map.bcd_digits  BCD digits
               String
               BCD digits

           ansi_map.billingID  billingID
               Byte array
               ansi_map.BillingID

           ansi_map.blocking  blocking
               No value
               ansi_map.Blocking

           ansi_map.borderCellAccess  borderCellAccess
               Unsigned 32-bit integer
               ansi_map.BorderCellAccess

           ansi_map.bsmcstatus  bsmcstatus
               Unsigned 8-bit integer
               ansi_map.BSMCStatus

           ansi_map.bulkDeregistration  bulkDeregistration
               No value
               ansi_map.BulkDeregistration

           ansi_map.bulkDisconnection  bulkDisconnection
               No value
               ansi_map.BulkDisconnection

           ansi_map.callControlDirective  callControlDirective
               No value
               ansi_map.CallControlDirective

           ansi_map.callControlDirectiveRes  callControlDirectiveRes
               No value
               ansi_map.CallControlDirectiveRes

           ansi_map.callHistoryCount  callHistoryCount
               Unsigned 32-bit integer
               ansi_map.CallHistoryCount

           ansi_map.callHistoryCountExpected  callHistoryCountExpected
               Unsigned 32-bit integer
               ansi_map.CallHistoryCountExpected

           ansi_map.callRecoveryIDList  callRecoveryIDList
               Unsigned 32-bit integer
               ansi_map.CallRecoveryIDList

           ansi_map.callRecoveryReport  callRecoveryReport
               No value
               ansi_map.CallRecoveryReport

           ansi_map.callStatus  callStatus
               Unsigned 32-bit integer
               ansi_map.CallStatus

           ansi_map.callTerminationReport  callTerminationReport
               No value
               ansi_map.CallTerminationReport

           ansi_map.callingFeaturesIndicator  callingFeaturesIndicator
               Byte array
               ansi_map.CallingFeaturesIndicator

           ansi_map.callingPartyCategory  callingPartyCategory
               Byte array
               ansi_map.CallingPartyCategory

           ansi_map.callingPartyName  callingPartyName
               Byte array
               ansi_map.CallingPartyName

           ansi_map.callingPartyNumberDigits1  callingPartyNumberDigits1
               Byte array
               ansi_map.CallingPartyNumberDigits1

           ansi_map.callingPartyNumberDigits2  callingPartyNumberDigits2
               Byte array
               ansi_map.CallingPartyNumberDigits2

           ansi_map.callingPartyNumberString1  callingPartyNumberString1
               No value
               ansi_map.CallingPartyNumberString1

           ansi_map.callingPartyNumberString2  callingPartyNumberString2
               No value
               ansi_map.CallingPartyNumberString2

           ansi_map.callingPartySubaddress  callingPartySubaddress
               Byte array
               ansi_map.CallingPartySubaddress

           ansi_map.callingfeaturesindicator.3wcfa  Three-Way Calling FeatureActivity, 3WC-FA
               Unsigned 8-bit integer
               Three-Way Calling FeatureActivity, 3WC-FA

           ansi_map.callingfeaturesindicator.ahfa  Answer Hold: FeatureActivity AH-FA
               Unsigned 8-bit integer
               Answer Hold: FeatureActivity AH-FA

           ansi_map.callingfeaturesindicator.ccsfa  CDMA-Concurrent Service:FeatureActivity. CCS-FA
               Unsigned 8-bit integer
               CDMA-Concurrent Service:FeatureActivity. CCS-FA

           ansi_map.callingfeaturesindicator.cdfa  Call Delivery: FeatureActivity, CD-FA
               Unsigned 8-bit integer
               Call Delivery: FeatureActivity, CD-FA

           ansi_map.callingfeaturesindicator.cfbafa  Call Forwarding Busy FeatureActivity, CFB-FA
               Unsigned 8-bit integer
               Call Forwarding Busy FeatureActivity, CFB-FA

           ansi_map.callingfeaturesindicator.cfnafa  Call Forwarding No Answer FeatureActivity, CFNA-FA
               Unsigned 8-bit integer
               Call Forwarding No Answer FeatureActivity, CFNA-FA

           ansi_map.callingfeaturesindicator.cfufa  Call Forwarding Unconditional FeatureActivity, CFU-FA
               Unsigned 8-bit integer
               Call Forwarding Unconditional FeatureActivity, CFU-FA

           ansi_map.callingfeaturesindicator.cnip1fa  One number (network-provided only) Calling Number Identification Presentation: FeatureActivity CNIP1-FA
               Unsigned 8-bit integer
               One number (network-provided only) Calling Number Identification Presentation: FeatureActivity CNIP1-FA

           ansi_map.callingfeaturesindicator.cnip2fa  Two number (network-provided and user-provided) Calling Number Identification Presentation: FeatureActivity CNIP2-FA
               Unsigned 8-bit integer
               Two number (network-provided and user-provided) Calling Number Identification Presentation: FeatureActivity CNIP2-FA

           ansi_map.callingfeaturesindicator.cnirfa  Calling Number Identification Restriction: FeatureActivity CNIR-FA
               Unsigned 8-bit integer
               Calling Number Identification Restriction: FeatureActivity CNIR-FA

           ansi_map.callingfeaturesindicator.cniroverfa  Calling Number Identification Restriction Override FeatureActivity CNIROver-FA
               Unsigned 8-bit integer

           ansi_map.callingfeaturesindicator.cpdfa  CDMA-Packet Data Service: FeatureActivity. CPDS-FA
               Unsigned 8-bit integer
               CDMA-Packet Data Service: FeatureActivity. CPDS-FA

           ansi_map.callingfeaturesindicator.ctfa  Call Transfer: FeatureActivity, CT-FA
               Unsigned 8-bit integer
               Call Transfer: FeatureActivity, CT-FA

           ansi_map.callingfeaturesindicator.cwfa  Call Waiting: FeatureActivity, CW-FA
               Unsigned 8-bit integer
               Call Waiting: FeatureActivity, CW-FA

           ansi_map.callingfeaturesindicator.dpfa  Data Privacy Feature Activity DP-FA
               Unsigned 8-bit integer
               Data Privacy Feature Activity DP-FA

           ansi_map.callingfeaturesindicator.epefa  TDMA Enhanced Privacy and Encryption:FeatureActivity.TDMA EPE-FA
               Unsigned 8-bit integer
               TDMA Enhanced Privacy and Encryption:FeatureActivity.TDMA EPE-FA

           ansi_map.callingfeaturesindicator.pcwfa  Priority Call Waiting FeatureActivity PCW-FA
               Unsigned 8-bit integer
               Priority Call Waiting FeatureActivity PCW-FA

           ansi_map.callingfeaturesindicator.uscfmsfa  USCF divert to mobile station provided DN:FeatureActivity.USCFms-FA
               Unsigned 8-bit integer
               USCF divert to mobile station provided DN:FeatureActivity.USCFms-FA

           ansi_map.callingfeaturesindicator.uscfvmfa  USCF divert to voice mail: FeatureActivity USCFvm-FA
               Unsigned 8-bit integer
               USCF divert to voice mail: FeatureActivity USCFvm-FA

           ansi_map.callingfeaturesindicator.vpfa  Voice Privacy FeatureActivity, VP-FA
               Unsigned 8-bit integer
               Voice Privacy FeatureActivity, VP-FA

           ansi_map.cancellationDenied  cancellationDenied
               Unsigned 32-bit integer
               ansi_map.CancellationDenied

           ansi_map.cancellationType  cancellationType
               Unsigned 8-bit integer
               ansi_map.CancellationType

           ansi_map.carrierDigits  carrierDigits
               Byte array
               ansi_map.CarrierDigits

           ansi_map.caveKey  caveKey
               Byte array
               ansi_map.CaveKey

           ansi_map.cdma2000HandoffInvokeIOSData  cdma2000HandoffInvokeIOSData
               No value
               ansi_map.CDMA2000HandoffInvokeIOSData

           ansi_map.cdma2000HandoffResponseIOSData  cdma2000HandoffResponseIOSData
               No value
               ansi_map.CDMA2000HandoffResponseIOSData

           ansi_map.cdma2000MobileSupportedCapabilities  cdma2000MobileSupportedCapabilities
               Byte array
               ansi_map.CDMA2000MobileSupportedCapabilities

           ansi_map.cdmaBandClass  cdmaBandClass
               Byte array
               ansi_map.CDMABandClass

           ansi_map.cdmaBandClassList  cdmaBandClassList
               Unsigned 32-bit integer
               ansi_map.CDMABandClassList

           ansi_map.cdmaCallMode  cdmaCallMode
               Byte array
               ansi_map.CDMACallMode

           ansi_map.cdmaChannelData  cdmaChannelData
               Byte array
               ansi_map.CDMAChannelData

           ansi_map.cdmaChannelNumber  cdmaChannelNumber
               Byte array
               ansi_map.CDMAChannelNumber

           ansi_map.cdmaChannelNumber2  cdmaChannelNumber2
               Byte array
               ansi_map.CDMAChannelNumber

           ansi_map.cdmaChannelNumberList  cdmaChannelNumberList
               Unsigned 32-bit integer
               ansi_map.CDMAChannelNumberList

           ansi_map.cdmaCodeChannel  cdmaCodeChannel
               Byte array
               ansi_map.CDMACodeChannel

           ansi_map.cdmaCodeChannelList  cdmaCodeChannelList
               Unsigned 32-bit integer
               ansi_map.CDMACodeChannelList

           ansi_map.cdmaConnectionReference  cdmaConnectionReference
               Byte array
               ansi_map.CDMAConnectionReference

           ansi_map.cdmaConnectionReferenceInformation  cdmaConnectionReferenceInformation
               No value
               ansi_map.CDMAConnectionReferenceInformation

           ansi_map.cdmaConnectionReferenceInformation2  cdmaConnectionReferenceInformation2
               No value
               ansi_map.CDMAConnectionReferenceInformation

           ansi_map.cdmaConnectionReferenceList  cdmaConnectionReferenceList
               Unsigned 32-bit integer
               ansi_map.CDMAConnectionReferenceList

           ansi_map.cdmaMSMeasuredChannelIdentity  cdmaMSMeasuredChannelIdentity
               Byte array
               ansi_map.CDMAMSMeasuredChannelIdentity

           ansi_map.cdmaMobileCapabilities  cdmaMobileCapabilities
               Byte array
               ansi_map.CDMAMobileCapabilities

           ansi_map.cdmaMobileProtocolRevision  cdmaMobileProtocolRevision
               Byte array
               ansi_map.CDMAMobileProtocolRevision

           ansi_map.cdmaNetworkIdentification  cdmaNetworkIdentification
               Byte array
               ansi_map.CDMANetworkIdentification

           ansi_map.cdmaPSMMCount  cdmaPSMMCount
               Byte array
               ansi_map.CDMAPSMMCount

           ansi_map.cdmaPSMMList  cdmaPSMMList
               Unsigned 32-bit integer
               ansi_map.CDMAPSMMList

           ansi_map.cdmaPilotPN  cdmaPilotPN
               Byte array
               ansi_map.CDMAPilotPN

           ansi_map.cdmaPilotStrength  cdmaPilotStrength
               Byte array
               ansi_map.CDMAPilotStrength

           ansi_map.cdmaPowerCombinedIndicator  cdmaPowerCombinedIndicator
               Byte array
               ansi_map.CDMAPowerCombinedIndicator

           ansi_map.cdmaPrivateLongCodeMask  cdmaPrivateLongCodeMask
               Byte array
               ansi_map.CDMAPrivateLongCodeMask

           ansi_map.cdmaRedirectRecord  cdmaRedirectRecord
               No value
               ansi_map.CDMARedirectRecord

           ansi_map.cdmaSearchParameters  cdmaSearchParameters
               Byte array
               ansi_map.CDMASearchParameters

           ansi_map.cdmaSearchWindow  cdmaSearchWindow
               Byte array
               ansi_map.CDMASearchWindow

           ansi_map.cdmaServiceConfigurationRecord  cdmaServiceConfigurationRecord
               Byte array
               ansi_map.CDMAServiceConfigurationRecord

           ansi_map.cdmaServiceOption  cdmaServiceOption
               Byte array
               ansi_map.CDMAServiceOption

           ansi_map.cdmaServiceOptionConnectionIdentifier  cdmaServiceOptionConnectionIdentifier
               Byte array
               ansi_map.CDMAServiceOptionConnectionIdentifier

           ansi_map.cdmaServiceOptionList  cdmaServiceOptionList
               Unsigned 32-bit integer
               ansi_map.CDMAServiceOptionList

           ansi_map.cdmaServingOneWayDelay  cdmaServingOneWayDelay
               Byte array
               ansi_map.CDMAServingOneWayDelay

           ansi_map.cdmaServingOneWayDelay2  cdmaServingOneWayDelay2
               Byte array
               ansi_map.CDMAServingOneWayDelay2

           ansi_map.cdmaSignalQuality  cdmaSignalQuality
               Byte array
               ansi_map.CDMASignalQuality

           ansi_map.cdmaSlotCycleIndex  cdmaSlotCycleIndex
               Byte array
               ansi_map.CDMASlotCycleIndex

           ansi_map.cdmaState  cdmaState
               Byte array
               ansi_map.CDMAState

           ansi_map.cdmaStationClassMark  cdmaStationClassMark
               Byte array
               ansi_map.CDMAStationClassMark

           ansi_map.cdmaStationClassMark2  cdmaStationClassMark2
               Byte array
               ansi_map.CDMAStationClassMark2

           ansi_map.cdmaTargetMAHOList  cdmaTargetMAHOList
               Unsigned 32-bit integer
               ansi_map.CDMATargetMAHOList

           ansi_map.cdmaTargetMAHOList2  cdmaTargetMAHOList2
               Unsigned 32-bit integer
               ansi_map.CDMATargetMAHOList

           ansi_map.cdmaTargetMeasurementList  cdmaTargetMeasurementList
               Unsigned 32-bit integer
               ansi_map.CDMATargetMeasurementList

           ansi_map.cdmaTargetOneWayDelay  cdmaTargetOneWayDelay
               Byte array
               ansi_map.CDMATargetOneWayDelay

           ansi_map.cdmacallmode.amps  Call Mode
               Boolean
               Call Mode

           ansi_map.cdmacallmode.cdma  Call Mode
               Boolean
               Call Mode

           ansi_map.cdmacallmode.cls1  Call Mode
               Boolean
               Call Mode

           ansi_map.cdmacallmode.cls10  Call Mode
               Boolean
               Call Mode

           ansi_map.cdmacallmode.cls2  Call Mode
               Boolean
               Call Mode

           ansi_map.cdmacallmode.cls3  Call Mode
               Boolean
               Call Mode

           ansi_map.cdmacallmode.cls4  Call Mode
               Boolean
               Call Mode

           ansi_map.cdmacallmode.cls5  Call Mode
               Boolean
               Call Mode

           ansi_map.cdmacallmode.cls6  Call Mode
               Boolean
               Call Mode

           ansi_map.cdmacallmode.cls7  Call Mode
               Boolean
               Call Mode

           ansi_map.cdmacallmode.cls8  Call Mode
               Boolean
               Call Mode

           ansi_map.cdmacallmode.cls9  Call Mode
               Boolean
               Call Mode

           ansi_map.cdmacallmode.namps  Call Mode
               Boolean
               Call Mode

           ansi_map.cdmachanneldata.band_cls  Band Class
               Unsigned 8-bit integer
               Band Class

           ansi_map.cdmachanneldata.cdma_ch_no  CDMA Channel Number
               Unsigned 16-bit integer
               CDMA Channel Number

           ansi_map.cdmachanneldata.frameoffset  Frame Offset
               Unsigned 8-bit integer
               Frame Offset

           ansi_map.cdmachanneldata.lc_mask_b1  Long Code Mask LSB(byte 1)
               Unsigned 8-bit integer
               Long Code Mask (byte 1)LSB

           ansi_map.cdmachanneldata.lc_mask_b2  Long Code Mask (byte 2)
               Unsigned 8-bit integer
               Long Code Mask (byte 2)

           ansi_map.cdmachanneldata.lc_mask_b3  Long Code Mask (byte 3)
               Unsigned 8-bit integer
               Long Code Mask (byte 3)

           ansi_map.cdmachanneldata.lc_mask_b4  Long Code Mask (byte 4)
               Unsigned 8-bit integer
               Long Code Mask (byte 4)

           ansi_map.cdmachanneldata.lc_mask_b5  Long Code Mask (byte 5)
               Unsigned 8-bit integer
               Long Code Mask (byte 5)

           ansi_map.cdmachanneldata.lc_mask_b6  Long Code Mask (byte 6) MSB
               Unsigned 8-bit integer
               Long Code Mask MSB (byte 6)

           ansi_map.cdmachanneldata.nominal_pwr  Nominal Power
               Unsigned 8-bit integer
               Nominal Power

           ansi_map.cdmachanneldata.np_ext  NP EXT
               Boolean
               NP EXT

           ansi_map.cdmachanneldata.nr_preamble  Number Preamble
               Unsigned 8-bit integer
               Number Preamble

           ansi_map.cdmaserviceoption  CDMAServiceOption
               Unsigned 16-bit integer
               CDMAServiceOption

           ansi_map.cdmastationclassmark.dmi  Dual-mode Indicator(DMI)
               Boolean
               Dual-mode Indicator(DMI)

           ansi_map.cdmastationclassmark.dtx  Analog Transmission: (DTX)
               Boolean
               Analog Transmission: (DTX)

           ansi_map.cdmastationclassmark.pc  Power Class(PC)
               Unsigned 8-bit integer
               Power Class(PC)

           ansi_map.cdmastationclassmark.smi   Slotted Mode Indicator: (SMI)
               Boolean
                Slotted Mode Indicator: (SMI)

           ansi_map.change  change
               Unsigned 32-bit integer
               ansi_map.Change

           ansi_map.changeFacilities  changeFacilities
               No value
               ansi_map.ChangeFacilities

           ansi_map.changeFacilitiesRes  changeFacilitiesRes
               No value
               ansi_map.ChangeFacilitiesRes

           ansi_map.changeService  changeService
               No value
               ansi_map.ChangeService

           ansi_map.changeServiceAttributes  changeServiceAttributes
               Byte array
               ansi_map.ChangeServiceAttributes

           ansi_map.changeServiceRes  changeServiceRes
               No value
               ansi_map.ChangeServiceRes

           ansi_map.channelData  channelData
               Byte array
               ansi_map.ChannelData

           ansi_map.channeldata.chno  Channel Number (CHNO)
               Unsigned 16-bit integer
               Channel Number (CHNO)

           ansi_map.channeldata.dtx  Discontinuous Transmission Mode (DTX)
               Unsigned 8-bit integer
               Discontinuous Transmission Mode (DTX)

           ansi_map.channeldata.scc  SAT Color Code (SCC)
               Unsigned 8-bit integer
               SAT Color Code (SCC)

           ansi_map.channeldata.vmac  Voice Mobile Attenuation Code (VMAC)
               Unsigned 8-bit integer
               Voice Mobile Attenuation Code (VMAC)

           ansi_map.checkMEID  checkMEID
               No value
               ansi_map.CheckMEID

           ansi_map.checkMEIDRes  checkMEIDRes
               No value
               ansi_map.CheckMEIDRes

           ansi_map.conditionallyDeniedReason  conditionallyDeniedReason
               Unsigned 32-bit integer
               ansi_map.ConditionallyDeniedReason

           ansi_map.conferenceCallingIndicator  conferenceCallingIndicator
               Byte array
               ansi_map.ConferenceCallingIndicator

           ansi_map.confidentialityModes  confidentialityModes
               Byte array
               ansi_map.ConfidentialityModes

           ansi_map.confidentialitymodes.dp  DataPrivacy (DP) Confidentiality Status
               Boolean
               DataPrivacy (DP) Confidentiality Status

           ansi_map.confidentialitymodes.se  Signaling Message Encryption (SE) Confidentiality Status
               Boolean
               Signaling Message Encryption (SE) Confidentiality Status

           ansi_map.confidentialitymodes.vp  Voice Privacy (VP) Confidentiality Status
               Boolean
               Voice Privacy (VP) Confidentiality Status

           ansi_map.connectResource  connectResource
               No value
               ansi_map.ConnectResource

           ansi_map.connectionFailureReport  connectionFailureReport
               No value
               ansi_map.ConnectionFailureReport

           ansi_map.controlChannelData  controlChannelData
               Byte array
               ansi_map.ControlChannelData

           ansi_map.controlChannelMode  controlChannelMode
               Unsigned 8-bit integer
               ansi_map.ControlChannelMode

           ansi_map.controlNetworkID  controlNetworkID
               Byte array
               ansi_map.ControlNetworkID

           ansi_map.controlType  controlType
               Byte array
               ansi_map.ControlType

           ansi_map.controlchanneldata.cmac  Control Mobile Attenuation Code (CMAC)
               Unsigned 8-bit integer
               Control Mobile Attenuation Code (CMAC)

           ansi_map.controlchanneldata.dcc  Digital Color Code (DCC)
               Unsigned 8-bit integer
               Digital Color Code (DCC)

           ansi_map.controlchanneldata.ssdc1  Supplementary Digital Color Codes (SDCC1)
               Unsigned 8-bit integer
               Supplementary Digital Color Codes (SDCC1)

           ansi_map.controlchanneldata.ssdc2  Supplementary Digital Color Codes (SDCC2)
               Unsigned 8-bit integer
               Supplementary Digital Color Codes (SDCC2)

           ansi_map.countRequest  countRequest
               No value
               ansi_map.CountRequest

           ansi_map.countRequestRes  countRequestRes
               No value
               ansi_map.CountRequestRes

           ansi_map.countUpdateReport  countUpdateReport
               Unsigned 8-bit integer
               ansi_map.CountUpdateReport

           ansi_map.dataAccessElement1  dataAccessElement1
               No value
               ansi_map.DataAccessElement

           ansi_map.dataAccessElement2  dataAccessElement2
               No value
               ansi_map.DataAccessElement

           ansi_map.dataAccessElementList  dataAccessElementList
               Unsigned 32-bit integer
               ansi_map.DataAccessElementList

           ansi_map.dataID  dataID
               Byte array
               ansi_map.DataID

           ansi_map.dataKey  dataKey
               Byte array
               ansi_map.DataKey

           ansi_map.dataPrivacyParameters  dataPrivacyParameters
               Byte array
               ansi_map.DataPrivacyParameters

           ansi_map.dataResult  dataResult
               Unsigned 32-bit integer
               ansi_map.DataResult

           ansi_map.dataUpdateResultList  dataUpdateResultList
               Unsigned 32-bit integer
               ansi_map.DataUpdateResultList

           ansi_map.dataValue  dataValue
               Byte array
               ansi_map.DataValue

           ansi_map.databaseKey  databaseKey
               Byte array
               ansi_map.DatabaseKey

           ansi_map.deniedAuthorizationPeriod  deniedAuthorizationPeriod
               Byte array
               ansi_map.DeniedAuthorizationPeriod

           ansi_map.deniedauthorizationperiod.period  Period
               Unsigned 8-bit integer
               Period

           ansi_map.denyAccess  denyAccess
               Unsigned 32-bit integer
               ansi_map.DenyAccess

           ansi_map.deregistrationType  deregistrationType
               Unsigned 32-bit integer
               ansi_map.DeregistrationType

           ansi_map.destinationAddress  destinationAddress
               Unsigned 32-bit integer
               ansi_map.DestinationAddress

           ansi_map.destinationDigits  destinationDigits
               Byte array
               ansi_map.DestinationDigits

           ansi_map.digitCollectionControl  digitCollectionControl
               Byte array
               ansi_map.DigitCollectionControl

           ansi_map.digits  digits
               No value
               ansi_map.Digits

           ansi_map.digits_Carrier  digits-Carrier
               No value
               ansi_map.Digits

           ansi_map.digits_Destination  digits-Destination
               No value
               ansi_map.Digits

           ansi_map.digits_carrier  digits-carrier
               No value
               ansi_map.Digits

           ansi_map.digits_dest  digits-dest
               No value
               ansi_map.Digits

           ansi_map.displayText  displayText
               Byte array
               ansi_map.DisplayText

           ansi_map.displayText2  displayText2
               Byte array
               ansi_map.DisplayText2

           ansi_map.dmd_BillingIndicator  dmd-BillingIndicator
               Unsigned 32-bit integer
               ansi_map.DMH_BillingIndicator

           ansi_map.dmh_AccountCodeDigits  dmh-AccountCodeDigits
               Byte array
               ansi_map.DMH_AccountCodeDigits

           ansi_map.dmh_AlternateBillingDigits  dmh-AlternateBillingDigits
               Byte array
               ansi_map.DMH_AlternateBillingDigits

           ansi_map.dmh_BillingDigits  dmh-BillingDigits
               Byte array
               ansi_map.DMH_BillingDigits

           ansi_map.dmh_ChargeInformation  dmh-ChargeInformation
               Byte array
               ansi_map.DMH_ChargeInformation

           ansi_map.dmh_RedirectionIndicator  dmh-RedirectionIndicator
               Unsigned 32-bit integer
               ansi_map.DMH_RedirectionIndicator

           ansi_map.dmh_ServiceID  dmh-ServiceID
               Byte array
               ansi_map.DMH_ServiceID

           ansi_map.dropService  dropService
               No value
               ansi_map.DropService

           ansi_map.dropServiceRes  dropServiceRes
               No value
               ansi_map.DropServiceRes

           ansi_map.dtxIndication  dtxIndication
               Byte array
               ansi_map.DTXIndication

           ansi_map.edirectingSubaddress  edirectingSubaddress
               Byte array
               ansi_map.RedirectingSubaddress

           ansi_map.electronicSerialNumber  electronicSerialNumber
               Byte array
               ansi_map.ElectronicSerialNumber

           ansi_map.emergencyServicesRoutingDigits  emergencyServicesRoutingDigits
               Byte array
               ansi_map.EmergencyServicesRoutingDigits

           ansi_map.enc  Encoding
               Unsigned 8-bit integer
               Encoding

           ansi_map.executeScript  executeScript
               No value
               ansi_map.ExecuteScript

           ansi_map.extendedMSCID  extendedMSCID
               Byte array
               ansi_map.ExtendedMSCID

           ansi_map.extendedSystemMyTypeCode  extendedSystemMyTypeCode
               Byte array
               ansi_map.ExtendedSystemMyTypeCode

           ansi_map.extendedmscid.type  Type
               Unsigned 8-bit integer
               Type

           ansi_map.facilitiesDirective  facilitiesDirective
               No value
               ansi_map.FacilitiesDirective

           ansi_map.facilitiesDirective2  facilitiesDirective2
               No value
               ansi_map.FacilitiesDirective2

           ansi_map.facilitiesDirective2Res  facilitiesDirective2Res
               No value
               ansi_map.FacilitiesDirective2Res

           ansi_map.facilitiesDirectiveRes  facilitiesDirectiveRes
               No value
               ansi_map.FacilitiesDirectiveRes

           ansi_map.facilitiesRelease  facilitiesRelease
               No value
               ansi_map.FacilitiesRelease

           ansi_map.facilitiesReleaseRes  facilitiesReleaseRes
               No value
               ansi_map.FacilitiesReleaseRes

           ansi_map.facilitySelectedAndAvailable  facilitySelectedAndAvailable
               No value
               ansi_map.FacilitySelectedAndAvailable

           ansi_map.facilitySelectedAndAvailableRes  facilitySelectedAndAvailableRes
               No value
               ansi_map.FacilitySelectedAndAvailableRes

           ansi_map.failureCause  failureCause
               Byte array
               ansi_map.FailureCause

           ansi_map.failureType  failureType
               Unsigned 32-bit integer
               ansi_map.FailureType

           ansi_map.featureIndicator  featureIndicator
               Unsigned 32-bit integer
               ansi_map.FeatureIndicator

           ansi_map.featureRequest  featureRequest
               No value
               ansi_map.FeatureRequest

           ansi_map.featureRequestRes  featureRequestRes
               No value
               ansi_map.FeatureRequestRes

           ansi_map.featureResult  featureResult
               Unsigned 32-bit integer
               ansi_map.FeatureResult

           ansi_map.flashRequest  flashRequest
               No value
               ansi_map.FlashRequest

           ansi_map.gapDuration  gapDuration
               Unsigned 32-bit integer
               ansi_map.GapDuration

           ansi_map.gapInterval  gapInterval
               Unsigned 32-bit integer
               ansi_map.GapInterval

           ansi_map.generalizedTime  generalizedTime
               String
               ansi_map.GeneralizedTime

           ansi_map.geoPositionRequest  geoPositionRequest
               No value
               ansi_map.GeoPositionRequest

           ansi_map.geographicAuthorization  geographicAuthorization
               Unsigned 8-bit integer
               ansi_map.GeographicAuthorization

           ansi_map.geographicPosition  geographicPosition
               Byte array
               ansi_map.GeographicPosition

           ansi_map.globalTitle  globalTitle
               Byte array
               ansi_map.GlobalTitle

           ansi_map.groupInformation  groupInformation
               Byte array
               ansi_map.GroupInformation

           ansi_map.handoffBack  handoffBack
               No value
               ansi_map.HandoffBack

           ansi_map.handoffBack2  handoffBack2
               No value
               ansi_map.HandoffBack2

           ansi_map.handoffBack2Res  handoffBack2Res
               No value
               ansi_map.HandoffBack2Res

           ansi_map.handoffBackRes  handoffBackRes
               No value
               ansi_map.HandoffBackRes

           ansi_map.handoffMeasurementRequest  handoffMeasurementRequest
               No value
               ansi_map.HandoffMeasurementRequest

           ansi_map.handoffMeasurementRequest2  handoffMeasurementRequest2
               No value
               ansi_map.HandoffMeasurementRequest2

           ansi_map.handoffMeasurementRequest2Res  handoffMeasurementRequest2Res
               No value
               ansi_map.HandoffMeasurementRequest2Res

           ansi_map.handoffMeasurementRequestRes  handoffMeasurementRequestRes
               No value
               ansi_map.HandoffMeasurementRequestRes

           ansi_map.handoffReason  handoffReason
               Unsigned 32-bit integer
               ansi_map.HandoffReason

           ansi_map.handoffState  handoffState
               Byte array
               ansi_map.HandoffState

           ansi_map.handoffToThird  handoffToThird
               No value
               ansi_map.HandoffToThird

           ansi_map.handoffToThird2  handoffToThird2
               No value
               ansi_map.HandoffToThird2

           ansi_map.handoffToThird2Res  handoffToThird2Res
               No value
               ansi_map.HandoffToThird2Res

           ansi_map.handoffToThirdRes  handoffToThirdRes
               No value
               ansi_map.HandoffToThirdRes

           ansi_map.handoffstate.pi  Party Involved (PI)
               Boolean
               Party Involved (PI)

           ansi_map.horizontal_Velocity  horizontal-Velocity
               Byte array
               ansi_map.Horizontal_Velocity

           ansi_map.ia5_digits  IA5 digits
               String
               IA5 digits

           ansi_map.idno  ID Number
               Unsigned 32-bit integer
               ID Number

           ansi_map.ilspInformation  ilspInformation
               Unsigned 8-bit integer
               ansi_map.ISLPInformation

           ansi_map.imsi  imsi
               Byte array
               gsm_map.IMSI

           ansi_map.informationDirective  informationDirective
               No value
               ansi_map.InformationDirective

           ansi_map.informationDirectiveRes  informationDirectiveRes
               No value
               ansi_map.InformationDirectiveRes

           ansi_map.informationForward  informationForward
               No value
               ansi_map.InformationForward

           ansi_map.informationForwardRes  informationForwardRes
               No value
               ansi_map.InformationForwardRes

           ansi_map.information_Record  information-Record
               Byte array
               ansi_map.Information_Record

           ansi_map.interMSCCircuitID  interMSCCircuitID
               No value
               ansi_map.InterMSCCircuitID

           ansi_map.interMessageTime  interMessageTime
               Byte array
               ansi_map.InterMessageTime

           ansi_map.interSwitchCount  interSwitchCount
               Unsigned 32-bit integer
               ansi_map.InterSwitchCount

           ansi_map.interSystemAnswer  interSystemAnswer
               No value
               ansi_map.InterSystemAnswer

           ansi_map.interSystemPage  interSystemPage
               No value
               ansi_map.InterSystemPage

           ansi_map.interSystemPage2  interSystemPage2
               No value
               ansi_map.InterSystemPage2

           ansi_map.interSystemPage2Res  interSystemPage2Res
               No value
               ansi_map.InterSystemPage2Res

           ansi_map.interSystemPageRes  interSystemPageRes
               No value
               ansi_map.InterSystemPageRes

           ansi_map.interSystemPositionRequest  interSystemPositionRequest
               No value
               ansi_map.InterSystemPositionRequest

           ansi_map.interSystemPositionRequestForward  interSystemPositionRequestForward
               No value
               ansi_map.InterSystemPositionRequestForward

           ansi_map.interSystemPositionRequestForwardRes  interSystemPositionRequestForwardRes
               No value
               ansi_map.InterSystemPositionRequestForwardRes

           ansi_map.interSystemPositionRequestRes  interSystemPositionRequestRes
               No value
               ansi_map.InterSystemPositionRequestRes

           ansi_map.interSystemSMSDeliveryPointToPoint  interSystemSMSDeliveryPointToPoint
               No value
               ansi_map.InterSystemSMSDeliveryPointToPoint

           ansi_map.interSystemSMSDeliveryPointToPointRes  interSystemSMSDeliveryPointToPointRes
               No value
               ansi_map.InterSystemSMSDeliveryPointToPointRes

           ansi_map.interSystemSMSPage  interSystemSMSPage
               No value
               ansi_map.InterSystemSMSPage

           ansi_map.interSystemSetup  interSystemSetup
               No value
               ansi_map.InterSystemSetup

           ansi_map.interSystemSetupRes  interSystemSetupRes
               No value
               ansi_map.InterSystemSetupRes

           ansi_map.intersystemTermination  intersystemTermination
               No value
               ansi_map.IntersystemTermination

           ansi_map.invokingNEType  invokingNEType
               Signed 32-bit integer
               ansi_map.InvokingNEType

           ansi_map.lcsBillingID  lcsBillingID
               Byte array
               ansi_map.LCSBillingID

           ansi_map.lcsParameterRequest  lcsParameterRequest
               No value
               ansi_map.LCSParameterRequest

           ansi_map.lcsParameterRequestRes  lcsParameterRequestRes
               No value
               ansi_map.LCSParameterRequestRes

           ansi_map.lcs_Client_ID  lcs-Client-ID
               Byte array
               ansi_map.LCS_Client_ID

           ansi_map.lectronicSerialNumber  lectronicSerialNumber
               Byte array
               ansi_map.ElectronicSerialNumber

           ansi_map.legInformation  legInformation
               Byte array
               ansi_map.LegInformation

           ansi_map.lirAuthorization  lirAuthorization
               Unsigned 32-bit integer
               ansi_map.LIRAuthorization

           ansi_map.lirMode  lirMode
               Unsigned 32-bit integer
               ansi_map.LIRMode

           ansi_map.localTermination  localTermination
               No value
               ansi_map.LocalTermination

           ansi_map.locationAreaID  locationAreaID
               Byte array
               ansi_map.LocationAreaID

           ansi_map.locationRequest  locationRequest
               No value
               ansi_map.LocationRequest

           ansi_map.locationRequestRes  locationRequestRes
               No value
               ansi_map.LocationRequestRes

           ansi_map.mSCIdentificationNumber  mSCIdentificationNumber
               No value
               ansi_map.MSCIdentificationNumber

           ansi_map.mSIDUsage  mSIDUsage
               Unsigned 8-bit integer
               ansi_map.MSIDUsage

           ansi_map.mSInactive  mSInactive
               No value
               ansi_map.MSInactive

           ansi_map.mSStatus  mSStatus
               Byte array
               ansi_map.MSStatus

           ansi_map.marketid  MarketID
               Unsigned 16-bit integer
               MarketID

           ansi_map.meid  meid
               Byte array
               ansi_map.MEID

           ansi_map.meidStatus  meidStatus
               Byte array
               ansi_map.MEIDStatus

           ansi_map.meidValidated  meidValidated
               No value
               ansi_map.MEIDValidated

           ansi_map.messageDirective  messageDirective
               No value
               ansi_map.MessageDirective

           ansi_map.messageWaitingNotificationCount  messageWaitingNotificationCount
               Byte array
               ansi_map.MessageWaitingNotificationCount

           ansi_map.messageWaitingNotificationType  messageWaitingNotificationType
               Byte array
               ansi_map.MessageWaitingNotificationType

           ansi_map.messagewaitingnotificationcount.mwi  Message Waiting Indication (MWI)
               Unsigned 8-bit integer
               Message Waiting Indication (MWI)

           ansi_map.messagewaitingnotificationcount.nomw  Number of Messages Waiting
               Unsigned 8-bit integer
               Number of Messages Waiting

           ansi_map.messagewaitingnotificationcount.tom  Type of messages
               Unsigned 8-bit integer
               Type of messages

           ansi_map.messagewaitingnotificationtype.apt  Alert Pip Tone (APT)
               Boolean
               Alert Pip Tone (APT)

           ansi_map.messagewaitingnotificationtype.pt  Pip Tone (PT)
               Unsigned 8-bit integer
               Pip Tone (PT)

           ansi_map.mobileDirectoryNumber  mobileDirectoryNumber
               No value
               ansi_map.MobileDirectoryNumber

           ansi_map.mobileIdentificationNumber  mobileIdentificationNumber
               No value
               ansi_map.MobileIdentificationNumber

           ansi_map.mobilePositionCapability  mobilePositionCapability
               Byte array
               ansi_map.MobilePositionCapability

           ansi_map.mobileStationIMSI  mobileStationIMSI
               Byte array
               ansi_map.MobileStationIMSI

           ansi_map.mobileStationMIN  mobileStationMIN
               No value
               ansi_map.MobileStationMIN

           ansi_map.mobileStationMSID  mobileStationMSID
               Unsigned 32-bit integer
               ansi_map.MobileStationMSID

           ansi_map.mobileStationPartialKey  mobileStationPartialKey
               Byte array
               ansi_map.MobileStationPartialKey

           ansi_map.modificationRequestList  modificationRequestList
               Unsigned 32-bit integer
               ansi_map.ModificationRequestList

           ansi_map.modificationResultList  modificationResultList
               Unsigned 32-bit integer
               ansi_map.ModificationResultList

           ansi_map.modify  modify
               No value
               ansi_map.Modify

           ansi_map.modifyRes  modifyRes
               No value
               ansi_map.ModifyRes

           ansi_map.modulusValue  modulusValue
               Byte array
               ansi_map.ModulusValue

           ansi_map.mpcAddress  mpcAddress
               Byte array
               ansi_map.MPCAddress

           ansi_map.mpcAddress2  mpcAddress2
               Byte array
               ansi_map.MPCAddress

           ansi_map.mpcAddressList  mpcAddressList
               No value
               ansi_map.MPCAddressList

           ansi_map.mpcid  mpcid
               Byte array
               ansi_map.MPCID

           ansi_map.msLocation  msLocation
               Byte array
               ansi_map.MSLocation

           ansi_map.msc_Address  msc-Address
               Byte array
               ansi_map.MSC_Address

           ansi_map.mscid  mscid
               Byte array
               ansi_map.MSCID

           ansi_map.msid  msid
               Unsigned 32-bit integer
               ansi_map.MSID

           ansi_map.mslocation.lat  Latitude in tenths of a second
               Unsigned 8-bit integer
               Latitude in tenths of a second

           ansi_map.mslocation.long  Longitude in tenths of a second
               Unsigned 8-bit integer
               Switch Number (SWNO)

           ansi_map.mslocation.res  Resolution in units of 1 foot
               Unsigned 8-bit integer
               Resolution in units of 1 foot

           ansi_map.na  Nature of Number
               Boolean
               Nature of Number

           ansi_map.nampsCallMode  nampsCallMode
               Byte array
               ansi_map.NAMPSCallMode

           ansi_map.nampsChannelData  nampsChannelData
               Byte array
               ansi_map.NAMPSChannelData

           ansi_map.nampscallmode.amps  Call Mode
               Boolean
               Call Mode

           ansi_map.nampscallmode.namps  Call Mode
               Boolean
               Call Mode

           ansi_map.nampschanneldata.ccindicator  Color Code Indicator (CCIndicator)
               Unsigned 8-bit integer
               Color Code Indicator (CCIndicator)

           ansi_map.nampschanneldata.navca  Narrow Analog Voice Channel Assignment (NAVCA)
               Unsigned 8-bit integer
               Narrow Analog Voice Channel Assignment (NAVCA)

           ansi_map.navail  Number available indication
               Boolean
               Number available indication

           ansi_map.networkTMSI  networkTMSI
               Byte array
               ansi_map.NetworkTMSI

           ansi_map.networkTMSIExpirationTime  networkTMSIExpirationTime
               Byte array
               ansi_map.NetworkTMSIExpirationTime

           ansi_map.newMINExtension  newMINExtension
               Byte array
               ansi_map.NewMINExtension

           ansi_map.newNetworkTMSI  newNetworkTMSI
               Byte array
               ansi_map.NewNetworkTMSI

           ansi_map.newlyAssignedIMSI  newlyAssignedIMSI
               Byte array
               ansi_map.NewlyAssignedIMSI

           ansi_map.newlyAssignedMIN  newlyAssignedMIN
               No value
               ansi_map.NewlyAssignedMIN

           ansi_map.newlyAssignedMSID  newlyAssignedMSID
               Unsigned 32-bit integer
               ansi_map.NewlyAssignedMSID

           ansi_map.noAnswerTime  noAnswerTime
               Byte array
               ansi_map.NoAnswerTime

           ansi_map.nonPublicData  nonPublicData
               Byte array
               ansi_map.NonPublicData

           ansi_map.np  Numbering Plan
               Unsigned 8-bit integer
               Numbering Plan

           ansi_map.nr_digits  Number of Digits
               Unsigned 8-bit integer
               Number of Digits

           ansi_map.numberPortabilityRequest  numberPortabilityRequest
               No value
               ansi_map.NumberPortabilityRequest

           ansi_map.oAnswer  oAnswer
               No value
               ansi_map.OAnswer

           ansi_map.oCalledPartyBusy  oCalledPartyBusy
               No value
               ansi_map.OCalledPartyBusy

           ansi_map.oCalledPartyBusyRes  oCalledPartyBusyRes
               No value
               ansi_map.OCalledPartyBusyRes

           ansi_map.oDisconnect  oDisconnect
               No value
               ansi_map.ODisconnect

           ansi_map.oDisconnectRes  oDisconnectRes
               No value
               ansi_map.ODisconnectRes

           ansi_map.oNoAnswer  oNoAnswer
               No value
               ansi_map.ONoAnswer

           ansi_map.oNoAnswerRes  oNoAnswerRes
               No value
               ansi_map.ONoAnswerRes

           ansi_map.oTASPRequest  oTASPRequest
               No value
               ansi_map.OTASPRequest

           ansi_map.oTASPRequestRes  oTASPRequestRes
               No value
               ansi_map.OTASPRequestRes

           ansi_map.oneTimeFeatureIndicator  oneTimeFeatureIndicator
               Byte array
               ansi_map.OneTimeFeatureIndicator

           ansi_map.op_code  Operation Code
               Unsigned 8-bit integer
               Operation Code

           ansi_map.op_code_fam  Operation Code Family
               Unsigned 8-bit integer
               Operation Code Family

           ansi_map.originationIndicator  originationIndicator
               Unsigned 32-bit integer
               ansi_map.OriginationIndicator

           ansi_map.originationRequest  originationRequest
               No value
               ansi_map.OriginationRequest

           ansi_map.originationRequestRes  originationRequestRes
               No value
               ansi_map.OriginationRequestRes

           ansi_map.originationTriggers  originationTriggers
               Byte array
               ansi_map.OriginationTriggers

           ansi_map.originationrestrictions.default  DEFAULT
               Unsigned 8-bit integer
               DEFAULT

           ansi_map.originationrestrictions.direct  DIRECT
               Boolean
               DIRECT

           ansi_map.originationrestrictions.fmc  Force Message Center (FMC)
               Boolean
               Force Message Center (FMC)

           ansi_map.originationtriggers.all  All Origination (All)
               Boolean
               All Origination (All)

           ansi_map.originationtriggers.dp  Double Pound (DP)
               Boolean
               Double Pound (DP)

           ansi_map.originationtriggers.ds  Double Star (DS)
               Boolean
               Double Star (DS)

           ansi_map.originationtriggers.eight  8 digits
               Boolean
               8 digits

           ansi_map.originationtriggers.eleven  11 digits
               Boolean
               11 digits

           ansi_map.originationtriggers.fifteen  15 digits
               Boolean
               15 digits

           ansi_map.originationtriggers.fivedig  5 digits
               Boolean
               5 digits

           ansi_map.originationtriggers.fourdig  4 digits
               Boolean
               4 digits

           ansi_map.originationtriggers.fourteen  14 digits
               Boolean
               14 digits

           ansi_map.originationtriggers.ilata  Intra-LATA Toll (ILATA)
               Boolean
               Intra-LATA Toll (ILATA)

           ansi_map.originationtriggers.int  International (Int'l )
               Boolean
               International (Int'l )

           ansi_map.originationtriggers.nine  9 digits
               Boolean
               9 digits

           ansi_map.originationtriggers.nodig  No digits
               Boolean
               No digits

           ansi_map.originationtriggers.olata  Inter-LATA Toll (OLATA)
               Boolean
               Inter-LATA Toll (OLATA)

           ansi_map.originationtriggers.onedig  1 digit
               Boolean
               1 digit

           ansi_map.originationtriggers.pa  Prior Agreement (PA)
               Boolean
               Prior Agreement (PA)

           ansi_map.originationtriggers.pound  Pound
               Boolean
               Pound

           ansi_map.originationtriggers.rvtc  Revertive Call (RvtC)
               Boolean
               Revertive Call (RvtC)

           ansi_map.originationtriggers.sevendig  7 digits
               Boolean
               7 digits

           ansi_map.originationtriggers.sixdig  6 digits
               Boolean
               6 digits

           ansi_map.originationtriggers.star  Star
               Boolean
               Star

           ansi_map.originationtriggers.ten  10 digits
               Boolean
               10 digits

           ansi_map.originationtriggers.thirteen  13 digits
               Boolean
               13 digits

           ansi_map.originationtriggers.threedig  3 digits
               Boolean
               3 digits

           ansi_map.originationtriggers.twelve  12 digits
               Boolean
               12 digits

           ansi_map.originationtriggers.twodig  2 digits
               Boolean
               2 digits

           ansi_map.originationtriggers.unrec  Unrecognized Number (Unrec)
               Boolean
               Unrecognized Number (Unrec)

           ansi_map.originationtriggers.wz  World Zone (WZ)
               Boolean
               World Zone (WZ)

           ansi_map.otasp_ResultCode  otasp-ResultCode
               Unsigned 8-bit integer
               ansi_map.OTASP_ResultCode

           ansi_map.outingDigits  outingDigits
               Byte array
               ansi_map.RoutingDigits

           ansi_map.pACAIndicator  pACAIndicator
               Byte array
               ansi_map.PACAIndicator

           ansi_map.pC_SSN  pC-SSN
               Byte array
               ansi_map.PC_SSN

           ansi_map.pSID_RSIDInformation  pSID-RSIDInformation
               Byte array
               ansi_map.PSID_RSIDInformation

           ansi_map.pSID_RSIDInformation1  pSID-RSIDInformation1
               Byte array
               ansi_map.PSID_RSIDInformation

           ansi_map.pSID_RSIDList  pSID-RSIDList
               No value
               ansi_map.PSID_RSIDList

           ansi_map.pacaindicator_pa  Permanent Activation (PA)
               Boolean
               Permanent Activation (PA)

           ansi_map.pageCount  pageCount
               Byte array
               ansi_map.PageCount

           ansi_map.pageIndicator  pageIndicator
               Unsigned 8-bit integer
               ansi_map.PageIndicator

           ansi_map.pageResponseTime  pageResponseTime
               Byte array
               ansi_map.PageResponseTime

           ansi_map.pagingFrameClass  pagingFrameClass
               Unsigned 8-bit integer
               ansi_map.PagingFrameClass

           ansi_map.parameterRequest  parameterRequest
               No value
               ansi_map.ParameterRequest

           ansi_map.parameterRequestRes  parameterRequestRes
               No value
               ansi_map.ParameterRequestRes

           ansi_map.pc_ssn  pc-ssn
               Byte array
               ansi_map.PC_SSN

           ansi_map.pdsnAddress  pdsnAddress
               Byte array
               ansi_map.PDSNAddress

           ansi_map.pdsnProtocolType  pdsnProtocolType
               Byte array
               ansi_map.PDSNProtocolType

           ansi_map.pilotBillingID  pilotBillingID
               Byte array
               ansi_map.PilotBillingID

           ansi_map.pilotNumber  pilotNumber
               Byte array
               ansi_map.PilotNumber

           ansi_map.positionEventNotification  positionEventNotification
               No value
               ansi_map.PositionEventNotification

           ansi_map.positionInformation  positionInformation
               No value
               ansi_map.PositionInformation

           ansi_map.positionInformationCode  positionInformationCode
               Byte array
               ansi_map.PositionInformationCode

           ansi_map.positionRequest  positionRequest
               No value
               ansi_map.PositionRequest

           ansi_map.positionRequestForward  positionRequestForward
               No value
               ansi_map.PositionRequestForward

           ansi_map.positionRequestForwardRes  positionRequestForwardRes
               No value
               ansi_map.PositionRequestForwardRes

           ansi_map.positionRequestRes  positionRequestRes
               No value
               ansi_map.PositionRequestRes

           ansi_map.positionRequestType  positionRequestType
               Byte array
               ansi_map.PositionRequestType

           ansi_map.positionResult  positionResult
               Byte array
               ansi_map.PositionResult

           ansi_map.positionSource  positionSource
               Byte array
               ansi_map.PositionSource

           ansi_map.pqos_HorizontalPosition  pqos-HorizontalPosition
               Byte array
               ansi_map.PQOS_HorizontalPosition

           ansi_map.pqos_HorizontalVelocity  pqos-HorizontalVelocity
               Byte array
               ansi_map.PQOS_HorizontalVelocity

           ansi_map.pqos_MaximumPositionAge  pqos-MaximumPositionAge
               Byte array
               ansi_map.PQOS_MaximumPositionAge

           ansi_map.pqos_PositionPriority  pqos-PositionPriority
               Byte array
               ansi_map.PQOS_PositionPriority

           ansi_map.pqos_ResponseTime  pqos-ResponseTime
               Unsigned 32-bit integer
               ansi_map.PQOS_ResponseTime

           ansi_map.pqos_VerticalPosition  pqos-VerticalPosition
               Byte array
               ansi_map.PQOS_VerticalPosition

           ansi_map.pqos_VerticalVelocity  pqos-VerticalVelocity
               Byte array
               ansi_map.PQOS_VerticalVelocity

           ansi_map.preferredLanguageIndicator  preferredLanguageIndicator
               Unsigned 8-bit integer
               ansi_map.PreferredLanguageIndicator

           ansi_map.primitiveValue  primitiveValue
               Byte array
               ansi_map.PrimitiveValue

           ansi_map.privateSpecializedResource  privateSpecializedResource
               Byte array
               ansi_map.PrivateSpecializedResource

           ansi_map.pstnTermination  pstnTermination
               No value
               ansi_map.PSTNTermination

           ansi_map.qosPriority  qosPriority
               Byte array
               ansi_map.QoSPriority

           ansi_map.qualificationDirective  qualificationDirective
               No value
               ansi_map.QualificationDirective

           ansi_map.qualificationDirectiveRes  qualificationDirectiveRes
               No value
               ansi_map.QualificationDirectiveRes

           ansi_map.qualificationInformationCode  qualificationInformationCode
               Unsigned 32-bit integer
               ansi_map.QualificationInformationCode

           ansi_map.qualificationRequest  qualificationRequest
               No value
               ansi_map.QualificationRequest

           ansi_map.qualificationRequest2  qualificationRequest2
               No value
               ansi_map.QualificationRequest2

           ansi_map.qualificationRequest2Res  qualificationRequest2Res
               No value
               ansi_map.QualificationRequest2Res

           ansi_map.qualificationRequestRes  qualificationRequestRes
               No value
               ansi_map.QualificationRequestRes

           ansi_map.randValidTime  randValidTime
               Byte array
               ansi_map.RANDValidTime

           ansi_map.randc  randc
               Byte array
               ansi_map.RANDC

           ansi_map.randomVariable  randomVariable
               Byte array
               ansi_map.RandomVariable

           ansi_map.randomVariableBaseStation  randomVariableBaseStation
               Byte array
               ansi_map.RandomVariableBaseStation

           ansi_map.randomVariableReauthentication  randomVariableReauthentication
               Byte array
               ansi_map.RandomVariableReauthentication

           ansi_map.randomVariableRequest  randomVariableRequest
               No value
               ansi_map.RandomVariableRequest

           ansi_map.randomVariableRequestRes  randomVariableRequestRes
               No value
               ansi_map.RandomVariableRequestRes

           ansi_map.randomVariableSSD  randomVariableSSD
               Byte array
               ansi_map.RandomVariableSSD

           ansi_map.randomVariableUniqueChallenge  randomVariableUniqueChallenge
               Byte array
               ansi_map.RandomVariableUniqueChallenge

           ansi_map.range  range
               Signed 32-bit integer
               ansi_map.Range

           ansi_map.reasonList  reasonList
               Unsigned 32-bit integer
               ansi_map.ReasonList

           ansi_map.reauthenticationReport  reauthenticationReport
               Unsigned 8-bit integer
               ansi_map.ReauthenticationReport

           ansi_map.receivedSignalQuality  receivedSignalQuality
               Unsigned 32-bit integer
               ansi_map.ReceivedSignalQuality

           ansi_map.record_Type  record-Type
               Byte array
               ansi_map.Record_Type

           ansi_map.redirectingNumberDigits  redirectingNumberDigits
               Byte array
               ansi_map.RedirectingNumberDigits

           ansi_map.redirectingNumberString  redirectingNumberString
               Byte array
               ansi_map.RedirectingNumberString

           ansi_map.redirectingPartyName  redirectingPartyName
               Byte array
               ansi_map.RedirectingPartyName

           ansi_map.redirectingSubaddress  redirectingSubaddress
               Byte array
               ansi_map.RedirectingSubaddress

           ansi_map.redirectionDirective  redirectionDirective
               No value
               ansi_map.RedirectionDirective

           ansi_map.redirectionReason  redirectionReason
               Unsigned 32-bit integer
               ansi_map.RedirectionReason

           ansi_map.redirectionRequest  redirectionRequest
               No value
               ansi_map.RedirectionRequest

           ansi_map.registrationCancellation  registrationCancellation
               No value
               ansi_map.RegistrationCancellation

           ansi_map.registrationCancellationRes  registrationCancellationRes
               No value
               ansi_map.RegistrationCancellationRes

           ansi_map.registrationNotification  registrationNotification
               No value
               ansi_map.RegistrationNotification

           ansi_map.registrationNotificationRes  registrationNotificationRes
               No value
               ansi_map.RegistrationNotificationRes

           ansi_map.releaseCause  releaseCause
               Unsigned 32-bit integer
               ansi_map.ReleaseCause

           ansi_map.releaseReason  releaseReason
               Unsigned 32-bit integer
               ansi_map.ReleaseReason

           ansi_map.remoteUserInteractionDirective  remoteUserInteractionDirective
               No value
               ansi_map.RemoteUserInteractionDirective

           ansi_map.remoteUserInteractionDirectiveRes  remoteUserInteractionDirectiveRes
               No value
               ansi_map.RemoteUserInteractionDirectiveRes

           ansi_map.reportType  reportType
               Unsigned 32-bit integer
               ansi_map.ReportType

           ansi_map.reportType2  reportType2
               Unsigned 32-bit integer
               ansi_map.ReportType

           ansi_map.requiredParametersMask  requiredParametersMask
               Byte array
               ansi_map.RequiredParametersMask

           ansi_map.reserved_bitD  Reserved
               Boolean
               Reserved

           ansi_map.reserved_bitED  Reserved
               Unsigned 8-bit integer
               Reserved

           ansi_map.reserved_bitFED  Reserved
               Unsigned 8-bit integer
               Reserved

           ansi_map.reserved_bitH  Reserved
               Boolean
               Reserved

           ansi_map.reserved_bitHG  Reserved
               Unsigned 8-bit integer
               Reserved

           ansi_map.reserved_bitHGFE  Reserved
               Unsigned 8-bit integer
               Reserved

           ansi_map.resetCircuit  resetCircuit
               No value
               ansi_map.ResetCircuit

           ansi_map.resetCircuitRes  resetCircuitRes
               No value
               ansi_map.ResetCircuitRes

           ansi_map.restrictionDigits  restrictionDigits
               Byte array
               ansi_map.RestrictionDigits

           ansi_map.resumePIC  resumePIC
               Unsigned 32-bit integer
               ansi_map.ResumePIC

           ansi_map.roamerDatabaseVerificationRequest  roamerDatabaseVerificationRequest
               No value
               ansi_map.RoamerDatabaseVerificationRequest

           ansi_map.roamerDatabaseVerificationRequestRes  roamerDatabaseVerificationRequestRes
               No value
               ansi_map.RoamerDatabaseVerificationRequestRes

           ansi_map.roamingIndication  roamingIndication
               Byte array
               ansi_map.RoamingIndication

           ansi_map.routingDigits  routingDigits
               Byte array
               ansi_map.RoutingDigits

           ansi_map.routingRequest  routingRequest
               No value
               ansi_map.RoutingRequest

           ansi_map.routingRequestRes  routingRequestRes
               No value
               ansi_map.RoutingRequestRes

           ansi_map.sCFOverloadGapInterval  sCFOverloadGapInterval
               Unsigned 32-bit integer
               ansi_map.SCFOverloadGapInterval

           ansi_map.sMSDeliveryBackward  sMSDeliveryBackward
               No value
               ansi_map.SMSDeliveryBackward

           ansi_map.sMSDeliveryBackwardRes  sMSDeliveryBackwardRes
               No value
               ansi_map.SMSDeliveryBackwardRes

           ansi_map.sMSDeliveryForward  sMSDeliveryForward
               No value
               ansi_map.SMSDeliveryForward

           ansi_map.sMSDeliveryForwardRes  sMSDeliveryForwardRes
               No value
               ansi_map.SMSDeliveryForwardRes

           ansi_map.sMSDeliveryPointToPoint  sMSDeliveryPointToPoint
               No value
               ansi_map.SMSDeliveryPointToPoint

           ansi_map.sMSDeliveryPointToPointRes  sMSDeliveryPointToPointRes
               No value
               ansi_map.SMSDeliveryPointToPointRes

           ansi_map.sMSNotification  sMSNotification
               No value
               ansi_map.SMSNotification

           ansi_map.sMSNotificationRes  sMSNotificationRes
               No value
               ansi_map.SMSNotificationRes

           ansi_map.sMSRequest  sMSRequest
               No value
               ansi_map.SMSRequest

           ansi_map.sMSRequestRes  sMSRequestRes
               No value
               ansi_map.SMSRequestRes

           ansi_map.sOCStatus  sOCStatus
               Unsigned 8-bit integer
               ansi_map.SOCStatus

           ansi_map.sRFDirective  sRFDirective
               No value
               ansi_map.SRFDirective

           ansi_map.sRFDirectiveRes  sRFDirectiveRes
               No value
               ansi_map.SRFDirectiveRes

           ansi_map.scriptArgument  scriptArgument
               Byte array
               ansi_map.ScriptArgument

           ansi_map.scriptName  scriptName
               Byte array
               ansi_map.ScriptName

           ansi_map.scriptResult  scriptResult
               Byte array
               ansi_map.ScriptResult

           ansi_map.search  search
               No value
               ansi_map.Search

           ansi_map.searchRes  searchRes
               No value
               ansi_map.SearchRes

           ansi_map.segcount  Segment Counter
               Unsigned 8-bit integer
               Segment Counter

           ansi_map.seizeResource  seizeResource
               No value
               ansi_map.SeizeResource

           ansi_map.seizeResourceRes  seizeResourceRes
               No value
               ansi_map.SeizeResourceRes

           ansi_map.seizureType  seizureType
               Unsigned 32-bit integer
               ansi_map.SeizureType

           ansi_map.senderIdentificationNumber  senderIdentificationNumber
               No value
               ansi_map.SenderIdentificationNumber

           ansi_map.serviceDataAccessElementList  serviceDataAccessElementList
               Unsigned 32-bit integer
               ansi_map.ServiceDataAccessElementList

           ansi_map.serviceDataResultList  serviceDataResultList
               Unsigned 32-bit integer
               ansi_map.ServiceDataResultList

           ansi_map.serviceID  serviceID
               Byte array
               ansi_map.ServiceID

           ansi_map.serviceIndicator  serviceIndicator
               Unsigned 8-bit integer
               ansi_map.ServiceIndicator

           ansi_map.serviceManagementSystemGapInterval  serviceManagementSystemGapInterval
               Unsigned 32-bit integer
               ansi_map.ServiceManagementSystemGapInterval

           ansi_map.serviceRedirectionCause  serviceRedirectionCause
               Unsigned 8-bit integer
               ansi_map.ServiceRedirectionCause

           ansi_map.serviceRedirectionInfo  serviceRedirectionInfo
               Byte array
               ansi_map.ServiceRedirectionInfo

           ansi_map.serviceRequest  serviceRequest
               No value
               ansi_map.ServiceRequest

           ansi_map.serviceRequestRes  serviceRequestRes
               No value
               ansi_map.ServiceRequestRes

           ansi_map.servicesResult  servicesResult
               Unsigned 8-bit integer
               ansi_map.ServicesResult

           ansi_map.servingCellID  servingCellID
               Byte array
               ansi_map.ServingCellID

           ansi_map.setupResult  setupResult
               Unsigned 8-bit integer
               ansi_map.SetupResult

           ansi_map.sharedSecretData  sharedSecretData
               Byte array
               ansi_map.SharedSecretData

           ansi_map.si  Screening indication
               Unsigned 8-bit integer
               Screening indication

           ansi_map.signalQuality  signalQuality
               Unsigned 32-bit integer
               ansi_map.SignalQuality

           ansi_map.signalingMessageEncryptionKey  signalingMessageEncryptionKey
               Byte array
               ansi_map.SignalingMessageEncryptionKey

           ansi_map.signalingMessageEncryptionReport  signalingMessageEncryptionReport
               Unsigned 8-bit integer
               ansi_map.SignalingMessageEncryptionReport

           ansi_map.smsDeliveryPointToPointAck  smsDeliveryPointToPointAck
               No value
               ansi_map.SMSDeliveryPointToPointAck

           ansi_map.sms_AccessDeniedReason  sms-AccessDeniedReason
               Unsigned 8-bit integer
               ansi_map.SMS_AccessDeniedReason

           ansi_map.sms_Address  sms-Address
               No value
               ansi_map.SMS_Address

           ansi_map.sms_BearerData  sms-BearerData
               Byte array
               ansi_map.SMS_BearerData

           ansi_map.sms_CauseCode  sms-CauseCode
               Unsigned 8-bit integer
               ansi_map.SMS_CauseCode

           ansi_map.sms_ChargeIndicator  sms-ChargeIndicator
               Unsigned 8-bit integer
               ansi_map.SMS_ChargeIndicator

           ansi_map.sms_DestinationAddress  sms-DestinationAddress
               No value
               ansi_map.SMS_DestinationAddress

           ansi_map.sms_MessageCount  sms-MessageCount
               Byte array
               ansi_map.SMS_MessageCount

           ansi_map.sms_MessageWaitingIndicator  sms-MessageWaitingIndicator
               No value
               ansi_map.SMS_MessageWaitingIndicator

           ansi_map.sms_NotificationIndicator  sms-NotificationIndicator
               Unsigned 8-bit integer
               ansi_map.SMS_NotificationIndicator

           ansi_map.sms_OriginalDestinationAddress  sms-OriginalDestinationAddress
               No value
               ansi_map.SMS_OriginalDestinationAddress

           ansi_map.sms_OriginalDestinationSubaddress  sms-OriginalDestinationSubaddress
               Byte array
               ansi_map.SMS_OriginalDestinationSubaddress

           ansi_map.sms_OriginalOriginatingAddress  sms-OriginalOriginatingAddress
               No value
               ansi_map.SMS_OriginalOriginatingAddress

           ansi_map.sms_OriginalOriginatingSubaddress  sms-OriginalOriginatingSubaddress
               Byte array
               ansi_map.SMS_OriginalOriginatingSubaddress

           ansi_map.sms_OriginatingAddress  sms-OriginatingAddress
               No value
               ansi_map.SMS_OriginatingAddress

           ansi_map.sms_OriginationRestrictions  sms-OriginationRestrictions
               Byte array
               ansi_map.SMS_OriginationRestrictions

           ansi_map.sms_TeleserviceIdentifier  sms-TeleserviceIdentifier
               Byte array
               ansi_map.SMS_TeleserviceIdentifier

           ansi_map.sms_TerminationRestrictions  sms-TerminationRestrictions
               Byte array
               ansi_map.SMS_TerminationRestrictions

           ansi_map.sms_TransactionID  sms-TransactionID
               Byte array
               ansi_map.SMS_TransactionID

           ansi_map.specializedResource  specializedResource
               Byte array
               ansi_map.SpecializedResource

           ansi_map.spiniTriggers  spiniTriggers
               Byte array
               ansi_map.SPINITriggers

           ansi_map.spinipin  spinipin
               Byte array
               ansi_map.SPINIPIN

           ansi_map.ssdUpdateReport  ssdUpdateReport
               Unsigned 16-bit integer
               ansi_map.SSDUpdateReport

           ansi_map.ssdnotShared  ssdnotShared
               Unsigned 32-bit integer
               ansi_map.SSDNotShared

           ansi_map.stationClassMark  stationClassMark
               Byte array
               ansi_map.StationClassMark

           ansi_map.statusRequest  statusRequest
               No value
               ansi_map.StatusRequest

           ansi_map.statusRequestRes  statusRequestRes
               No value
               ansi_map.StatusRequestRes

           ansi_map.subaddr_odd_even  Odd/Even Indicator
               Boolean
               Odd/Even Indicator

           ansi_map.subaddr_type  Type of Subaddress
               Unsigned 8-bit integer
               Type of Subaddress

           ansi_map.suspiciousAccess  suspiciousAccess
               Unsigned 32-bit integer
               ansi_map.SuspiciousAccess

           ansi_map.swno  Switch Number (SWNO)
               Unsigned 8-bit integer
               Switch Number (SWNO)

           ansi_map.systemAccessData  systemAccessData
               Byte array
               ansi_map.SystemAccessData

           ansi_map.systemAccessType  systemAccessType
               Unsigned 32-bit integer
               ansi_map.SystemAccessType

           ansi_map.systemCapabilities  systemCapabilities
               Byte array
               ansi_map.SystemCapabilities

           ansi_map.systemMyTypeCode  systemMyTypeCode
               Unsigned 32-bit integer
               ansi_map.SystemMyTypeCode

           ansi_map.systemOperatorCode  systemOperatorCode
               Byte array
               ansi_map.SystemOperatorCode

           ansi_map.systemcapabilities.auth  Authentication Parameters Requested (AUTH)
               Boolean
               Authentication Parameters Requested (AUTH)

           ansi_map.systemcapabilities.cave  CAVE Algorithm Capable (CAVE)
               Boolean
               CAVE Algorithm Capable (CAVE)

           ansi_map.systemcapabilities.dp  Data Privacy (DP)
               Boolean
               Data Privacy (DP)

           ansi_map.systemcapabilities.se  Signaling Message Encryption Capable (SE )
               Boolean
               Signaling Message Encryption Capable (SE )

           ansi_map.systemcapabilities.ssd  Shared SSD (SSD)
               Boolean
               Shared SSD (SSD)

           ansi_map.systemcapabilities.vp  Voice Privacy Capable (VP )
               Boolean
               Voice Privacy Capable (VP )

           ansi_map.tAnswer  tAnswer
               No value
               ansi_map.TAnswer

           ansi_map.tBusy  tBusy
               No value
               ansi_map.TBusy

           ansi_map.tBusyRes  tBusyRes
               No value
               ansi_map.TBusyRes

           ansi_map.tDisconnect  tDisconnect
               No value
               ansi_map.TDisconnect

           ansi_map.tDisconnectRes  tDisconnectRes
               No value
               ansi_map.TDisconnectRes

           ansi_map.tMSIDirective  tMSIDirective
               No value
               ansi_map.TMSIDirective

           ansi_map.tMSIDirectiveRes  tMSIDirectiveRes
               No value
               ansi_map.TMSIDirectiveRes

           ansi_map.tNoAnswer  tNoAnswer
               No value
               ansi_map.TNoAnswer

           ansi_map.tNoAnswerRes  tNoAnswerRes
               No value
               ansi_map.TNoAnswerRes

           ansi_map.targetCellID  targetCellID
               Byte array
               ansi_map.TargetCellID

           ansi_map.targetCellID1  targetCellID1
               Byte array
               ansi_map.TargetCellID

           ansi_map.targetCellIDList  targetCellIDList
               No value
               ansi_map.TargetCellIDList

           ansi_map.targetMeasurementList  targetMeasurementList
               Unsigned 32-bit integer
               ansi_map.TargetMeasurementList

           ansi_map.tdmaBandwidth  tdmaBandwidth
               Unsigned 8-bit integer
               ansi_map.TDMABandwidth

           ansi_map.tdmaBurstIndicator  tdmaBurstIndicator
               Byte array
               ansi_map.TDMABurstIndicator

           ansi_map.tdmaCallMode  tdmaCallMode
               Byte array
               ansi_map.TDMACallMode

           ansi_map.tdmaChannelData  tdmaChannelData
               Byte array
               ansi_map.TDMAChannelData

           ansi_map.tdmaDataFeaturesIndicator  tdmaDataFeaturesIndicator
               Byte array
               ansi_map.TDMADataFeaturesIndicator

           ansi_map.tdmaDataMode  tdmaDataMode
               Byte array
               ansi_map.TDMADataMode

           ansi_map.tdmaServiceCode  tdmaServiceCode
               Unsigned 8-bit integer
               ansi_map.TDMAServiceCode

           ansi_map.tdmaTerminalCapability  tdmaTerminalCapability
               Byte array
               ansi_map.TDMATerminalCapability

           ansi_map.tdmaVoiceCoder  tdmaVoiceCoder
               Byte array
               ansi_map.TDMAVoiceCoder

           ansi_map.tdmaVoiceMode  tdmaVoiceMode
               Byte array
               ansi_map.TDMAVoiceMode

           ansi_map.tdma_MAHORequest  tdma-MAHORequest
               Byte array
               ansi_map.TDMA_MAHORequest

           ansi_map.tdma_MAHO_CELLID  tdma-MAHO-CELLID
               Byte array
               ansi_map.TDMA_MAHO_CELLID

           ansi_map.tdma_MAHO_CHANNEL  tdma-MAHO-CHANNEL
               Byte array
               ansi_map.TDMA_MAHO_CHANNEL

           ansi_map.tdma_TimeAlignment  tdma-TimeAlignment
               Byte array
               ansi_map.TDMA_TimeAlignment

           ansi_map.teleservice_Priority  teleservice-Priority
               Byte array
               ansi_map.Teleservice_Priority

           ansi_map.temporaryReferenceNumber  temporaryReferenceNumber
               No value
               ansi_map.TemporaryReferenceNumber

           ansi_map.terminalType  terminalType
               Unsigned 32-bit integer
               ansi_map.TerminalType

           ansi_map.terminationAccessType  terminationAccessType
               Unsigned 8-bit integer
               ansi_map.TerminationAccessType

           ansi_map.terminationList  terminationList
               Unsigned 32-bit integer
               ansi_map.TerminationList

           ansi_map.terminationRestrictionCode  terminationRestrictionCode
               Unsigned 32-bit integer
               ansi_map.TerminationRestrictionCode

           ansi_map.terminationTreatment  terminationTreatment
               Unsigned 8-bit integer
               ansi_map.TerminationTreatment

           ansi_map.terminationTriggers  terminationTriggers
               Byte array
               ansi_map.TerminationTriggers

           ansi_map.terminationtriggers.busy  Busy
               Unsigned 8-bit integer
               Busy

           ansi_map.terminationtriggers.na  No Answer (NA)
               Unsigned 8-bit integer
               No Answer (NA)

           ansi_map.terminationtriggers.npr  No Page Response (NPR)
               Unsigned 8-bit integer
               No Page Response (NPR)

           ansi_map.terminationtriggers.nr  None Reachable (NR)
               Unsigned 8-bit integer
               None Reachable (NR)

           ansi_map.terminationtriggers.rf  Routing Failure (RF)
               Unsigned 8-bit integer
               Routing Failure (RF)

           ansi_map.tgn  Trunk Group Number (G)
               Unsigned 8-bit integer
               Trunk Group Number (G)

           ansi_map.timeDateOffset  timeDateOffset
               Byte array
               ansi_map.TimeDateOffset

           ansi_map.timeOfDay  timeOfDay
               Signed 32-bit integer
               ansi_map.TimeOfDay

           ansi_map.trans_cap_ann  Announcements (ANN)
               Boolean
               Announcements (ANN)

           ansi_map.trans_cap_busy  Busy Detection (BUSY)
               Boolean
               Busy Detection (BUSY)

           ansi_map.trans_cap_multerm  Multiple Terminations
               Unsigned 8-bit integer
               Multiple Terminations

           ansi_map.trans_cap_nami  NAME Capability Indicator (NAMI)
               Boolean
               NAME Capability Indicator (NAMI)

           ansi_map.trans_cap_ndss  NDSS Capability (NDSS)
               Boolean
               NDSS Capability (NDSS)

           ansi_map.trans_cap_prof  Profile (PROF)
               Boolean
               Profile (PROF)

           ansi_map.trans_cap_rui  Remote User Interaction (RUI)
               Boolean
               Remote User Interaction (RUI)

           ansi_map.trans_cap_spini  Subscriber PIN Intercept (SPINI)
               Boolean
               Subscriber PIN Intercept (SPINI)

           ansi_map.trans_cap_tl  TerminationList (TL)
               Boolean
               TerminationList (TL)

           ansi_map.trans_cap_uzci  UZ Capability Indicator (UZCI)
               Boolean
               UZ Capability Indicator (UZCI)

           ansi_map.trans_cap_waddr  WIN Addressing (WADDR)
               Boolean
               WIN Addressing (WADDR)

           ansi_map.transactionCapability  transactionCapability
               Byte array
               ansi_map.TransactionCapability

           ansi_map.transferToNumberRequest  transferToNumberRequest
               No value
               ansi_map.TransferToNumberRequest

           ansi_map.transferToNumberRequestRes  transferToNumberRequestRes
               No value
               ansi_map.TransferToNumberRequestRes

           ansi_map.triggerAddressList  triggerAddressList
               No value
               ansi_map.TriggerAddressList

           ansi_map.triggerCapability  triggerCapability
               Byte array
               ansi_map.TriggerCapability

           ansi_map.triggerList  triggerList
               No value
               ansi_map.TriggerList

           ansi_map.triggerListOpt  triggerListOpt
               No value
               ansi_map.TriggerList

           ansi_map.triggerType  triggerType
               Unsigned 32-bit integer
               ansi_map.TriggerType

           ansi_map.triggercapability.all  All_Calls (All)
               Boolean
               All_Calls (All)

           ansi_map.triggercapability.at  Advanced_Termination (AT)
               Boolean
               Advanced_Termination (AT)

           ansi_map.triggercapability.cdraa  Called_Routing_Address_Available (CdRAA)
               Boolean
               Called_Routing_Address_Available (CdRAA)

           ansi_map.triggercapability.cgraa  Calling_Routing_Address_Available (CgRAA)
               Boolean
               Calling_Routing_Address_Available (CgRAA)

           ansi_map.triggercapability.init  Introducing Star/Pound (INIT)
               Boolean
               Introducing Star/Pound (INIT)

           ansi_map.triggercapability.it  Initial_Termination (IT)
               Boolean
               Initial_Termination (IT)

           ansi_map.triggercapability.kdigit  K-digit (K-digit)
               Boolean
               K-digit (K-digit)

           ansi_map.triggercapability.oaa  Origination_Attempt_Authorized (OAA)
               Boolean
               Origination_Attempt_Authorized (OAA)

           ansi_map.triggercapability.oans  O_Answer (OANS)
               Boolean
               O_Answer (OANS)

           ansi_map.triggercapability.odisc  O_Disconnect (ODISC)
               Boolean
               O_Disconnect (ODISC)

           ansi_map.triggercapability.ona  O_No_Answer (ONA)
               Boolean
               O_No_Answer (ONA)

           ansi_map.triggercapability.pa  Prior_Agreement (PA)
               Boolean
               Prior_Agreement (PA)

           ansi_map.triggercapability.rvtc  Revertive_Call (RvtC)
               Boolean
               Revertive_Call (RvtC)

           ansi_map.triggercapability.tans  T_Answer (TANS)
               Boolean
               T_Answer (TANS)

           ansi_map.triggercapability.tbusy  T_Busy (TBusy)
               Boolean
               T_Busy (TBusy)

           ansi_map.triggercapability.tdisc  T_Disconnect (TDISC)
               Boolean
               T_Disconnect (TDISC)

           ansi_map.triggercapability.tna  T_No_Answer (TNA)
               Boolean
               T_No_Answer (TNA)

           ansi_map.triggercapability.tra  Terminating_Resource_Available (TRA)
               Boolean
               Terminating_Resource_Available (TRA)

           ansi_map.triggercapability.unrec  Unrecognized_Number (Unrec)
               Boolean
               Unrecognized_Number (Unrec)

           ansi_map.trunkStatus  trunkStatus
               Unsigned 32-bit integer
               ansi_map.TrunkStatus

           ansi_map.trunkTest  trunkTest
               No value
               ansi_map.TrunkTest

           ansi_map.trunkTestDisconnect  trunkTestDisconnect
               No value
               ansi_map.TrunkTestDisconnect

           ansi_map.type_of_digits  Type of Digits
               Unsigned 8-bit integer
               Type of Digits

           ansi_map.type_of_pi  Presentation Indication
               Boolean
               Presentation Indication

           ansi_map.unblocking  unblocking
               No value
               ansi_map.Unblocking

           ansi_map.uniqueChallengeReport  uniqueChallengeReport
               Unsigned 8-bit integer
               ansi_map.UniqueChallengeReport

           ansi_map.unreliableCallData  unreliableCallData
               No value
               ansi_map.UnreliableCallData

           ansi_map.unreliableRoamerDataDirective  unreliableRoamerDataDirective
               No value
               ansi_map.UnreliableRoamerDataDirective

           ansi_map.unsolicitedResponse  unsolicitedResponse
               No value
               ansi_map.UnsolicitedResponse

           ansi_map.unsolicitedResponseRes  unsolicitedResponseRes
               No value
               ansi_map.UnsolicitedResponseRes

           ansi_map.updateCount  updateCount
               Unsigned 32-bit integer
               ansi_map.UpdateCount

           ansi_map.userGroup  userGroup
               Byte array
               ansi_map.UserGroup

           ansi_map.userZoneData  userZoneData
               Byte array
               ansi_map.UserZoneData

           ansi_map.value   Value
               Unsigned 8-bit integer
               Value

           ansi_map.vertical_Velocity  vertical-Velocity
               Byte array
               ansi_map.Vertical_Velocity

           ansi_map.voiceMailboxNumber  voiceMailboxNumber
               Byte array
               ansi_map.VoiceMailboxNumber

           ansi_map.voiceMailboxPIN  voiceMailboxPIN
               Byte array
               ansi_map.VoiceMailboxPIN

           ansi_map.voicePrivacyMask  voicePrivacyMask
               Byte array
               ansi_map.VoicePrivacyMask

           ansi_map.voicePrivacyReport  voicePrivacyReport
               Unsigned 8-bit integer
               ansi_map.VoicePrivacyReport

           ansi_map.wINOperationsCapability  wINOperationsCapability
               Byte array
               ansi_map.WINOperationsCapability

           ansi_map.wIN_TriggerList  wIN-TriggerList
               Byte array
               ansi_map.WIN_TriggerList

           ansi_map.winCapability  winCapability
               No value
               ansi_map.WINCapability

           ansi_map.winoperationscapability.ccdir  CallControlDirective(CCDIR)
               Boolean
               CallControlDirective(CCDIR)

           ansi_map.winoperationscapability.conn  ConnectResource (CONN)
               Boolean
               ConnectResource (CONN)

           ansi_map.winoperationscapability.pos  PositionRequest (POS)
               Boolean
               PositionRequest (POS)

   ANSI Transaction Capabilities Application Part (ansi_tcap)
           ansi_tcap.ComponentPDU  ComponentPDU
               Unsigned 32-bit integer
               ansi_tcap.ComponentPDU

           ansi_tcap._untag_item  _untag item
               No value
               ansi_tcap.EXTERNAL

           ansi_tcap.abort  abort
               No value
               ansi_tcap.T_abort

           ansi_tcap.abortCause  abortCause
               Signed 32-bit integer
               ansi_tcap.P_Abort_cause

           ansi_tcap.applicationContext  applicationContext
               Unsigned 32-bit integer
               ansi_tcap.T_applicationContext

           ansi_tcap.causeInformation  causeInformation
               Unsigned 32-bit integer
               ansi_tcap.T_causeInformation

           ansi_tcap.componentID  componentID
               Byte array
               ansi_tcap.T_componentID

           ansi_tcap.componentIDs  componentIDs
               Byte array
               ansi_tcap.T_componentIDs

           ansi_tcap.componentPortion  componentPortion
               Unsigned 32-bit integer
               ansi_tcap.ComponentSequence

           ansi_tcap.confidentiality  confidentiality
               No value
               ansi_tcap.Confidentiality

           ansi_tcap.confidentialityId  confidentialityId
               Unsigned 32-bit integer
               ansi_tcap.T_confidentialityId

           ansi_tcap.conversationWithPerm  conversationWithPerm
               No value
               ansi_tcap.T_conversationWithPerm

           ansi_tcap.conversationWithoutPerm  conversationWithoutPerm
               No value
               ansi_tcap.T_conversationWithoutPerm

           ansi_tcap.dialogPortion  dialogPortion
               No value
               ansi_tcap.DialoguePortion

           ansi_tcap.dialoguePortion  dialoguePortion
               No value
               ansi_tcap.DialoguePortion

           ansi_tcap.errorCode  errorCode
               Unsigned 32-bit integer
               ansi_tcap.ErrorCode

           ansi_tcap.identifier  identifier
               Byte array
               ansi_tcap.TransactionID

           ansi_tcap.integerApplicationId  integerApplicationId
               Signed 32-bit integer
               ansi_tcap.IntegerApplicationContext

           ansi_tcap.integerConfidentialityId  integerConfidentialityId
               Signed 32-bit integer
               ansi_tcap.INTEGER

           ansi_tcap.integerSecurityId  integerSecurityId
               Signed 32-bit integer
               ansi_tcap.INTEGER

           ansi_tcap.invokeLast  invokeLast
               No value
               ansi_tcap.Invoke

           ansi_tcap.invokeNotLast  invokeNotLast
               No value
               ansi_tcap.Invoke

           ansi_tcap.national  national
               Signed 32-bit integer
               ansi_tcap.T_national

           ansi_tcap.objectApplicationId  objectApplicationId
               Object Identifier
               ansi_tcap.ObjectIDApplicationContext

           ansi_tcap.objectConfidentialityId  objectConfidentialityId
               Object Identifier
               ansi_tcap.OBJECT_IDENTIFIER

           ansi_tcap.objectSecurityId  objectSecurityId
               Object Identifier
               ansi_tcap.OBJECT_IDENTIFIER

           ansi_tcap.operationCode  operationCode
               Unsigned 32-bit integer
               ansi_tcap.OperationCode

           ansi_tcap.paramSequence  paramSequence
               No value
               ansi_tcap.T_paramSequence

           ansi_tcap.paramSet  paramSet
               No value
               ansi_tcap.T_paramSet

           ansi_tcap.parameter  parameter
               Byte array
               ansi_tcap.T_parameter

           ansi_tcap.private  private
               Signed 32-bit integer
               ansi_tcap.T_private

           ansi_tcap.queryWithPerm  queryWithPerm
               No value
               ansi_tcap.T_queryWithPerm

           ansi_tcap.queryWithoutPerm  queryWithoutPerm
               No value
               ansi_tcap.T_queryWithoutPerm

           ansi_tcap.reject  reject
               No value
               ansi_tcap.Reject

           ansi_tcap.rejectProblem  rejectProblem
               Signed 32-bit integer
               ansi_tcap.Problem

           ansi_tcap.response  response
               No value
               ansi_tcap.T_response

           ansi_tcap.returnError  returnError
               No value
               ansi_tcap.ReturnError

           ansi_tcap.returnResultLast  returnResultLast
               No value
               ansi_tcap.ReturnResult

           ansi_tcap.returnResultNotLast  returnResultNotLast
               No value
               ansi_tcap.ReturnResult

           ansi_tcap.securityContext  securityContext
               Unsigned 32-bit integer
               ansi_tcap.T_securityContext

           ansi_tcap.srt.begin  Begin Session
               Frame number
               SRT Begin of Session

           ansi_tcap.srt.duplicate  Request Duplicate
               Unsigned 32-bit integer

           ansi_tcap.srt.end  End Session
               Frame number
               SRT End of Session

           ansi_tcap.srt.session_id  Session Id
               Unsigned 32-bit integer

           ansi_tcap.srt.sessiontime  Session duration
               Time duration
               Duration of the TCAP session

           ansi_tcap.unidirectional  unidirectional
               No value
               ansi_tcap.T_unidirectional

           ansi_tcap.userInformation  userInformation
               No value
               ansi_tcap.UserAbortInformation

           ansi_tcap.version  version
               Byte array
               ansi_tcap.ProtocolVersion

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

           arcnet.protID  Protocol ID
               Unsigned 8-bit integer
               Proto type

           arcnet.sequence  Sequence
               Unsigned 16-bit integer
               Sequence number

           arcnet.split_flag  Split Flag
               Unsigned 8-bit integer
               Split flag

           arcnet.src  Source
               Unsigned 8-bit integer
               Source ID

   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
               Err/Feature

           aoe.error  Error
               Unsigned 8-bit integer
               Error code

           aoe.lba  Lba
               Unsigned 64-bit integer
               Lba address

           aoe.major  Major
               Unsigned 16-bit integer
               Major address

           aoe.minor  Minor
               Unsigned 8-bit integer
               Minor address

           aoe.response  Response flag
               Boolean
               Whether this is a response PDU or not

           aoe.response_in  Response In
               Frame number
               The response to this packet is in this frame

           aoe.response_to  Response To
               Frame number
               This is a response to the ATA command in this frame

           aoe.sector_count  Sector Count
               Unsigned 8-bit integer
               Sector Count

           aoe.tag  Tag
               Unsigned 32-bit integer
               Command Tag

           aoe.time  Time from request
               Time duration
               Time between Request and Reply for ATA calls

           aoe.version  Version
               Unsigned 8-bit integer
               Version of the AOE protocol

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

   ATM AAL1 (aal1)
   ATM AAL3/4 (aal3_4)
   ATM LAN Emulation (lane)
   ATM OAM AAL (oamaal)
   ATM PW, N-to-one Cell Mode (no CW) (pw_atm_n2o_nocw)
   ATM PW, N-to-one Cell Mode Control Word (pw_atm_n2o_cw)
           pw_atm_n2o_cw_flags  ATM N-to-one Cell Mode flags
               Unsigned 8-bit integer

           pw_atm_n2o_cw_length  ATM N-to-one Cell Mode flags
               Unsigned 8-bit integer

           pw_atm_n2o_cw_sequence_number  ATM N-to-one Cell Mode sequence number
               Unsigned 16-bit integer

   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

   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
               Destination Sequence Number

           aodv.destcount  Destination Count
               Unsigned 8-bit integer
               Unreachable Destinations Count

           aodv.ext_length  Extension Length
               Unsigned 8-bit integer
               Extension Data Length

           aodv.ext_type  Extension Type
               Unsigned 8-bit integer
               Extension Format Type

           aodv.flags  Flags
               Unsigned 16-bit integer
               Flags

           aodv.flags.rerr_nodelete  RERR No Delete
               Boolean

           aodv.flags.rrep_ack  RREP Acknowledgement
               Boolean

           aodv.flags.rrep_repair  RREP Repair
               Boolean

           aodv.flags.rreq_destinationonly  RREQ Destination only
               Boolean

           aodv.flags.rreq_gratuitous  RREQ Gratuitous RREP
               Boolean

           aodv.flags.rreq_join  RREQ Join
               Boolean

           aodv.flags.rreq_repair  RREQ Repair
               Boolean

           aodv.flags.rreq_unknown  RREQ Unknown Sequence Number
               Boolean

           aodv.hello_interval  Hello Interval
               Unsigned 32-bit integer
               Hello Interval Extension

           aodv.hopcount  Hop Count
               Unsigned 8-bit integer
               Hop Count

           aodv.lifetime  Lifetime
               Unsigned 32-bit integer
               Lifetime

           aodv.orig_ip  Originator IP
               IPv4 address
               Originator IP Address

           aodv.orig_ipv6  Originator IPv6
               IPv6 address
               Originator IPv6 Address

           aodv.orig_seqno  Originator Sequence Number
               Unsigned 32-bit integer
               Originator Sequence Number

           aodv.prefix_sz  Prefix Size
               Unsigned 8-bit integer
               Prefix Size

           aodv.rreq_id  RREQ Id
               Unsigned 32-bit integer
               RREQ Id

           aodv.timestamp  Timestamp
               Unsigned 64-bit integer
               Timestamp Extension

           aodv.type  Type
               Unsigned 8-bit integer
               AODV packet type

           aodv.unreach_dest_ip  Unreachable Destination IP
               IPv4 address
               Unreachable Destination IP Address

           aodv.unreach_dest_ipv6  Unreachable Destination IPv6
               IPv6 address
               Unreachable Destination IPv6 Address

           aodv.unreach_dest_seqno  Unreachable Destination Sequence Number
               Unsigned 32-bit integer
               Unreachable Destination Sequence Number

   Adaptive Multi-Rate (amr)
           amr.fqi  FQI
               Boolean
               Frame quality indicator bit

           amr.if1.sti  SID Type Indicator
               Boolean
               SID Type Indicator

           amr.if2.sti  SID Type Indicator
               Boolean
               SID Type Indicator

           amr.nb.cmr  CMR
               Unsigned 8-bit integer
               codec mode request

           amr.nb.if1.ft  Frame Type
               Unsigned 8-bit integer
               Frame Type

           amr.nb.if1.modeind  Mode Type indication
               Unsigned 8-bit integer
               Mode Type indication

           amr.nb.if1.modereq  Mode Type request
               Unsigned 8-bit integer
               Mode Type request

           amr.nb.if1.stimodeind  Mode Type indication
               Unsigned 8-bit integer
               Mode Type indication

           amr.nb.if2.ft  Frame Type
               Unsigned 8-bit integer
               Frame Type

           amr.nb.if2.stimodeind  Mode Type indication
               Unsigned 8-bit integer
               Mode Type indication

           amr.nb.toc.ft  FT bits
               Unsigned 8-bit integer
               Frame type index

           amr.reserved  Reserved
               Unsigned 8-bit integer
               Reserved bits

           amr.toc.f  F bit
               Boolean
               F bit

           amr.toc.q  Q bit
               Boolean
               Frame quality indicator bit

           amr.wb.cmr  CMR
               Unsigned 8-bit integer
               codec mode request

           amr.wb.if1.ft  Frame Type
               Unsigned 8-bit integer
               Frame Type

           amr.wb.if1.modeind  Mode Type indication
               Unsigned 8-bit integer
               Mode Type indication

           amr.wb.if1.modereq  Mode Type request
               Unsigned 8-bit integer
               Mode Type request

           amr.wb.if1.stimodeind  Mode Type indication
               Unsigned 8-bit integer
               Mode Type indication

           amr.wb.if2.ft  Frame Type
               Unsigned 8-bit integer
               Frame Type

           amr.wb.if2.stimodeind  Mode Type indication
               Unsigned 8-bit integer
               Mode Type indication

           amr.wb.toc.ft  FT bits
               Unsigned 8-bit integer
               Frame type index

   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.header.body-size  Body size
               Unsigned 64-bit integer
               Body size

           amqp.header.class  Class ID
               Unsigned 16-bit integer
               Class ID

           amqp.header.properties  Properties
               No value
               Message properties

           amqp.header.property-flags  Property flags
               Unsigned 16-bit integer
               Property flags

           amqp.header.weight  Weight
               Unsigned 16-bit integer
               Weight

           amqp.init.id_major  Protocol ID Major
               Unsigned 8-bit integer
               Protocol ID major

           amqp.init.id_minor  Protocol ID Minor
               Unsigned 8-bit integer
               Protocol ID minor

           amqp.init.protocol  Protocol
               String
               Protocol name

           amqp.init.version_major  Version Major
               Unsigned 8-bit integer
               Protocol version major

           amqp.init.version_minor  Version Minor
               Unsigned 8-bit integer
               Protocol version minor

           amqp.length  Length
               Unsigned 32-bit integer
               Length of the frame

           amqp.method.arguments  Arguments
               No value
               Method arguments

           amqp.method.arguments.active  Active
               Boolean
               active

           amqp.method.arguments.arguments  Arguments
               No value
               arguments

           amqp.method.arguments.auto_delete  Auto-Delete
               Boolean
               auto-delete

           amqp.method.arguments.capabilities  Capabilities
               String
               capabilities

           amqp.method.arguments.challenge  Challenge
               Byte array
               challenge

           amqp.method.arguments.channel_id  Channel-Id
               Byte array
               channel-id

           amqp.method.arguments.channel_max  Channel-Max
               Unsigned 16-bit integer
               channel-max

           amqp.method.arguments.class_id  Class-Id
               Unsigned 16-bit integer
               class-id

           amqp.method.arguments.client_properties  Client-Properties
               No value
               client-properties

           amqp.method.arguments.cluster_id  Cluster-Id
               String
               cluster-id

           amqp.method.arguments.consume_rate  Consume-Rate
               Unsigned 32-bit integer
               consume-rate

           amqp.method.arguments.consumer_count  Consumer-Count
               Unsigned 32-bit integer
               consumer-count

           amqp.method.arguments.consumer_tag  Consumer-Tag
               String
               consumer-tag

           amqp.method.arguments.content_size  Content-Size
               Unsigned 64-bit integer
               content-size

           amqp.method.arguments.delivery_tag  Delivery-Tag
               Unsigned 64-bit integer
               delivery-tag

           amqp.method.arguments.dtx_identifier  Dtx-Identifier
               String
               dtx-identifier

           amqp.method.arguments.durable  Durable
               Boolean
               durable

           amqp.method.arguments.exchange  Exchange
               String
               exchange

           amqp.method.arguments.exclusive  Exclusive
               Boolean
               exclusive

           amqp.method.arguments.filter  Filter
               No value
               filter

           amqp.method.arguments.frame_max  Frame-Max
               Unsigned 32-bit integer
               frame-max

           amqp.method.arguments.global  Global
               Boolean
               global

           amqp.method.arguments.heartbeat  Heartbeat
               Unsigned 16-bit integer
               heartbeat

           amqp.method.arguments.host  Host
               String
               host

           amqp.method.arguments.identifier  Identifier
               String
               identifier

           amqp.method.arguments.if_empty  If-Empty
               Boolean
               if-empty

           amqp.method.arguments.if_unused  If-Unused
               Boolean
               if-unused

           amqp.method.arguments.immediate  Immediate
               Boolean
               immediate

           amqp.method.arguments.insist  Insist
               Boolean
               insist

           amqp.method.arguments.internal  Internal
               Boolean
               internal

           amqp.method.arguments.known_hosts  Known-Hosts
               String
               known-hosts

           amqp.method.arguments.locale  Locale
               String
               locale

           amqp.method.arguments.locales  Locales
               Byte array
               locales

           amqp.method.arguments.mandatory  Mandatory
               Boolean
               mandatory

           amqp.method.arguments.mechanism  Mechanism
               String
               mechanism

           amqp.method.arguments.mechanisms  Mechanisms
               Byte array
               mechanisms

           amqp.method.arguments.message_count  Message-Count
               Unsigned 32-bit integer
               message-count

           amqp.method.arguments.meta_data  Meta-Data
               No value
               meta-data

           amqp.method.arguments.method_id  Method-Id
               Unsigned 16-bit integer
               method-id

           amqp.method.arguments.multiple  Multiple
               Boolean
               multiple

           amqp.method.arguments.no_ack  No-Ack
               Boolean
               no-ack

           amqp.method.arguments.no_local  No-Local
               Boolean
               no-local

           amqp.method.arguments.nowait  Nowait
               Boolean
               nowait

           amqp.method.arguments.out_of_band  Out-Of-Band
               String
               out-of-band

           amqp.method.arguments.passive  Passive
               Boolean
               passive

           amqp.method.arguments.prefetch_count  Prefetch-Count
               Unsigned 16-bit integer
               prefetch-count

           amqp.method.arguments.prefetch_size  Prefetch-Size
               Unsigned 32-bit integer
               prefetch-size

           amqp.method.arguments.queue  Queue
               String
               queue

           amqp.method.arguments.read  Read
               Boolean
               read

           amqp.method.arguments.realm  Realm
               String
               realm

           amqp.method.arguments.redelivered  Redelivered
               Boolean
               redelivered

           amqp.method.arguments.reply_code  Reply-Code
               Unsigned 16-bit integer
               reply-code

           amqp.method.arguments.reply_text  Reply-Text
               String
               reply-text

           amqp.method.arguments.requeue  Requeue
               Boolean
               requeue

           amqp.method.arguments.response  Response
               Byte array
               response

           amqp.method.arguments.routing_key  Routing-Key
               String
               routing-key

           amqp.method.arguments.server_properties  Server-Properties
               No value
               server-properties

           amqp.method.arguments.staged_size  Staged-Size
               Unsigned 64-bit integer
               staged-size

           amqp.method.arguments.ticket  Ticket
               Unsigned 16-bit integer
               ticket

           amqp.method.arguments.type  Type
               String
               type

           amqp.method.arguments.version_major  Version-Major
               Unsigned 8-bit integer
               version-major

           amqp.method.arguments.version_minor  Version-Minor
               Unsigned 8-bit integer
               version-minor

           amqp.method.arguments.virtual_host  Virtual-Host
               String
               virtual-host

           amqp.method.arguments.write  Write
               Boolean
               write

           amqp.method.class  Class
               Unsigned 16-bit integer
               Class ID

           amqp.method.method  Method
               Unsigned 16-bit integer
               Method ID

           amqp.method.properties.app_id  App-Id
               String
               app-id

           amqp.method.properties.broadcast  Broadcast
               Unsigned 8-bit integer
               broadcast

           amqp.method.properties.cluster_id  Cluster-Id
               String
               cluster-id

           amqp.method.properties.content_encoding  Content-Encoding
               String
               content-encoding

           amqp.method.properties.content_type  Content-Type
               String
               content-type

           amqp.method.properties.correlation_id  Correlation-Id
               String
               correlation-id

           amqp.method.properties.data_name  Data-Name
               String
               data-name

           amqp.method.properties.delivery_mode  Delivery-Mode
               Unsigned 8-bit integer
               delivery-mode

           amqp.method.properties.durable  Durable
               Unsigned 8-bit integer
               durable

           amqp.method.properties.expiration  Expiration
               String
               expiration

           amqp.method.properties.filename  Filename
               String
               filename

           amqp.method.properties.headers  Headers
               No value
               headers

           amqp.method.properties.message_id  Message-Id
               String
               message-id

           amqp.method.properties.priority  Priority
               Unsigned 8-bit integer
               priority

           amqp.method.properties.proxy_name  Proxy-Name
               String
               proxy-name

           amqp.method.properties.reply_to  Reply-To
               String
               reply-to

           amqp.method.properties.timestamp  Timestamp
               Unsigned 64-bit integer
               timestamp

           amqp.method.properties.type  Type
               String
               type

           amqp.method.properties.user_id  User-Id
               String
               user-id

           amqp.payload  Payload
               Byte array
               Message payload

           amqp.type  Type
               Unsigned 8-bit integer
               Frame type

   AgentX (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
               Number subids

           agentx.o.timeout  Timeout
               Unsigned 8-bit integer
               open timeout

           agentx.oid  OID
               String
               OID

           agentx.oid_include  OID include
               Unsigned 8-bit integer
               OID include

           agentx.oid_prefix  OID prefix
               Unsigned 8-bit integer
               OID prefix

           agentx.ostring  Octet String
               String
               Octet String

           agentx.ostring_len  OString len
               Unsigned 32-bit integer
               Octet String Length

           agentx.packet_id  PacketID
               Unsigned 32-bit integer
               Packet ID

           agentx.payload_len  Payload length
               Unsigned 32-bit integer
               Payload length

           agentx.r.error  Resp. error
               Unsigned 16-bit integer
               response error

           agentx.r.index  Resp. index
               Unsigned 16-bit integer
               response index

           agentx.r.priority  Priority
               Unsigned 8-bit integer
               Register Priority

           agentx.r.range_subid  Range_subid
               Unsigned 8-bit integer
               Register range_subid

           agentx.r.timeout  Timeout
               Unsigned 8-bit integer
               Register timeout

           agentx.r.upper_bound  Upper bound
               Unsigned 32-bit integer
               Register upper bound

           agentx.r.uptime  sysUpTime
               Unsigned 32-bit integer
               sysUpTime

           agentx.session_id  sessionID
               Unsigned 32-bit integer
               Session ID

           agentx.transaction_id  TransactionID
               Unsigned 32-bit integer
               Transaction ID

           agentx.type  Type
               Unsigned 8-bit integer
               header type

           agentx.u.priority  Priority
               Unsigned 8-bit integer
               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
               Error Code

           afs.backup.opcode  Operation
               Unsigned 32-bit integer
               Operation

           afs.bos  BOS
               Boolean
               Basic Oversee Server

           afs.bos.baktime  Backup Time
               Date/Time stamp
               Backup Time

           afs.bos.cell  Cell
               String
               Cell

           afs.bos.cmd  Command
               String
               Command

           afs.bos.content  Content
               String
               Content

           afs.bos.data  Data
               Byte array
               Data

           afs.bos.date  Date
               Unsigned 32-bit integer
               Date

           afs.bos.errcode  Error Code
               Unsigned 32-bit integer
               Error Code

           afs.bos.error  Error
               String
               Error

           afs.bos.file  File
               String
               File

           afs.bos.flags  Flags
               Unsigned 32-bit integer
               Flags

           afs.bos.host  Host
               String
               Host

           afs.bos.instance  Instance
               String
               Instance

           afs.bos.key  Key
               Byte array
               key

           afs.bos.keychecksum  Key Checksum
               Unsigned 32-bit integer
               Key Checksum

           afs.bos.keymodtime  Key Modification Time
               Date/Time stamp
               Key Modification Time

           afs.bos.keyspare2  Key Spare 2
               Unsigned 32-bit integer
               Key Spare 2

           afs.bos.kvno  Key Version Number
               Unsigned 32-bit integer
               Key Version Number

           afs.bos.newtime  New Time
               Date/Time stamp
               New Time

           afs.bos.number  Number
               Unsigned 32-bit integer
               Number

           afs.bos.oldtime  Old Time
               Date/Time stamp
               Old Time

           afs.bos.opcode  Operation
               Unsigned 32-bit integer
               Operation

           afs.bos.parm  Parm
               String
               Parm

           afs.bos.path  Path
               String
               Path

           afs.bos.size  Size
               Unsigned 32-bit integer
               Size

           afs.bos.spare1  Spare1
               String
               Spare1

           afs.bos.spare2  Spare2
               String
               Spare2

           afs.bos.spare3  Spare3
               String
               Spare3

           afs.bos.status  Status
               Signed 32-bit integer
               Status

           afs.bos.statusdesc  Status Description
               String
               Status Description

           afs.bos.type  Type
               String
               Type

           afs.bos.user  User
               String
               User

           afs.cb  Callback
               Boolean
               Callback

           afs.cb.callback.expires  Expires
               Date/Time stamp
               Expires

           afs.cb.callback.type  Type
               Unsigned 32-bit integer
               Type

           afs.cb.callback.version  Version
               Unsigned 32-bit integer
               Version

           afs.cb.errcode  Error Code
               Unsigned 32-bit integer
               Error Code

           afs.cb.fid.uniq  FileID (Uniqifier)
               Unsigned 32-bit integer
               File ID (Uniqifier)

           afs.cb.fid.vnode  FileID (VNode)
               Unsigned 32-bit integer
               File ID (VNode)

           afs.cb.fid.volume  FileID (Volume)
               Unsigned 32-bit integer
               File ID (Volume)

           afs.cb.opcode  Operation
               Unsigned 32-bit integer
               Operation

           afs.error  Error
               Boolean
               Error

           afs.error.opcode  Operation
               Unsigned 32-bit integer
               Operation

           afs.fs  File Server
               Boolean
               File Server

           afs.fs.acl.a  _A_dminister
               Boolean
               Administer

           afs.fs.acl.count.negative  ACL Count (Negative)
               Unsigned 32-bit integer
               Number of Negative ACLs

           afs.fs.acl.count.positive  ACL Count (Positive)
               Unsigned 32-bit integer
               Number of Positive ACLs

           afs.fs.acl.d  _D_elete
               Boolean
               Delete

           afs.fs.acl.datasize  ACL Size
               Unsigned 32-bit integer
               ACL Data Size

           afs.fs.acl.entity  Entity (User/Group)
               String
               ACL Entity (User/Group)

           afs.fs.acl.i  _I_nsert
               Boolean
               Insert

           afs.fs.acl.k  _L_ock
               Boolean
               Lock

           afs.fs.acl.l  _L_ookup
               Boolean
               Lookup

           afs.fs.acl.r  _R_ead
               Boolean
               Read

           afs.fs.acl.w  _W_rite
               Boolean
               Write

           afs.fs.callback.expires  Expires
               Time duration
               Expires

           afs.fs.callback.type  Type
               Unsigned 32-bit integer
               Type

           afs.fs.callback.version  Version
               Unsigned 32-bit integer
               Version

           afs.fs.cps.spare1  CPS Spare1
               Unsigned 32-bit integer
               CPS Spare1

           afs.fs.cps.spare2  CPS Spare2
               Unsigned 32-bit integer
               CPS Spare2

           afs.fs.cps.spare3  CPS Spare3
               Unsigned 32-bit integer
               CPS Spare3

           afs.fs.data  Data
               Byte array
               Data

           afs.fs.errcode  Error Code
               Unsigned 32-bit integer
               Error Code

           afs.fs.fid.uniq  FileID (Uniqifier)
               Unsigned 32-bit integer
               File ID (Uniqifier)

           afs.fs.fid.vnode  FileID (VNode)
               Unsigned 32-bit integer
               File ID (VNode)

           afs.fs.fid.volume  FileID (Volume)
               Unsigned 32-bit integer
               File ID (Volume)

           afs.fs.flength  FLength
               Unsigned 32-bit integer
               FLength

           afs.fs.flength64  FLength64
               Unsigned 64-bit integer
               FLength64

           afs.fs.ipaddr  IP Addr
               IPv4 address
               IP Addr

           afs.fs.length  Length
               Unsigned 32-bit integer
               Length

           afs.fs.length64  Length64
               Unsigned 64-bit integer
               Length64

           afs.fs.motd  Message of the Day
               String
               Message of the Day

           afs.fs.name  Name
               String
               Name

           afs.fs.newname  New Name
               String
               New Name

           afs.fs.offlinemsg  Offline Message
               String
               Volume Name

           afs.fs.offset  Offset
               Unsigned 32-bit integer
               Offset

           afs.fs.offset64  Offset64
               Unsigned 64-bit integer
               Offset64

           afs.fs.oldname  Old Name
               String
               Old Name

           afs.fs.opcode  Operation
               Unsigned 32-bit integer
               Operation

           afs.fs.status.anonymousaccess  Anonymous Access
               Unsigned 32-bit integer
               Anonymous Access

           afs.fs.status.author  Author
               Unsigned 32-bit integer
               Author

           afs.fs.status.calleraccess  Caller Access
               Unsigned 32-bit integer
               Caller Access

           afs.fs.status.clientmodtime  Client Modification Time
               Date/Time stamp
               Client Modification Time

           afs.fs.status.dataversion  Data Version
               Unsigned 32-bit integer
               Data Version

           afs.fs.status.dataversionhigh  Data Version (High)
               Unsigned 32-bit integer
               Data Version (High)

           afs.fs.status.filetype  File Type
               Unsigned 32-bit integer
               File Type

           afs.fs.status.group  Group
               Unsigned 32-bit integer
               Group

           afs.fs.status.interfaceversion  Interface Version
               Unsigned 32-bit integer
               Interface Version

           afs.fs.status.length  Length
               Unsigned 32-bit integer
               Length

           afs.fs.status.linkcount  Link Count
               Unsigned 32-bit integer
               Link Count

           afs.fs.status.mask  Mask
               Unsigned 32-bit integer
               Mask

           afs.fs.status.mask.fsync  FSync
               Boolean
               FSync

           afs.fs.status.mask.setgroup  Set Group
               Boolean
               Set Group

           afs.fs.status.mask.setmode  Set Mode
               Boolean
               Set Mode

           afs.fs.status.mask.setmodtime  Set Modification Time
               Boolean
               Set Modification Time

           afs.fs.status.mask.setowner  Set Owner
               Boolean
               Set Owner

           afs.fs.status.mask.setsegsize  Set Segment Size
               Boolean
               Set Segment Size

           afs.fs.status.mode  Unix Mode
               Unsigned 32-bit integer
               Unix Mode

           afs.fs.status.owner  Owner
               Unsigned 32-bit integer
               Owner

           afs.fs.status.parentunique  Parent Unique
               Unsigned 32-bit integer
               Parent Unique

           afs.fs.status.parentvnode  Parent VNode
               Unsigned 32-bit integer
               Parent VNode

           afs.fs.status.segsize  Segment Size
               Unsigned 32-bit integer
               Segment Size

           afs.fs.status.servermodtime  Server Modification Time
               Date/Time stamp
               Server Modification Time

           afs.fs.status.spare2  Spare 2
               Unsigned 32-bit integer
               Spare 2

           afs.fs.status.spare3  Spare 3
               Unsigned 32-bit integer
               Spare 3

           afs.fs.status.spare4  Spare 4
               Unsigned 32-bit integer
               Spare 4

           afs.fs.status.synccounter  Sync Counter
               Unsigned 32-bit integer
               Sync Counter

           afs.fs.symlink.content  Symlink Content
               String
               Symlink Content

           afs.fs.symlink.name  Symlink Name
               String
               Symlink Name

           afs.fs.timestamp  Timestamp
               Date/Time stamp
               Timestamp

           afs.fs.token  Token
               Byte array
               Token

           afs.fs.viceid  Vice ID
               Unsigned 32-bit integer
               Vice ID

           afs.fs.vicelocktype  Vice Lock Type
               Unsigned 32-bit integer
               Vice Lock Type

           afs.fs.volid  Volume ID
               Unsigned 32-bit integer
               Volume ID

           afs.fs.volname  Volume Name
               String
               Volume Name

           afs.fs.volsync.spare1  Volume Creation Timestamp
               Date/Time stamp
               Volume Creation Timestamp

           afs.fs.volsync.spare2  Spare 2
               Unsigned 32-bit integer
               Spare 2

           afs.fs.volsync.spare3  Spare 3
               Unsigned 32-bit integer
               Spare 3

           afs.fs.volsync.spare4  Spare 4
               Unsigned 32-bit integer
               Spare 4

           afs.fs.volsync.spare5  Spare 5
               Unsigned 32-bit integer
               Spare 5

           afs.fs.volsync.spare6  Spare 6
               Unsigned 32-bit integer
               Spare 6

           afs.fs.xstats.clientversion  Client Version
               Unsigned 32-bit integer
               Client Version

           afs.fs.xstats.collnumber  Collection Number
               Unsigned 32-bit integer
               Collection Number

           afs.fs.xstats.timestamp  XStats Timestamp
               Unsigned 32-bit integer
               XStats Timestamp

           afs.fs.xstats.version  XStats Version
               Unsigned 32-bit integer
               XStats Version

           afs.kauth  KAuth
               Boolean
               Kerberos Auth Server

           afs.kauth.data  Data
               Byte array
               Data

           afs.kauth.domain  Domain
               String
               Domain

           afs.kauth.errcode  Error Code
               Unsigned 32-bit integer
               Error Code

           afs.kauth.kvno  Key Version Number
               Unsigned 32-bit integer
               Key Version Number

           afs.kauth.name  Name
               String
               Name

           afs.kauth.opcode  Operation
               Unsigned 32-bit integer
               Operation

           afs.kauth.princ  Principal
               String
               Principal

           afs.kauth.realm  Realm
               String
               Realm

           afs.prot  Protection
               Boolean
               Protection Server

           afs.prot.count  Count
               Unsigned 32-bit integer
               Count

           afs.prot.errcode  Error Code
               Unsigned 32-bit integer
               Error Code

           afs.prot.flag  Flag
               Unsigned 32-bit integer
               Flag

           afs.prot.gid  Group ID
               Unsigned 32-bit integer
               Group ID

           afs.prot.id  ID
               Unsigned 32-bit integer
               ID

           afs.prot.maxgid  Maximum Group ID
               Unsigned 32-bit integer
               Maximum Group ID

           afs.prot.maxuid  Maximum User ID
               Unsigned 32-bit integer
               Maximum User ID

           afs.prot.name  Name
               String
               Name

           afs.prot.newid  New ID
               Unsigned 32-bit integer
               New ID

           afs.prot.oldid  Old ID
               Unsigned 32-bit integer
               Old ID

           afs.prot.opcode  Operation
               Unsigned 32-bit integer
               Operation

           afs.prot.pos  Position
               Unsigned 32-bit integer
               Position

           afs.prot.uid  User ID
               Unsigned 32-bit integer
               User ID

           afs.repframe  Reply Frame
               Frame number
               Reply Frame

           afs.reqframe  Request Frame
               Frame number
               Request Frame

           afs.rmtsys  Rmtsys
               Boolean
               Rmtsys

           afs.rmtsys.opcode  Operation
               Unsigned 32-bit integer
               Operation

           afs.time  Time from request
               Time duration
               Time between Request and Reply for AFS calls

           afs.ubik  Ubik
               Boolean
               Ubik

           afs.ubik.activewrite  Active Write
               Unsigned 32-bit integer
               Active Write

           afs.ubik.addr  Address
               IPv4 address
               Address

           afs.ubik.amsyncsite  Am Sync Site
               Unsigned 32-bit integer
               Am Sync Site

           afs.ubik.anyreadlocks  Any Read Locks
               Unsigned 32-bit integer
               Any Read Locks

           afs.ubik.anywritelocks  Any Write Locks
               Unsigned 32-bit integer
               Any Write Locks

           afs.ubik.beaconsincedown  Beacon Since Down
               Unsigned 32-bit integer
               Beacon Since Down

           afs.ubik.currentdb  Current DB
               Unsigned 32-bit integer
               Current DB

           afs.ubik.currenttran  Current Transaction
               Unsigned 32-bit integer
               Current Transaction

           afs.ubik.epochtime  Epoch Time
               Date/Time stamp
               Epoch Time

           afs.ubik.errcode  Error Code
               Unsigned 32-bit integer
               Error Code

           afs.ubik.file  File
               Unsigned 32-bit integer
               File

           afs.ubik.interface  Interface Address
               IPv4 address
               Interface Address

           afs.ubik.isclone  Is Clone
               Unsigned 32-bit integer
               Is Clone

           afs.ubik.lastbeaconsent  Last Beacon Sent
               Date/Time stamp
               Last Beacon Sent

           afs.ubik.lastvote  Last Vote
               Unsigned 32-bit integer
               Last Vote

           afs.ubik.lastvotetime  Last Vote Time
               Date/Time stamp
               Last Vote Time

           afs.ubik.lastyesclaim  Last Yes Claim
               Date/Time stamp
               Last Yes Claim

           afs.ubik.lastyeshost  Last Yes Host
               IPv4 address
               Last Yes Host

           afs.ubik.lastyesstate  Last Yes State
               Unsigned 32-bit integer
               Last Yes State

           afs.ubik.lastyesttime  Last Yes Time
               Date/Time stamp
               Last Yes Time

           afs.ubik.length  Length
               Unsigned 32-bit integer
               Length

           afs.ubik.lockedpages  Locked Pages
               Unsigned 32-bit integer
               Locked Pages

           afs.ubik.locktype  Lock Type
               Unsigned 32-bit integer
               Lock Type

           afs.ubik.lowesthost  Lowest Host
               IPv4 address
               Lowest Host

           afs.ubik.lowesttime  Lowest Time
               Date/Time stamp
               Lowest Time

           afs.ubik.now  Now
               Date/Time stamp
               Now

           afs.ubik.nservers  Number of Servers
               Unsigned 32-bit integer
               Number of Servers

           afs.ubik.opcode  Operation
               Unsigned 32-bit integer
               Operation

           afs.ubik.position  Position
               Unsigned 32-bit integer
               Position

           afs.ubik.recoverystate  Recovery State
               Unsigned 32-bit integer
               Recovery State

           afs.ubik.site  Site
               IPv4 address
               Site

           afs.ubik.state  State
               Unsigned 32-bit integer
               State

           afs.ubik.synchost  Sync Host
               IPv4 address
               Sync Host

           afs.ubik.syncsiteuntil  Sync Site Until
               Date/Time stamp
               Sync Site Until

           afs.ubik.synctime  Sync Time
               Date/Time stamp
               Sync Time

           afs.ubik.tidcounter  TID Counter
               Unsigned 32-bit integer
               TID Counter

           afs.ubik.up  Up
               Unsigned 32-bit integer
               Up

           afs.ubik.version.counter  Counter
               Unsigned 32-bit integer
               Counter

           afs.ubik.version.epoch  Epoch
               Date/Time stamp
               Epoch

           afs.ubik.voteend  Vote Ends
               Date/Time stamp
               Vote Ends

           afs.ubik.votestart  Vote Started
               Date/Time stamp
               Vote Started

           afs.ubik.votetype  Vote Type
               Unsigned 32-bit integer
               Vote Type

           afs.ubik.writelockedpages  Write Locked Pages
               Unsigned 32-bit integer
               Write Locked Pages

           afs.ubik.writetran  Write Transaction
               Unsigned 32-bit integer
               Write Transaction

           afs.update  Update
               Boolean
               Update Server

           afs.update.opcode  Operation
               Unsigned 32-bit integer
               Operation

           afs.vldb  VLDB
               Boolean
               Volume Location Database Server

           afs.vldb.bkvol  Backup Volume ID
               Unsigned 32-bit integer
               Read-Only Volume ID

           afs.vldb.bump  Bumped Volume ID
               Unsigned 32-bit integer
               Bumped Volume ID

           afs.vldb.clonevol  Clone Volume ID
               Unsigned 32-bit integer
               Clone Volume ID

           afs.vldb.count  Volume Count
               Unsigned 32-bit integer
               Volume Count

           afs.vldb.errcode  Error Code
               Unsigned 32-bit integer
               Error Code

           afs.vldb.flags  Flags
               Unsigned 32-bit integer
               Flags

           afs.vldb.flags.bkexists  Backup Exists
               Boolean
               Backup Exists

           afs.vldb.flags.dfsfileset  DFS Fileset
               Boolean
               DFS Fileset

           afs.vldb.flags.roexists  Read-Only Exists
               Boolean
               Read-Only Exists

           afs.vldb.flags.rwexists  Read/Write Exists
               Boolean
               Read/Write Exists

           afs.vldb.id  Volume ID
               Unsigned 32-bit integer
               Volume ID

           afs.vldb.index  Volume Index
               Unsigned 32-bit integer
               Volume Index

           afs.vldb.name  Volume Name
               String
               Volume Name

           afs.vldb.nextindex  Next Volume Index
               Unsigned 32-bit integer
               Next Volume Index

           afs.vldb.numservers  Number of Servers
               Unsigned 32-bit integer
               Number of Servers

           afs.vldb.opcode  Operation
               Unsigned 32-bit integer
               Operation

           afs.vldb.partition  Partition
               String
               Partition

           afs.vldb.rovol  Read-Only Volume ID
               Unsigned 32-bit integer
               Read-Only Volume ID

           afs.vldb.rwvol  Read-Write Volume ID
               Unsigned 32-bit integer
               Read-Only Volume ID

           afs.vldb.server  Server
               IPv4 address
               Server

           afs.vldb.serverflags  Server Flags
               Unsigned 32-bit integer
               Server Flags

           afs.vldb.serverip  Server IP
               IPv4 address
               Server IP

           afs.vldb.serveruniq  Server Unique Address
               Unsigned 32-bit integer
               Server Unique Address

           afs.vldb.serveruuid  Server UUID
               Byte array
               Server UUID

           afs.vldb.spare1  Spare 1
               Unsigned 32-bit integer
               Spare 1

           afs.vldb.spare2  Spare 2
               Unsigned 32-bit integer
               Spare 2

           afs.vldb.spare3  Spare 3
               Unsigned 32-bit integer
               Spare 3

           afs.vldb.spare4  Spare 4
               Unsigned 32-bit integer
               Spare 4

           afs.vldb.spare5  Spare 5
               Unsigned 32-bit integer
               Spare 5

           afs.vldb.spare6  Spare 6
               Unsigned 32-bit integer
               Spare 6

           afs.vldb.spare7  Spare 7
               Unsigned 32-bit integer
               Spare 7

           afs.vldb.spare8  Spare 8
               Unsigned 32-bit integer
               Spare 8

           afs.vldb.spare9  Spare 9
               Unsigned 32-bit integer
               Spare 9

           afs.vldb.type  Volume Type
               Unsigned 32-bit integer
               Volume Type

           afs.vol  Volume Server
               Boolean
               Volume Server

           afs.vol.count  Volume Count
               Unsigned 32-bit integer
               Volume Count

           afs.vol.errcode  Error Code
               Unsigned 32-bit integer
               Error Code

           afs.vol.id  Volume ID
               Unsigned 32-bit integer
               Volume ID

           afs.vol.name  Volume Name
               String
               Volume Name

           afs.vol.opcode  Operation
               Unsigned 32-bit integer
               Operation

   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
               Data

           ajp13.hname  HNAME
               String
               Header Name

           ajp13.hval  HVAL
               String
               Header Value

           ajp13.len  Length
               Unsigned 16-bit integer
               Data Length

           ajp13.magic  Magic
               Byte array
               Magic Number

           ajp13.method  Method
               String
               HTTP Method

           ajp13.nhdr  NHDR
               Unsigned 16-bit integer
               Num Headers

           ajp13.port  PORT
               Unsigned 16-bit integer
               Port

           ajp13.raddr  RADDR
               String
               Remote Address

           ajp13.reusep  REUSEP
               Unsigned 8-bit integer
               Reuse Connection?

           ajp13.rhost  RHOST
               String
               Remote Host

           ajp13.rlen  RLEN
               Unsigned 16-bit integer
               Requested Length

           ajp13.rmsg  RSMSG
               String
               HTTP Status Message

           ajp13.rstatus  RSTATUS
               Unsigned 16-bit integer
               HTTP Status Code

           ajp13.srv  SRV
               String
               Server

           ajp13.sslp  SSLP
               Unsigned 8-bit integer
               Is SSL?

           ajp13.uri  URI
               String
               HTTP URI

           ajp13.ver  Version
               String
               HTTP Version

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

           afp.access.deny_write  Deny write
               Boolean
               Deny write

           afp.access.read  Read
               Boolean
               Open for reading

           afp.access.write  Write
               Boolean
               Open for writing

           afp.access_bitmap  Bitmap
               Unsigned 16-bit integer
               Bitmap (reserved)

           afp.ace_applicable  ACE
               Byte array
               ACE applicable

           afp.ace_flags  Flags
               Unsigned 32-bit integer
               ACE flags

           afp.ace_flags.allow  Allow
               Boolean
               Allow rule

           afp.ace_flags.deny  Deny
               Boolean
               Deny rule

           afp.ace_flags.directory_inherit  Dir inherit
               Boolean
               Dir inherit

           afp.ace_flags.file_inherit  File inherit
               Boolean
               File inherit

           afp.ace_flags.inherited  Inherited
               Boolean
               Inherited

           afp.ace_flags.limit_inherit  Limit inherit
               Boolean
               Limit inherit

           afp.ace_flags.only_inherit  Only inherit
               Boolean
               Only inherit

           afp.ace_rights  Rights
               Unsigned 32-bit integer
               ACE flags

           afp.acl_access_bitmap  Bitmap
               Unsigned 32-bit integer
               ACL access bitmap

           afp.acl_access_bitmap.append_data  Append data/create subdir
               Boolean
               Append data to a file / create a subdirectory

           afp.acl_access_bitmap.change_owner  Change owner
               Boolean
               Change owner

           afp.acl_access_bitmap.delete  Delete
               Boolean
               Delete

           afp.acl_access_bitmap.delete_child  Delete dir
               Boolean
               Delete directory

           afp.acl_access_bitmap.execute  Execute/Search
               Boolean
               Execute a program

           afp.acl_access_bitmap.generic_all  Generic all
               Boolean
               Generic all

           afp.acl_access_bitmap.generic_execute  Generic execute
               Boolean
               Generic execute

           afp.acl_access_bitmap.generic_read  Generic read
               Boolean
               Generic read

           afp.acl_access_bitmap.generic_write  Generic write
               Boolean
               Generic write

           afp.acl_access_bitmap.read_attrs  Read attributes
               Boolean
               Read attributes

           afp.acl_access_bitmap.read_data  Read/List
               Boolean
               Read data / list directory

           afp.acl_access_bitmap.read_extattrs  Read extended attributes
               Boolean
               Read extended attributes

           afp.acl_access_bitmap.read_security  Read security
               Boolean
               Read access rights

           afp.acl_access_bitmap.synchronize  Synchronize
               Boolean
               Synchronize

           afp.acl_access_bitmap.write_attrs  Write attributes
               Boolean
               Write attributes

           afp.acl_access_bitmap.write_data  Write/Add file
               Boolean
               Write data to a file / add a file to a directory

           afp.acl_access_bitmap.write_extattrs  Write extended attributes
               Boolean
               Write extended attributes

           afp.acl_access_bitmap.write_security  Write security
               Boolean
               Write access rights

           afp.acl_entrycount  Count
               Unsigned 32-bit integer
               Number of ACL entries

           afp.acl_flags  ACL flags
               Unsigned 32-bit integer
               ACL flags

           afp.acl_list_bitmap  ACL bitmap
               Unsigned 16-bit integer
               ACL control list bitmap

           afp.acl_list_bitmap.ACL  ACL
               Boolean
               ACL

           afp.acl_list_bitmap.GRPUUID  GRPUUID
               Boolean
               Group UUID

           afp.acl_list_bitmap.Inherit  Inherit
               Boolean
               Inherit ACL

           afp.acl_list_bitmap.REMOVEACL  Remove ACL
               Boolean
               Remove ACL

           afp.acl_list_bitmap.UUID  UUID
               Boolean
               User UUID

           afp.actual_count  Count
               Signed 32-bit integer
               Number of bytes returned by read/write

           afp.afp_login_flags  Flags
               Unsigned 16-bit integer
               Login flags

           afp.appl_index  Index
               Unsigned 16-bit integer
               Application index

           afp.appl_tag  Tag
               Unsigned 32-bit integer
               Application tag

           afp.backup_date  Backup date
               Date/Time stamp
               Backup date

           afp.cat_count  Cat count
               Unsigned 32-bit integer
               Number of structures returned

           afp.cat_position  Position
               Byte array
               Reserved

           afp.cat_req_matches  Max answers
               Signed 32-bit integer
               Maximum number of matches to return.

           afp.command  Command
               Unsigned 8-bit integer
               AFP function

           afp.comment  Comment
               Length string pair
               File/folder comment

           afp.create_flag  Hard create
               Boolean
               Soft/hard create file

           afp.creation_date  Creation date
               Date/Time stamp
               Creation date

           afp.data_fork_len  Data fork size
               Unsigned 32-bit integer
               Data fork size

           afp.did  DID
               Unsigned 32-bit integer
               Parent directory ID

           afp.dir_ar  Access rights
               Unsigned 32-bit integer
               Directory access rights

           afp.dir_ar.blank  Blank access right
               Boolean
               Blank access right

           afp.dir_ar.e_read  Everyone has read access
               Boolean
               Everyone has read access

           afp.dir_ar.e_search  Everyone has search access
               Boolean
               Everyone has search access

           afp.dir_ar.e_write  Everyone has write access
               Boolean
               Everyone has write access

           afp.dir_ar.g_read  Group has read access
               Boolean
               Group has read access

           afp.dir_ar.g_search  Group has search access
               Boolean
               Group has search access

           afp.dir_ar.g_write  Group has write access
               Boolean
               Group has write access

           afp.dir_ar.o_read  Owner has read access
               Boolean
               Owner has read access

           afp.dir_ar.o_search  Owner has search access
               Boolean
               Owner has search access

           afp.dir_ar.o_write  Owner has write access
               Boolean
               Owner has write access

           afp.dir_ar.u_owner  User is the owner
               Boolean
               Current user is the directory owner

           afp.dir_ar.u_read  User has read access
               Boolean
               User has read access

           afp.dir_ar.u_search  User has search access
               Boolean
               User has search access

           afp.dir_ar.u_write  User has write access
               Boolean
               User has write access

           afp.dir_attribute.backup_needed  Backup needed
               Boolean
               Directory needs to be backed up

           afp.dir_attribute.delete_inhibit  Delete inhibit
               Boolean
               Delete inhibit

           afp.dir_attribute.in_exported_folder  Shared area
               Boolean
               Directory is in a shared area

           afp.dir_attribute.invisible  Invisible
               Boolean
               Directory is not visible

           afp.dir_attribute.mounted  Mounted
               Boolean
               Directory is mounted

           afp.dir_attribute.rename_inhibit  Rename inhibit
               Boolean
               Rename inhibit

           afp.dir_attribute.set_clear  Set
               Boolean
               Clear/set attribute

           afp.dir_attribute.share  Share point
               Boolean
               Directory is a share point

           afp.dir_attribute.system  System
               Boolean
               Directory is a system directory

           afp.dir_bitmap  Directory bitmap
               Unsigned 16-bit integer
               Directory bitmap

           afp.dir_bitmap.UTF8_name  UTF-8 name
               Boolean
               Return UTF-8 name if directory

           afp.dir_bitmap.access_rights  Access rights
               Boolean
               Return access rights if directory

           afp.dir_bitmap.attributes  Attributes
               Boolean
               Return attributes if directory

           afp.dir_bitmap.backup_date  Backup date
               Boolean
               Return backup date if directory

           afp.dir_bitmap.create_date  Creation date
               Boolean
               Return creation date if directory

           afp.dir_bitmap.did  DID
               Boolean
               Return parent directory ID if directory

           afp.dir_bitmap.fid  File ID
               Boolean
               Return file ID if directory

           afp.dir_bitmap.finder_info  Finder info
               Boolean
               Return finder info if directory

           afp.dir_bitmap.group_id  Group id
               Boolean
               Return group id if directory

           afp.dir_bitmap.long_name  Long name
               Boolean
               Return long name if directory

           afp.dir_bitmap.mod_date  Modification date
               Boolean
               Return modification date if directory

           afp.dir_bitmap.offspring_count  Offspring count
               Boolean
               Return offspring count if directory

           afp.dir_bitmap.owner_id  Owner id
               Boolean
               Return owner id if directory

           afp.dir_bitmap.short_name  Short name
               Boolean
               Return short name if directory

           afp.dir_bitmap.unix_privs  UNIX privileges
               Boolean
               Return UNIX privileges if directory

           afp.dir_group_id  Group ID
               Signed 32-bit integer
               Directory group ID

           afp.dir_offspring  Offspring
               Unsigned 16-bit integer
               Directory offspring

           afp.dir_owner_id  Owner ID
               Signed 32-bit integer
               Directory owner ID

           afp.dt_ref  DT ref
               Unsigned 16-bit integer
               Desktop database reference num

           afp.ext_data_fork_len  Extended data fork size
               Unsigned 64-bit integer
               Extended (>2GB) data fork length

           afp.ext_resource_fork_len  Extended resource fork size
               Unsigned 64-bit integer
               Extended (>2GB) resource fork length

           afp.extattr.data  Data
               Byte array
               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
               Reply size

           afp.extattr.req_count  Request Count
               Unsigned 16-bit integer
               Request Count.

           afp.extattr.start_index  Index
               Unsigned 32-bit integer
               Start index

           afp.extattr_bitmap  Bitmap
               Unsigned 16-bit integer
               Extended attributes bitmap

           afp.extattr_bitmap.create  Create
               Boolean
               Create extended attribute

           afp.extattr_bitmap.nofollow  No follow symlinks
               Boolean
               Do not follow symlink

           afp.extattr_bitmap.replace  Replace
               Boolean
               Replace extended attribute

           afp.file_attribute.backup_needed  Backup needed
               Boolean
               File needs to be backed up

           afp.file_attribute.copy_protect  Copy protect
               Boolean
               copy protect

           afp.file_attribute.delete_inhibit  Delete inhibit
               Boolean
               delete inhibit

           afp.file_attribute.df_open  Data fork open
               Boolean
               Data fork already open

           afp.file_attribute.invisible  Invisible
               Boolean
               File is not visible

           afp.file_attribute.multi_user  Multi user
               Boolean
               multi user

           afp.file_attribute.rename_inhibit  Rename inhibit
               Boolean
               rename inhibit

           afp.file_attribute.rf_open  Resource fork open
               Boolean
               Resource fork already open

           afp.file_attribute.set_clear  Set
               Boolean
               Clear/set attribute

           afp.file_attribute.system  System
               Boolean
               File is a system file

           afp.file_attribute.write_inhibit  Write inhibit
               Boolean
               Write inhibit

           afp.file_bitmap  File bitmap
               Unsigned 16-bit integer
               File bitmap

           afp.file_bitmap.UTF8_name  UTF-8 name
               Boolean
               Return UTF-8 name if file

           afp.file_bitmap.attributes  Attributes
               Boolean
               Return attributes if file

           afp.file_bitmap.backup_date  Backup date
               Boolean
               Return backup date if file

           afp.file_bitmap.create_date  Creation date
               Boolean
               Return creation date if file

           afp.file_bitmap.data_fork_len  Data fork size
               Boolean
               Return data fork size if file

           afp.file_bitmap.did  DID
               Boolean
               Return parent directory ID if file

           afp.file_bitmap.ex_data_fork_len  Extended data fork size
               Boolean
               Return extended (>2GB) data fork size if file

           afp.file_bitmap.ex_resource_fork_len  Extended resource fork size
               Boolean
               Return extended (>2GB) resource fork size if file

           afp.file_bitmap.fid  File ID
               Boolean
               Return file ID if file

           afp.file_bitmap.finder_info  Finder info
               Boolean
               Return finder info if file

           afp.file_bitmap.launch_limit  Launch limit
               Boolean
               Return launch limit if file

           afp.file_bitmap.long_name  Long name
               Boolean
               Return long name if file

           afp.file_bitmap.mod_date  Modification date
               Boolean
               Return modification date if file

           afp.file_bitmap.resource_fork_len  Resource fork size
               Boolean
               Return resource fork size if file

           afp.file_bitmap.short_name  Short name
               Boolean
               Return short name if file

           afp.file_bitmap.unix_privs  UNIX privileges
               Boolean
               Return UNIX privileges if file

           afp.file_creator  File creator
               String
               File creator

           afp.file_flag  Dir
               Boolean
               Is a dir

           afp.file_id  File ID
               Unsigned 32-bit integer
               File/directory ID

           afp.file_type  File type
               String
               File type

           afp.finder_info  Finder info
               Byte array
               Finder info

           afp.flag  From
               Unsigned 8-bit integer
               Offset is relative to start/end of the fork

           afp.fork_type  Resource fork
               Boolean
               Data/resource fork

           afp.group_ID  Group ID
               Unsigned 32-bit integer
               Group ID

           afp.grpuuid  GRPUUID
               Byte array
               Group UUID

           afp.icon_index  Index
               Unsigned 16-bit integer
               Icon index in desktop database

           afp.icon_length  Size
               Unsigned 16-bit integer
               Size for icon bitmap

           afp.icon_tag  Tag
               Unsigned 32-bit integer
               Icon tag

           afp.icon_type  Icon type
               Unsigned 8-bit integer
               Icon type

           afp.last_written  Last written
               Unsigned 32-bit integer
               Offset of the last byte written

           afp.last_written64  Last written
               Unsigned 64-bit integer
               Offset of the last byte written (64 bits)

           afp.lock_from  End
               Boolean
               Offset is relative to the end of the fork

           afp.lock_len  Length
               Signed 32-bit integer
               Number of bytes to be locked/unlocked

           afp.lock_len64  Length
               Signed 64-bit integer
               Number of bytes to be locked/unlocked (64 bits)

           afp.lock_offset  Offset
               Signed 32-bit integer
               First byte to be locked

           afp.lock_offset64  Offset
               Signed 64-bit integer
               First byte to be locked (64 bits)

           afp.lock_op  unlock
               Boolean
               Lock/unlock op

           afp.lock_range_start  Start
               Signed 32-bit integer
               First byte locked/unlocked

           afp.lock_range_start64  Start
               Signed 64-bit integer
               First byte locked/unlocked (64 bits)

           afp.long_name_offset  Long name offset
               Unsigned 16-bit integer
               Long name offset in packet

           afp.map_id  ID
               Unsigned 32-bit integer
               User/Group ID

           afp.map_id_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
               Message

           afp.message_bitmap  Bitmap
               Unsigned 16-bit integer
               Message bitmap

           afp.message_bitmap.requested  Request message
               Boolean
               Message Requested

           afp.message_bitmap.utf8  Message is UTF8
               Boolean
               Message is UTF8

           afp.message_length  Len
               Unsigned 32-bit integer
               Message length

           afp.message_type  Type
               Unsigned 16-bit integer
               Type of server message

           afp.modification_date  Modification date
               Date/Time stamp
               Modification date

           afp.newline_char  Newline char
               Unsigned 8-bit integer
               Value to compare ANDed bytes with when looking for newline

           afp.newline_mask  Newline mask
               Unsigned 8-bit integer
               Value to AND bytes with when looking for newline

           afp.offset  Offset
               Signed 32-bit integer
               Offset

           afp.offset64  Offset
               Signed 64-bit integer
               Offset (64 bits)

           afp.ofork  Fork
               Unsigned 16-bit integer
               Open fork reference number

           afp.ofork_len  New length
               Signed 32-bit integer
               New length

           afp.ofork_len64  New length
               Signed 64-bit integer
               New length (64 bits)

           afp.pad  Pad
               No value
               Pad Byte

           afp.passwd  Password
               NULL terminated string
               Password

           afp.path_len  Len
               Unsigned 8-bit integer
               Path length

           afp.path_name  Name
               String
               Path name

           afp.path_type  Type
               Unsigned 8-bit integer
               Type of names

           afp.path_unicode_hint  Unicode hint
               Unsigned 32-bit integer
               Unicode hint

           afp.path_unicode_len  Len
               Unsigned 16-bit integer
               Path length (unicode)

           afp.random  Random number
               Byte array
               UAM random number

           afp.reply_size  Reply size
               Unsigned 16-bit integer
               Reply size

           afp.reply_size32  Reply size
               Unsigned 32-bit integer
               Reply size

           afp.req_count  Req count
               Unsigned 16-bit integer
               Maximum number of structures returned

           afp.reqcount64  Count
               Signed 64-bit integer
               Request Count (64 bits)

           afp.request_bitmap  Request bitmap
               Unsigned 32-bit integer
               Request bitmap

           afp.request_bitmap.UTF8_name  UTF-8 name
               Boolean
               Search UTF-8 name

           afp.request_bitmap.attributes  Attributes
               Boolean
               Search attributes

           afp.request_bitmap.backup_date  Backup date
               Boolean
               Search backup date

           afp.request_bitmap.create_date  Creation date
               Boolean
               Search creation date

           afp.request_bitmap.data_fork_len  Data fork size
               Boolean
               Search data fork size

           afp.request_bitmap.did  DID
               Boolean
               Search parent directory ID

           afp.request_bitmap.ex_data_fork_len  Extended data fork size
               Boolean
               Search extended (>2GB) data fork size

           afp.request_bitmap.ex_resource_fork_len  Extended resource fork size
               Boolean
               Search extended (>2GB) resource fork size

           afp.request_bitmap.finder_info  Finder info
               Boolean
               Search finder info

           afp.request_bitmap.long_name  Long name
               Boolean
               Search long name

           afp.request_bitmap.mod_date  Modification date
               Boolean
               Search modification date

           afp.request_bitmap.offspring_count  Offspring count
               Boolean
               Search offspring count

           afp.request_bitmap.partial_names  Match on partial names
               Boolean
               Match on partial names

           afp.request_bitmap.resource_fork_len  Resource fork size
               Boolean
               Search resource fork size

           afp.reserved  Reserved
               Byte array
               Reserved

           afp.resource_fork_len  Resource fork size
               Unsigned 32-bit integer
               Resource fork size

           afp.response_in  Response in
               Frame number
               The response to this packet is in this packet

           afp.response_to  Response to
               Frame number
               This packet is a response to the packet in this frame

           afp.rw_count  Count
               Signed 32-bit integer
               Number of bytes to be read/written

           afp.rw_count64  Count
               Signed 64-bit integer
               Number of bytes to be read/written (64 bits)

           afp.server_time  Server time
               Date/Time stamp
               Server time

           afp.session_token  Token
               Byte array
               Session token

           afp.session_token_len  Len
               Unsigned 32-bit integer
               Session token length

           afp.session_token_timestamp  Time stamp
               Unsigned 32-bit integer
               Session time stamp

           afp.session_token_type  Type
               Unsigned 16-bit integer
               Session token type

           afp.short_name_offset  Short name offset
               Unsigned 16-bit integer
               Short name offset in packet

           afp.start_index  Start index
               Unsigned 16-bit integer
               First structure returned

           afp.start_index32  Start index
               Unsigned 32-bit integer
               First structure returned

           afp.struct_size  Struct size
               Unsigned 8-bit integer
               Sizeof of struct

           afp.struct_size16  Struct size
               Unsigned 16-bit integer
               Sizeof of struct

           afp.time  Time from request
               Time duration
               Time between Request and Response for AFP cmds

           afp.unicode_name_offset  Unicode name offset
               Unsigned 16-bit integer
               Unicode name offset in packet

           afp.unix_privs.gid  GID
               Unsigned 32-bit integer
               Group ID

           afp.unix_privs.permissions  Permissions
               Unsigned 32-bit integer
               Permissions

           afp.unix_privs.ua_permissions  User's access rights
               Unsigned 32-bit integer
               User's access rights

           afp.unix_privs.uid  UID
               Unsigned 32-bit integer
               User ID

           afp.unknown  Unknown parameter
               Byte array
               Unknown parameter

           afp.user  User
               Length string pair
               User

           afp.user_ID  User ID
               Unsigned 32-bit integer
               User ID

           afp.user_bitmap  Bitmap
               Unsigned 16-bit integer
               User Info bitmap

           afp.user_bitmap.GID  Primary group ID
               Boolean
               Primary group ID

           afp.user_bitmap.UID  User ID
               Boolean
               User ID

           afp.user_bitmap.UUID  UUID
               Boolean
               UUID

           afp.user_flag  Flag
               Unsigned 8-bit integer
               User Info flag

           afp.user_len  Len
               Unsigned 16-bit integer
               User name length (unicode)

           afp.user_name  User
               String
               User name (unicode)

           afp.user_type  Type
               Unsigned 8-bit integer
               Type of user name

           afp.uuid  UUID
               Byte array
               UUID

           afp.vol_attribute.acls  ACLs
               Boolean
               Supports access control lists

           afp.vol_attribute.blank_access_privs  Blank access privileges
               Boolean
               Supports blank access privileges

           afp.vol_attribute.cat_search  Catalog search
               Boolean
               Supports catalog search operations

           afp.vol_attribute.extended_attributes  Extended Attributes
               Boolean
               Supports Extended Attributes

           afp.vol_attribute.fileIDs  File IDs
               Boolean
               Supports file IDs

           afp.vol_attribute.inherit_parent_privs  Inherit parent privileges
               Boolean
               Inherit parent privileges

           afp.vol_attribute.network_user_id  No Network User ID
               Boolean
               No Network User ID

           afp.vol_attribute.no_exchange_files  No exchange files
               Boolean
               Exchange files not supported

           afp.vol_attribute.passwd  Volume password
               Boolean
               Has a volume password

           afp.vol_attribute.read_only  Read only
               Boolean
               Read only volume

           afp.vol_attribute.unix_privs  UNIX access privileges
               Boolean
               Supports UNIX access privileges

           afp.vol_attribute.utf8_names  UTF-8 names
               Boolean
               Supports UTF-8 names

           afp.vol_attributes  Attributes
               Unsigned 16-bit integer
               Volume attributes

           afp.vol_backup_date  Backup date
               Date/Time stamp
               Volume backup date

           afp.vol_bitmap  Bitmap
               Unsigned 16-bit integer
               Volume bitmap

           afp.vol_bitmap.attributes  Attributes
               Boolean
               Volume attributes

           afp.vol_bitmap.backup_date  Backup date
               Boolean
               Volume backup date

           afp.vol_bitmap.block_size  Block size
               Boolean
               Volume block size

           afp.vol_bitmap.bytes_free  Bytes free
               Boolean
               Volume free bytes

           afp.vol_bitmap.bytes_total  Bytes total
               Boolean
               Volume total bytes

           afp.vol_bitmap.create_date  Creation date
               Boolean
               Volume creation date

           afp.vol_bitmap.ex_bytes_free  Extended bytes free
               Boolean
               Volume extended (>2GB) free bytes

           afp.vol_bitmap.ex_bytes_total  Extended bytes total
               Boolean
               Volume extended (>2GB) total bytes

           afp.vol_bitmap.id  ID
               Boolean
               Volume ID

           afp.vol_bitmap.mod_date  Modification date
               Boolean
               Volume modification date

           afp.vol_bitmap.name  Name
               Boolean
               Volume name

           afp.vol_bitmap.signature  Signature
               Boolean
               Volume signature

           afp.vol_block_size  Block size
               Unsigned 32-bit integer
               Volume block size

           afp.vol_bytes_free  Bytes free
               Unsigned 32-bit integer
               Free space

           afp.vol_bytes_total  Bytes total
               Unsigned 32-bit integer
               Volume size

           afp.vol_creation_date  Creation date
               Date/Time stamp
               Volume creation date

           afp.vol_ex_bytes_free  Extended bytes free
               Unsigned 64-bit integer
               Extended (>2GB) free space

           afp.vol_ex_bytes_total  Extended bytes total
               Unsigned 64-bit integer
               Extended (>2GB) volume size

           afp.vol_flag_passwd  Password
               Boolean
               Volume is password-protected

           afp.vol_flag_unix_priv  Unix privs
               Boolean
               Volume has unix privileges

           afp.vol_id  Volume id
               Unsigned 16-bit integer
               Volume id

           afp.vol_modification_date  Modification date
               Date/Time stamp
               Volume modification date

           afp.vol_name  Volume
               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

   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 function

           asp.init_error  Error
               Unsigned 16-bit integer
               asp init error

           asp.seq  Sequence
               Unsigned 16-bit integer
               asp sequence number

           asp.server_addr.len  Length
               Unsigned 8-bit integer
               Address length.

           asp.server_addr.type  Type
               Unsigned 8-bit integer
               Address type.

           asp.server_addr.value  Value
               Byte array
               Address value

           asp.server_directory  Directory service
               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
               Don't allow save password

           asp.server_flag.notify  Support server notifications
               Boolean
               Server support notifications

           asp.server_flag.passwd  Support change password
               Boolean
               Server support change password

           asp.server_flag.reconnect  Support server reconnect
               Boolean
               Server support reconnect

           asp.server_flag.srv_msg  Support server message
               Boolean
               Support server message

           asp.server_flag.srv_sig  Support server signature
               Boolean
               Support server signature

           asp.server_flag.tcpip  Support TCP/IP
               Boolean
               Server support TCP/IP

           asp.server_flag.utf8_name  Support UTF8 server name
               Boolean
               Server support UTF8 server name

           asp.server_icon  Icon bitmap
               Byte array
               Server icon bitmap

           asp.server_name  Server name
               Length string pair
               Server name

           asp.server_signature  Server signature
               Byte array
               Server signature

           asp.server_type  Server type
               Length string pair
               Server type

           asp.server_uams  UAM
               Length string pair
               UAM

           asp.server_utf8_name  Server name (UTF8)
               String
               Server name (UTF8)

           asp.server_utf8_name_len  Server name length
               Unsigned 16-bit integer
               UTF8 server name length

           asp.server_vers  AFP version
               Length string pair
               AFP version

           asp.session_id  Session ID
               Unsigned 8-bit integer
               asp session id

           asp.size  size
               Unsigned 16-bit integer
               asp available size for reply

           asp.socket  Socket
               Unsigned 8-bit integer
               asp socket

           asp.version  Version
               Unsigned 16-bit integer
               asp version

           asp.zero_value  Pad (0)
               Byte array
               Pad

   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 Fragment

           atp.fragments  ATP Fragments
               No value
               ATP Fragments

           atp.function  Function
               Unsigned 8-bit integer
               function code

           atp.reassembled_in  Reassembled ATP in frame
               Frame number
               This ATP packet is reassembled in this frame

           atp.segment.error  Desegmentation error
               Frame number
               Desegmentation error due to illegal segments

           atp.segment.multipletails  Multiple tail segments found
               Boolean
               Several tails were found when desegmenting the packet

           atp.segment.overlap  Segment overlap
               Boolean
               Segment overlaps with other segments

           atp.segment.overlap.conflict  Conflicting data in segment overlap
               Boolean
               Overlapping segments contained conflicting data

           atp.segment.toolongsegment  Segment too long
               Boolean
               Segment contained data past end of packet

           atp.sts  STS
               Boolean
               Send transaction status

           atp.tid  TID
               Unsigned 16-bit integer
               Transaction id

           atp.treltimer  TRel timer
               Unsigned 8-bit integer
               TRel timer

           atp.user_bytes  User bytes
               Unsigned 32-bit integer
               User bytes

           atp.xo  XO
               Boolean
               Exactly-once flag

   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_address  Address
               Unsigned 8-bit integer

           acn.dmp_address_data_pairs  Address-Data Pairs
               Byte array
               More address-data pairs

           acn.dmp_adt  Address and Data Type
               Unsigned 8-bit integer

           acn.dmp_adt_a  Size
               Unsigned 8-bit integer

           acn.dmp_adt_d  Data Type
               Unsigned 8-bit integer

           acn.dmp_adt_r  Relative
               Unsigned 8-bit integer

           acn.dmp_adt_v  Virtual
               Unsigned 8-bit integer

           acn.dmp_adt_x  Reserved
               Unsigned 8-bit integer

           acn.dmp_data  Data
               Byte array

           acn.dmp_data16  Addr
               Unsigned 16-bit integer
               Data16

           acn.dmp_data24  Addr
               Unsigned 24-bit integer
               Data24

           acn.dmp_data32  Addr
               Unsigned 32-bit integer
               Data32

           acn.dmp_data8  Addr
               Unsigned 8-bit integer
               Data8

           acn.dmp_reason_code  Reason Code
               Unsigned 8-bit integer

           acn.dmp_vector  DMP Vector
               Unsigned 8-bit integer

           acn.dmx.count  Count
               Unsigned 16-bit integer
               DMX Count

           acn.dmx.increment  Increment
               Unsigned 16-bit integer
               DMX Increment

           acn.dmx.priority  Priority
               Unsigned 8-bit integer
               DMX Priority

           acn.dmx.seq_number  Seq No
               Unsigned 8-bit integer
               DMX Sequence Number

           acn.dmx.source_name  Source
               String
               DMX Source Name

           acn.dmx.start_code  Start Code
               Unsigned 16-bit integer
               DMX Start Code

           acn.dmx.universe  Universe
               Unsigned 16-bit integer
               DMX Universe

           acn.dmx_vector  Vector
               Unsigned 32-bit integer
               DMX Vector

           acn.expiry  Expiry
               Unsigned 16-bit integer

           acn.first_member_to_ack  First Member to ACK
               Unsigned 16-bit integer

           acn.first_missed_sequence  First Missed Sequence
               Unsigned 32-bit integer

           acn.ip_address_type  Addr Type
               Unsigned 8-bit integer

           acn.ipv4  IPV4
               IPv4 address

           acn.ipv6  IPV6
               IPv6 address

           acn.last_member_to_ack  Last Member to ACK
               Unsigned 16-bit integer

           acn.last_missed_sequence  Last Missed Sequence
               Unsigned 32-bit integer

           acn.mak_threshold  MAK Threshold
               Unsigned 16-bit integer

           acn.member_id  Member ID
               Unsigned 16-bit integer

           acn.nak_holdoff  NAK holdoff (ms)
               Unsigned 16-bit integer

           acn.nak_max_wait  NAK Max Wait (ms)
               Unsigned 16-bit integer

           acn.nak_modulus  NAK Modulus
               Unsigned 16-bit integer

           acn.nak_outbound_flag  NAK Outbound Flag
               Boolean

           acn.oldest_available_wrapper  Oldest Available Wrapper
               Unsigned 32-bit integer

           acn.packet_identifier  Packet Identifier
               String

           acn.pdu  PDU
               No value

           acn.pdu.flag_d  Data
               Boolean
               Data flag

           acn.pdu.flag_h  Header
               Boolean
               Header flag

           acn.pdu.flag_l  Length
               Boolean
               Length flag

           acn.pdu.flag_v  Vector
               Boolean
               Vector flag

           acn.pdu.flags  Flags
               Unsigned 8-bit integer
               PDU Flags

           acn.port  Port
               Unsigned 16-bit integer

           acn.postamble_size  Size of postamble
               Unsigned 16-bit integer
               Postamble size in bytes

           acn.preamble_size  Size of preamble
               Unsigned 16-bit integer
               Preamble size in bytes

           acn.protocol_id  Protocol ID
               Unsigned 32-bit integer

           acn.reason_code  Reason Code
               Unsigned 8-bit integer

           acn.reliable_sequence_number  Reliable Sequence Number
               Unsigned 32-bit integer

           acn.sdt_vector  STD Vector
               Unsigned 8-bit integer

           acn.session_count  Session Count
               Unsigned 16-bit integer

           acn.total_sequence_number  Total Sequence Number
               Unsigned 32-bit integer

   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
               Command

           artnet.address.long_name  Long Name
               String
               Long Name

           artnet.address.short_name  Short Name
               String
               Short Name

           artnet.address.subswitch  Subswitch
               Unsigned 8-bit integer
               Subswitch

           artnet.address.swin  Input Subswitch
               No value
               Input Subswitch

           artnet.address.swin_1  Input Subswitch of Port 1
               Unsigned 8-bit integer
               Input Subswitch of Port 1

           artnet.address.swin_2  Input Subswitch of Port 2
               Unsigned 8-bit integer
               Input Subswitch of Port 2

           artnet.address.swin_3  Input Subswitch of Port 3
               Unsigned 8-bit integer
               Input Subswitch of Port 3

           artnet.address.swin_4  Input Subswitch of Port 4
               Unsigned 8-bit integer
               Input Subswitch of Port 4

           artnet.address.swout  Output Subswitch
               No value
               Output Subswitch

           artnet.address.swout_1  Output Subswitch of Port 1
               Unsigned 8-bit integer
               Output Subswitch of Port 1

           artnet.address.swout_2  Output Subswitch of Port 2
               Unsigned 8-bit integer
               Output Subswitch of Port 2

           artnet.address.swout_3  Output Subswitch of Port 3
               Unsigned 8-bit integer
               Output Subswitch of Port 3

           artnet.address.swout_4  Output Subswitch of Port 4
               Unsigned 8-bit integer
               Output Subswitch of Port 4

           artnet.address.swvideo  SwVideo
               Unsigned 8-bit integer
               SwVideo

           artnet.filler  filler
               Byte array
               filler

           artnet.firmware_master  ArtFirmwareMaster packet
               No value
               Art-Net ArtFirmwareMaster packet

           artnet.firmware_master.block_id  Block ID
               Unsigned 8-bit integer
               Block ID

           artnet.firmware_master.data  data
               Byte array
               data

           artnet.firmware_master.length  Length
               Unsigned 32-bit integer
               Length

           artnet.firmware_master.type  Type
               Unsigned 8-bit integer
               Number of Ports

           artnet.firmware_reply  ArtFirmwareReply packet
               No value
               Art-Net ArtFirmwareReply packet

           artnet.firmware_reply.type  Type
               Unsigned 8-bit integer
               Number of Ports

           artnet.header  Descriptor Header
               No value
               Art-Net Descriptor Header

           artnet.header.id  ID
               String
               ArtNET ID

           artnet.header.opcode  Opcode
               Unsigned 16-bit integer
               Art-Net message type

           artnet.header.protver  ProVer
               Unsigned 16-bit integer
               Protocol revision number

           artnet.input  ArtInput packet
               No value
               Art-Net ArtInput packet

           artnet.input.input  Port Status
               No value
               Port Status

           artnet.input.input_1  Status of Port 1
               Unsigned 8-bit integer
               Status of Port 1

           artnet.input.input_2  Status of Port 2
               Unsigned 8-bit integer
               Status of Port 2

           artnet.input.input_3  Status of Port 3
               Unsigned 8-bit integer
               Status of Port 3

           artnet.input.input_4  Status of Port 4
               Unsigned 8-bit integer
               Status of Port 4

           artnet.input.num_ports  Number of Ports
               Unsigned 16-bit integer
               Number of Ports

           artnet.ip_prog  ArtIpProg packet
               No value
               ArtNET ArtIpProg packet

           artnet.ip_prog.command  Command
               Unsigned 8-bit integer
               Command

           artnet.ip_prog.command_prog_enable  Enable Programming
               Unsigned 8-bit integer
               Enable Programming

           artnet.ip_prog.command_prog_ip  Program IP
               Unsigned 8-bit integer
               Program IP

           artnet.ip_prog.command_prog_port  Program Port
               Unsigned 8-bit integer
               Program Port

           artnet.ip_prog.command_prog_sm  Program Subnet Mask
               Unsigned 8-bit integer
               Program Subnet Mask

           artnet.ip_prog.command_reset  Reset parameters
               Unsigned 8-bit integer
               Reset parameters

           artnet.ip_prog.command_unused  Unused
               Unsigned 8-bit integer
               Unused

           artnet.ip_prog.ip  IP Address
               IPv4 address
               IP Address

           artnet.ip_prog.port  Port
               Unsigned 16-bit integer
               Port

           artnet.ip_prog.sm  Subnet mask
               IPv4 address
               IP Subnet mask

           artnet.ip_prog_reply  ArtIpProgReplay packet
               No value
               Art-Net ArtIpProgReply packet

           artnet.ip_prog_reply.ip  IP Address
               IPv4 address
               IP Address

           artnet.ip_prog_reply.port  Port
               Unsigned 16-bit integer
               Port

           artnet.ip_prog_reply.sm  Subnet mask
               IPv4 address
               IP Subnet mask

           artnet.output  ArtDMX packet
               No value
               Art-Net ArtDMX packet

           artnet.output.data  DMX data
               No value
               DMX Data

           artnet.output.data_filter  DMX data filter
               Byte array
               DMX Data Filter

           artnet.output.dmx_data  DMX data
               No value
               DMX Data

           artnet.output.length  Length
               Unsigned 16-bit integer
               Length

           artnet.output.physical  Physical
               Unsigned 8-bit integer
               Physical

           artnet.output.sequence  Sequence
               Unsigned 8-bit integer
               Sequence

           artnet.output.universe  Universe
               Unsigned 16-bit integer
               Universe

           artnet.poll  ArtPoll packet
               No value
               Art-Net ArtPoll packet

           artnet.poll.talktome  TalkToMe
               Unsigned 8-bit integer
               TalkToMe

           artnet.poll.talktome_reply_dest  Reply destination
               Unsigned 8-bit integer
               Reply destination

           artnet.poll.talktome_reply_type  Reply type
               Unsigned 8-bit integer
               Reply type

           artnet.poll.talktome_unused  unused
               Unsigned 8-bit integer
               unused

           artnet.poll_reply  ArtPollReply packet
               No value
               Art-Net ArtPollReply packet

           artnet.poll_reply.esta_man  ESTA Code
               Unsigned 16-bit integer
               ESTA Code

           artnet.poll_reply.good_input  Input Status
               No value
               Input Status

           artnet.poll_reply.good_input_1  Input status of Port 1
               Unsigned 8-bit integer
               Input status of Port 1

           artnet.poll_reply.good_input_2  Input status of Port 2
               Unsigned 8-bit integer
               Input status of Port 2

           artnet.poll_reply.good_input_3  Input status of Port 3
               Unsigned 8-bit integer
               Input status of Port 3

           artnet.poll_reply.good_input_4  Input status of Port 4
               Unsigned 8-bit integer
               Input status of Port 4

           artnet.poll_reply.good_output  Output Status
               No value
               Port output status

           artnet.poll_reply.good_output_1  Output status of Port 1
               Unsigned 8-bit integer
               Output status of Port 1

           artnet.poll_reply.good_output_2  Output status of Port 2
               Unsigned 8-bit integer
               Output status of Port 2

           artnet.poll_reply.good_output_3  Output status of Port 3
               Unsigned 8-bit integer
               Output status of Port 3

           artnet.poll_reply.good_output_4  Output status of Port 4
               Unsigned 8-bit integer
               Outpus status of Port 4

           artnet.poll_reply.ip_address  IP Address
               IPv4 address
               IP Address

           artnet.poll_reply.long_name  Long Name
               String
               Long Name

           artnet.poll_reply.mac  MAC
               6-byte Hardware (MAC) Address
               MAC

           artnet.poll_reply.node_report  Node Report
               String
               Node Report

           artnet.poll_reply.num_ports  Number of Ports
               Unsigned 16-bit integer
               Number of Ports

           artnet.poll_reply.oem  Oem
               Unsigned 16-bit integer
               OEM

           artnet.poll_reply.port_info  Port Info
               No value
               Port Info

           artnet.poll_reply.port_nr  Port number
               Unsigned 16-bit integer
               Port Number

           artnet.poll_reply.port_types  Port Types
               No value
               Port Types

           artnet.poll_reply.port_types_1  Type of Port 1
               Unsigned 8-bit integer
               Type of Port 1

           artnet.poll_reply.port_types_2  Type of Port 2
               Unsigned 8-bit integer
               Type of Port 2

           artnet.poll_reply.port_types_3  Type of Port 3
               Unsigned 8-bit integer
               Type of Port 3

           artnet.poll_reply.port_types_4  Type of Port 4
               Unsigned 8-bit integer
               Type of Port 4

           artnet.poll_reply.short_name  Short Name
               String
               Short Name

           artnet.poll_reply.status  Status
               Unsigned 8-bit integer
               Status

           artnet.poll_reply.subswitch  SubSwitch
               Unsigned 16-bit integer
               Subswitch version

           artnet.poll_reply.swin  Input Subswitch
               No value
               Input Subswitch

           artnet.poll_reply.swin_1  Input Subswitch of Port 1
               Unsigned 8-bit integer
               Input Subswitch of Port 1

           artnet.poll_reply.swin_2  Input Subswitch of Port 2
               Unsigned 8-bit integer
               Input Subswitch of Port 2

           artnet.poll_reply.swin_3  Input Subswitch of Port 3
               Unsigned 8-bit integer
               Input Subswitch of Port 3

           artnet.poll_reply.swin_4  Input Subswitch of Port 4
               Unsigned 8-bit integer
               Input Subswitch of Port 4

           artnet.poll_reply.swmacro  SwMacro
               Unsigned 8-bit integer
               SwMacro

           artnet.poll_reply.swout  Output Subswitch
               No value
               Output Subswitch

           artnet.poll_reply.swout_1  Output Subswitch of Port 1
               Unsigned 8-bit integer
               Output Subswitch of Port 1

           artnet.poll_reply.swout_2  Output Subswitch of Port 2
               Unsigned 8-bit integer
               Output Subswitch of Port 2

           artnet.poll_reply.swout_3  Output Subswitch of Port 3
               Unsigned 8-bit integer
               Output Subswitch of Port 3

           artnet.poll_reply.swout_4  Output Subswitch of Port 4
               Unsigned 8-bit integer
               Output Subswitch of Port 4

           artnet.poll_reply.swremote  SwRemote
               Unsigned 8-bit integer
               SwRemote

           artnet.poll_reply.swvideo  SwVideo
               Unsigned 8-bit integer
               SwVideo

           artnet.poll_reply.ubea_version  UBEA Version
               Unsigned 8-bit integer
               UBEA version number

           artnet.poll_reply.versinfo  Version Info
               Unsigned 16-bit integer
               Version info

           artnet.poll_server_reply  ArtPollServerReply packet
               No value
               Art-Net ArtPollServerReply packet

           artnet.rdm  ArtRdm packet
               No value
               Art-Net ArtRdm packet

           artnet.rdm.address  Address
               Unsigned 8-bit integer
               Address

           artnet.rdm.command  Command
               Unsigned 8-bit integer
               Command

           artnet.spare  spare
               Byte array
               spare

           artnet.tod_control.command  Command
               Unsigned 8-bit integer
               Command

           artnet.tod_data  ArtTodData packet
               No value
               Art-Net ArtTodData packet

           artnet.tod_data.address  Address
               Unsigned 8-bit integer
               Address

           artnet.tod_data.block_count  Block Count
               Unsigned 8-bit integer
               Block Count

           artnet.tod_data.command_response  Command Response
               Unsigned 8-bit integer
               Command Response

           artnet.tod_data.port  Port
               Unsigned 8-bit integer
               Port

           artnet.tod_data.tod  TOD
               Byte array
               TOD

           artnet.tod_data.uid_count  UID Count
               Unsigned 8-bit integer
               UID Count

           artnet.tod_data.uid_total  UID Total
               Unsigned 16-bit integer
               UID Total

           artnet.tod_request  ArtTodRequest packet
               No value
               Art-Net ArtTodRequest packet

           artnet.tod_request.ad_count  Address Count
               Unsigned 8-bit integer
               Address Count

           artnet.tod_request.address  Address
               Byte array
               Address

           artnet.tod_request.command  Command
               Unsigned 8-bit integer
               Command

           artnet.video_data  ArtVideoData packet
               No value
               Art-Net ArtVideoData packet

           artnet.video_data.data  Video Data
               Byte array
               Video Data

           artnet.video_data.len_x  LenX
               Unsigned 8-bit integer
               LenX

           artnet.video_data.len_y  LenY
               Unsigned 8-bit integer
               LenY

           artnet.video_data.pos_x  PosX
               Unsigned 8-bit integer
               PosX

           artnet.video_data.pos_y  PosY
               Unsigned 8-bit integer
               PosY

           artnet.video_palette  ArtVideoPalette packet
               No value
               Art-Net ArtVideoPalette packet

           artnet.video_palette.colour_blue  Colour Blue
               Byte array
               Colour Blue

           artnet.video_palette.colour_green  Colour Green
               Byte array
               Colour Green

           artnet.video_palette.colour_red  Colour Red
               Byte array
               Colour Red

           artnet.video_setup  ArtVideoSetup packet
               No value
               ArtNET ArtVideoSetup packet

           artnet.video_setup.control  control
               Unsigned 8-bit integer
               control

           artnet.video_setup.first_font  First Font
               Unsigned 8-bit integer
               First Font

           artnet.video_setup.font_data  Font data
               Byte array
               Font Date

           artnet.video_setup.font_height  Font Height
               Unsigned 8-bit integer
               Font Height

           artnet.video_setup.last_font  Last Font
               Unsigned 8-bit integer
               Last Font

           artnet.video_setup.win_font_name  Windows Font Name
               String
               Windows Font Name

   Aruba Discovery Protocol (adp)
           adp.id  Transaction ID
               Unsigned 16-bit integer
               ADP transaction ID

           adp.mac  MAC address
               6-byte Hardware (MAC) Address
               MAC address

           adp.switch  Switch IP
               IPv4 address
               Switch IP address

           adp.type  Type
               Unsigned 16-bit integer
               ADP type

           adp.version  Version
               Unsigned 16-bit integer
               ADP version

   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

   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
               BChannel

           actrace.cas.conn_id  Connection ID
               Signed 32-bit integer
               Connection ID

           actrace.cas.curr_state  Current State
               Signed 32-bit integer
               Current State

           actrace.cas.event  Event
               Signed 32-bit integer
               New Event

           actrace.cas.function  Function
               Signed 32-bit integer
               Function

           actrace.cas.next_state  Next State
               Signed 32-bit integer
               Next State

           actrace.cas.par0  Parameter 0
               Signed 32-bit integer
               Parameter 0

           actrace.cas.par1  Parameter 1
               Signed 32-bit integer
               Parameter 1

           actrace.cas.par2  Parameter 2
               Signed 32-bit integer
               Parameter 2

           actrace.cas.source  Source
               Signed 32-bit integer
               Source

           actrace.cas.time  Time
               Signed 32-bit integer
               Capture Time

           actrace.cas.trunk  Trunk Number
               Signed 32-bit integer
               Trunk Number

           actrace.isdn.dir  Direction
               Signed 32-bit integer
               Direction

           actrace.isdn.length  Length
               Signed 16-bit integer
               Length

           actrace.isdn.trunk  Trunk Number
               Signed 16-bit integer
               Trunk Number

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

   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
               Type

   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
               Cause

           gsm_bsslap.cell_id_disc  Cell identification Discriminator
               Unsigned 8-bit integer
               Cell identification Discriminator

           gsm_bsslap.elem_id  Element ID
               Unsigned 8-bit integer

           gsm_bsslap.lac  Location Area Code
               Unsigned 8-bit integer
               Location Area Code

           gsm_bsslap.msg_type  Message Type IE
               Unsigned 8-bit integer
               Message Type IE

           gsm_bsslap.poll_rep  Number of polling repetitions
               Unsigned 8-bit integer
               Number of polling repetitions

           gsm_bsslap.rrlp_flg  RRLP Flag
               Unsigned 8-bit integer
               Cause

           gsm_bsslap.ta  Timing Advance
               Unsigned 8-bit integer
               Timing Advance

           gsm_bsslap.tfi  TFI
               Unsigned 8-bit integer
               TFI

           gsm_bsslap.timerValue  Timer Value
               Unsigned 8-bit integer
               Timer Value

   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
               Gs Cause IE

           bssap.Tom_prot_disc  TOM Protocol Discriminator
               Unsigned 8-bit integer
               TOM Protocol Discriminator

           bssap.cell_global_id_ie  Cell global identity IE
               No value
               Cell global identity IE

           bssap.cn_id  CN-Id
               Unsigned 16-bit integer
               CN-Id

           bssap.dlci.cc  Control Channel
               Unsigned 8-bit integer

           bssap.dlci.sapi  SAPI
               Unsigned 8-bit integer

           bssap.dlci.spare  Spare
               Unsigned 8-bit integer

           bssap.dlink_tnl_pld_cntrl_amd_inf_ie  Downlink Tunnel Payload Control and Info IE
               No value
               Downlink Tunnel Payload Control and Info IE

           bssap.emlpp_prio_ie  eMLPP Priority IE
               No value
               eMLPP Priority IE

           bssap.erroneous_msg_ie  Erroneous message IE
               No value
               Erroneous message IE

           bssap.extension  Extension
               Boolean
               Extension

           bssap.global_cn_id  Global CN-Id
               Byte array
               Global CN-Id

           bssap.global_cn_id_ie  Global CN-Id IE
               No value
               Global CN-Id IE

           bssap.gprs_loc_upd_type  eMLPP Priority
               Unsigned 8-bit integer
               eMLPP Priority

           bssap.ie_data  IE Data
               Byte array
               IE Data

           bssap.imei  IMEI
               String
               IMEI

           bssap.imei_ie  IMEI IE
               No value
               IMEI IE

           bssap.imeisv  IMEISV
               String
               IMEISV

           bssap.imesiv  IMEISV IE
               No value
               IMEISV IE

           bssap.imsi  IMSI
               String
               IMSI

           bssap.imsi_det_from_gprs_serv_type  IMSI detach from GPRS service type
               Unsigned 8-bit integer
               IMSI detach from GPRS service type

           bssap.imsi_ie  IMSI IE
               No value
               IMSI IE

           bssap.info_req  Information requested
               Unsigned 8-bit integer
               Information requested

           bssap.info_req_ie  Information requested IE
               No value
               Information requested IE

           bssap.length  Length
               Unsigned 8-bit integer

           bssap.loc_area_id_ie  Location area identifier IE
               No value
               Location area identifier IE

           bssap.loc_inf_age  Location information age IE
               No value
               Location information age IE

           bssap.loc_upd_type_ie  GPRS location update type IE
               No value
               GPRS location update type IE

           bssap.mm_information  MM information IE
               No value
               MM information IE

           bssap.mobile_id_ie  Mobile identity IE
               No value
               Mobile identity IE

           bssap.mobile_station_state  Mobile station state
               Unsigned 8-bit integer
               Mobile station state

           bssap.mobile_station_state_ie  Mobile station state IE
               No value
               Mobile station state IE

           bssap.mobile_stn_cls_mrk1_ie  Mobile station classmark 1 IE
               No value
               Mobile station classmark 1 IE

           bssap.msi_det_from_gprs_serv_type_ie  IMSI detach from GPRS service type IE
               No value
               IMSI detach from GPRS service type IE

           bssap.msi_det_from_non_gprs_serv_type_ie  IMSI detach from non-GPRS service IE
               No value
               IMSI detach from non-GPRS service IE

           bssap.number_plan  Numbering plan identification
               Unsigned 8-bit integer
               Numbering plan identification

           bssap.pdu_type  Message Type
               Unsigned 8-bit integer

           bssap.plmn_id  PLMN-Id
               Byte array
               PLMN-Id

           bssap.ptmsi  PTMSI
               Byte array
               PTMSI

           bssap.ptmsi_ie  PTMSI IE
               No value
               PTMSI IE

           bssap.reject_cause_ie  Reject cause IE
               No value
               Reject cause IE

           bssap.sgsn_number  SGSN number
               String
               SGSN number

           bssap.tmsi  TMSI
               Byte array
               TMSI

           bssap.tmsi_ie  TMSI IE
               No value
               TMSI IE

           bssap.tmsi_status  TMSI status
               Boolean
               TMSI status

           bssap.tmsi_status_ie  TMSI status IE
               No value
               TMSI status IE

           bssap.tunnel_prio  Tunnel Priority
               Unsigned 8-bit integer
               Tunnel Priority

           bssap.type_of_number  Type of number
               Unsigned 8-bit integer
               Type of number

           bssap.ulink_tnl_pld_cntrl_amd_inf_ie  Uplink Tunnel Payload Control and Info IE
               No value
               Uplink Tunnel Payload Control and Info IE

           bssap.vlr_number  VLR number
               String
               VLR number

           bssap.vlr_number_ie  VLR number IE
               No value
               VLR number IE

           bssap_plus.iei  IEI
               Unsigned 8-bit integer

           bssap_plus.msg_type  Message Type
               Unsigned 8-bit integer
               Message Type

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

           bssgp.bvci  BVCI
               Unsigned 16-bit integer

           bssgp.ci  CI
               Unsigned 16-bit integer
               Cell Identity

           bssgp.ie_type  IE Type
               Unsigned 8-bit integer
               Information element type

           bssgp.iei.nacc_cause  NACC Cause
               Unsigned 8-bit integer
               NACC Cause

           bssgp.imei  IMEI
               String

           bssgp.imeisv  IMEISV
               String

           bssgp.imsi  IMSI
               String

           bssgp.lac  LAC
               Unsigned 16-bit integer

           bssgp.mcc  MCC
               Unsigned 8-bit integer

           bssgp.mnc  MNC
               Unsigned 8-bit integer

           bssgp.nri  NRI
               Unsigned 16-bit integer

           bssgp.nsei  NSEI
               Unsigned 16-bit integer

           bssgp.pdu_type  PDU Type
               Unsigned 8-bit integer

           bssgp.rac  RAC
               Unsigned 8-bit integer

           bssgp.rad  Routing Address Discriminator
               Unsigned 8-bit integer
               Routing Address Discriminator

           bssgp.ran_inf_req_pdu_type_ext  PDU Type Extension
               Unsigned 8-bit integer
               PDU Type Extension

           bssgp.ran_req_pdu_type_ext  PDU Type Extension
               Unsigned 8-bit integer
               PDU Type Extension

           bssgp.rcid  Reporting Cell Identity
               Unsigned 64-bit integer
               Reporting Cell Identity

           bssgp.rrc_si_type  RRC SI type
               Unsigned 8-bit integer
               RRC SI type

           bssgp.tlli  TLLI
               Unsigned 32-bit integer

           bssgp.tmsi_ptmsi  TMSI/PTMSI
               Unsigned 32-bit integer

   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

   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 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
               HCI Packet Type

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

           btacl.continuation_to  This is a continuation to the PDU in frame
               Frame number
               This is a continuation to the PDU in frame #

           btacl.data  Data
               No value
               Data

           btacl.length  Data Total Length
               Unsigned 16-bit integer
               Data Total Length

           btacl.pb_flag  PB Flag
               Unsigned 16-bit integer
               Packet Boundary Flag

           btacl.reassembled_in  This PDU is reassembled in frame
               Frame number
               This PDU is reassembled in frame #

   Bluetooth HCI Command (bthci_cmd)
           bthci_cmd.afh_ch_assessment_mode  AFH Channel Assessment Mode
               Unsigned 8-bit integer
               AFH Channel Assessment Mode

           bthci_cmd.afh_ch_classification  Channel Classification
               No value
               Channel Classification

           bthci_cmd.air_coding_format  Air Coding Format
               Unsigned 16-bit integer
               Air Coding Format

           bthci_cmd.allow_role_switch  Allow Role Switch
               Unsigned 8-bit integer
               Allow Role Switch

           bthci_cmd.auth_enable  Authentication Enable
               Unsigned 8-bit integer
               Authentication Enable

           bthci_cmd.auth_requirements  Authentication Requirements
               Unsigned 8-bit integer
               Authentication Requirements

           bthci_cmd.auto_accept_flag  Auto Accept Flag
               Unsigned 8-bit integer
               Class of Device of Interest

           bthci_cmd.bd_addr  BD_ADDR:
               No value
               Bluetooth Device Address

           bthci_cmd.beacon_max_int  Beacon Max Interval
               Unsigned 16-bit integer
               Maximal acceptable number of Baseband slots between consecutive beacons.

           bthci_cmd.beacon_min_int  Beacon Min Interval
               Unsigned 16-bit integer
               Minimum acceptable number of Baseband slots between consecutive beacons.

           bthci_cmd.class_of_device  Class of Device
               Unsigned 24-bit integer
               Class of Device

           bthci_cmd.class_of_device_mask  Class of Device Mask
               Unsigned 24-bit integer
               Bit Mask used to determine which bits of the Class of Device parameter are of interest.

           bthci_cmd.clock_offset  Clock Offset
               Unsigned 16-bit integer
               Bit 2-16 of the Clock Offset between CLKmaster-CLKslave

           bthci_cmd.clock_offset_valid  Clock_Offset_Valid_Flag
               Unsigned 16-bit integer
               Indicates if clock offset is valid

           bthci_cmd.connection_handle  Connection Handle
               Unsigned 16-bit integer
               Connection Handle

           bthci_cmd.delay_variation  Delay Variation
               Unsigned 32-bit integer
               Delay Variation, in microseconds

           bthci_cmd.delete_all_flag  Delete All Flag
               Unsigned 8-bit integer
               Delete All Flag

           bthci_cmd.device_name  Device Name
               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
               Encryption Mode

           bthci_cmd.encryption_enable  Encryption Enable
               Unsigned 8-bit integer
               Encryption Enable

           bthci_cmd.err_data_reporting  Erroneous Data Reporting
               Unsigned 8-bit integer
               Erroneous Data Reporting

           bthci_cmd.evt_mask_00  Inquiry Complete
               Unsigned 8-bit integer
               Inquiry Complete Bit

           bthci_cmd.evt_mask_01  Inquiry Result
               Unsigned 8-bit integer
               Inquiry Result Bit

           bthci_cmd.evt_mask_02  Connect Complete
               Unsigned 8-bit integer
               Connection Complete Bit

           bthci_cmd.evt_mask_03  Connect Request
               Unsigned 8-bit integer
               Connect Request Bit

           bthci_cmd.evt_mask_04  Disconnect Complete
               Unsigned 8-bit integer
               Disconnect Complete Bit

           bthci_cmd.evt_mask_05  Auth Complete
               Unsigned 8-bit integer
               Auth Complete Bit

           bthci_cmd.evt_mask_06  Remote Name Req Complete
               Unsigned 8-bit integer
               Remote Name Req Complete Bit

           bthci_cmd.evt_mask_07  Encrypt Change
               Unsigned 8-bit integer
               Encrypt Change Bit

           bthci_cmd.evt_mask_10  Change Connection Link Key Complete
               Unsigned 8-bit integer
               Change Connection Link Key Complete Bit

           bthci_cmd.evt_mask_11  Master Link Key Complete
               Unsigned 8-bit integer
               Master Link Key Complete Bit

           bthci_cmd.evt_mask_12  Read Remote Supported Features
               Unsigned 8-bit integer
               Read Remote Supported Features Bit

           bthci_cmd.evt_mask_13  Read Remote Ver Info Complete
               Unsigned 8-bit integer
               Read Remote Ver Info Complete Bit

           bthci_cmd.evt_mask_14  QoS Setup Complete
               Unsigned 8-bit integer
               QoS Setup Complete Bit

           bthci_cmd.evt_mask_17  Hardware Error
               Unsigned 8-bit integer
               Hardware Error Bit

           bthci_cmd.evt_mask_20  Flush Occurred
               Unsigned 8-bit integer
               Flush Occurred Bit

           bthci_cmd.evt_mask_21  Role Change
               Unsigned 8-bit integer
               Role Change Bit

           bthci_cmd.evt_mask_23  Mode Change
               Unsigned 8-bit integer
               Mode Change Bit

           bthci_cmd.evt_mask_24  Return Link Keys
               Unsigned 8-bit integer
               Return Link Keys Bit

           bthci_cmd.evt_mask_25  PIN Code Request
               Unsigned 8-bit integer
               PIN Code Request Bit

           bthci_cmd.evt_mask_26  Link Key Request
               Unsigned 8-bit integer
               Link Key Request Bit

           bthci_cmd.evt_mask_27  Link Key Notification
               Unsigned 8-bit integer
               Link Key Notification Bit

           bthci_cmd.evt_mask_30  Loopback Command
               Unsigned 8-bit integer
               Loopback Command Bit

           bthci_cmd.evt_mask_31  Data Buffer Overflow
               Unsigned 8-bit integer
               Data Buffer Overflow Bit

           bthci_cmd.evt_mask_32  Max Slots Change
               Unsigned 8-bit integer
               Max Slots Change Bit

           bthci_cmd.evt_mask_33  Read Clock Offset Complete
               Unsigned 8-bit integer
               Read Clock Offset Complete Bit

           bthci_cmd.evt_mask_34  Connection Packet Type Changed
               Unsigned 8-bit integer
               Connection Packet Type Changed Bit

           bthci_cmd.evt_mask_35  QoS Violation
               Unsigned 8-bit integer
               QoS Violation Bit

           bthci_cmd.evt_mask_36  Page Scan Mode Change
               Unsigned 8-bit integer
               Page Scan Mode Change Bit

           bthci_cmd.evt_mask_37  Page Scan Repetition Mode Change
               Unsigned 8-bit integer
               Page Scan Repetition Mode Change Bit

           bthci_cmd.evt_mask_40  Flow Specification Complete
               Unsigned 8-bit integer
               Flow Specification Complete Bit

           bthci_cmd.evt_mask_41  Inquiry Result With RSSI
               Unsigned 8-bit integer
               Inquiry Result With RSSI Bit

           bthci_cmd.evt_mask_42  Read Remote Ext. Features Complete
               Unsigned 8-bit integer
               Read Remote Ext. Features Complete Bit

           bthci_cmd.evt_mask_53  Synchronous Connection Complete
               Unsigned 8-bit integer
               Synchronous Connection Complete Bit

           bthci_cmd.evt_mask_54  Synchronous Connection Changed
               Unsigned 8-bit integer
               Synchronous Connection Changed Bit

           bthci_cmd.evt_mask_55  Sniff Subrate
               Unsigned 8-bit integer
               Sniff Subrate Bit

           bthci_cmd.evt_mask_56  Extended Inquiry Result
               Unsigned 8-bit integer
               Extended Inquiry Result Bit

           bthci_cmd.evt_mask_57  Encryption Key Refresh Complete
               Unsigned 8-bit integer
               Encryption Key Refresh Complete Bit

           bthci_cmd.evt_mask_60  IO Capability Request
               Unsigned 8-bit integer
               IO Capability Request Bit

           bthci_cmd.evt_mask_61  IO Capability Response
               Unsigned 8-bit integer
               IO Capability Response Bit

           bthci_cmd.evt_mask_62  User Confirmation Request
               Unsigned 8-bit integer
               User Confirmation Request Bit

           bthci_cmd.evt_mask_63  User Passkey Request
               Unsigned 8-bit integer
               User Passkey Request Bit

           bthci_cmd.evt_mask_64  Remote OOB Data Request
               Unsigned 8-bit integer
               Remote OOB Data Request Bit

           bthci_cmd.evt_mask_65  Simple Pairing Complete
               Unsigned 8-bit integer
               Simple Pairing Complete Bit

           bthci_cmd.evt_mask_67  Link Supervision Timeout Changed
               Unsigned 8-bit integer
               Link Supervision Timeout Changed Bit

           bthci_cmd.evt_mask_70  Enhanced Flush Complete
               Unsigned 8-bit integer
               Enhanced Flush Complete Bit

           bthci_cmd.evt_mask_72  User Passkey Notification
               Unsigned 8-bit integer
               User Passkey Notification Bit

           bthci_cmd.evt_mask_73  Keypress Notification
               Unsigned 8-bit integer
               Keypress Notification Bit

           bthci_cmd.fec_required  FEC Required
               Unsigned 8-bit integer
               FEC Required

           bthci_cmd.filter_condition_type  Filter Condition Type
               Unsigned 8-bit integer
               Filter Condition Type

           bthci_cmd.filter_type  Filter Type
               Unsigned 8-bit integer
               Filter Type

           bthci_cmd.flags  Flags
               Unsigned 8-bit integer
               Flags

           bthci_cmd.flow_contr_enable  Flow Control Enable
               Unsigned 8-bit integer
               Flow Control Enable

           bthci_cmd.flow_control  SCO Flow Control
               Unsigned 8-bit integer
               SCO Flow Control

           bthci_cmd.flush_packet_type  Packet Type
               Unsigned 8-bit integer
               Packet Type

           bthci_cmd.hash_c  Hash C
               Unsigned 16-bit integer
               Hash C

           bthci_cmd.hold_mode_inquiry  Suspend Inquiry Scan
               Unsigned 8-bit integer
               Device can enter low power state

           bthci_cmd.hold_mode_max_int  Hold Mode Max Interval
               Unsigned 16-bit integer
               Maximal acceptable number of Baseband slots to wait in Hold Mode.

           bthci_cmd.hold_mode_min_int  Hold Mode Min Interval
               Unsigned 16-bit integer
               Minimum acceptable number of Baseband slots to wait in Hold Mode.

           bthci_cmd.hold_mode_page  Suspend Page Scan
               Unsigned 8-bit integer
               Device can enter low power state

           bthci_cmd.hold_mode_periodic  Suspend Periodic Inquiries
               Unsigned 8-bit integer
               Device can enter low power state

           bthci_cmd.input_coding  Input Coding
               Unsigned 16-bit integer
               Authentication Enable

           bthci_cmd.input_data_format  Input Data Format
               Unsigned 16-bit integer
               Input Data Format

           bthci_cmd.input_sample_size  Input Sample Size
               Unsigned 16-bit integer
               Input Sample Size

           bthci_cmd.inq_length  Inquiry Length
               Unsigned 8-bit integer
               Inquiry Length (*1.28s)

           bthci_cmd.inq_scan_type  Scan Type
               Unsigned 8-bit integer
               Scan Type

           bthci_cmd.interval  Interval
               Unsigned 16-bit integer
               Interval

           bthci_cmd.io_capability  IO Capability
               Unsigned 8-bit integer
               IO Capability

           bthci_cmd.key_flag  Key Flag
               Unsigned 8-bit integer
               Key Flag

           bthci_cmd.lap  LAP
               Unsigned 24-bit integer
               LAP for the inquiry access code

           bthci_cmd.latency  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
               Enable Hold Mode

           bthci_cmd.link_policy_park  Enable Park Mode
               Unsigned 16-bit integer
               Enable Park Mode

           bthci_cmd.link_policy_sniff  Enable Sniff Mode
               Unsigned 16-bit integer
               Enable Sniff Mode

           bthci_cmd.link_policy_switch  Enable Master Slave Switch
               Unsigned 16-bit integer
               Enable Master Slave Switch

           bthci_cmd.loopback_mode  Loopback Mode
               Unsigned 8-bit integer
               Loopback Mode

           bthci_cmd.max_data_length_acl  Host ACL Data Packet Length (bytes)
               Unsigned 16-bit integer
               Max Host ACL Data Packet length of data portion host is able to accept

           bthci_cmd.max_data_length_sco  Host SCO Data Packet Length (bytes)
               Unsigned 8-bit integer
               Max Host SCO Data Packet length of data portion host is able to accept

           bthci_cmd.max_data_num_acl  Host Total Num ACL Data Packets
               Unsigned 16-bit integer
               Total Number of HCI ACL Data Packets that can be stored in the data buffers of the Host

           bthci_cmd.max_data_num_sco  Host Total Num SCO Data Packets
               Unsigned 16-bit integer
               Total Number of HCI SCO Data Packets that can be stored in the data buffers of the Host

           bthci_cmd.max_latency  Max. Latency
               Unsigned 16-bit integer
               Max. Latency in baseband slots

           bthci_cmd.max_latency_ms  Max. Latency (ms)
               Unsigned 16-bit integer
               Max. Latency (ms)

           bthci_cmd.max_period_length  Max Period Length
               Unsigned 16-bit integer
               Maximum amount of time specified between consecutive inquiries.

           bthci_cmd.min_local_timeout  Min. Local Timeout
               Unsigned 16-bit integer
               Min. Local Timeout in baseband slots

           bthci_cmd.min_period_length  Min Period Length
               Unsigned 16-bit integer
               Minimum amount of time specified between consecutive inquiries.

           bthci_cmd.min_remote_timeout  Min. Remote Timeout
               Unsigned 16-bit integer
               Min. Remote Timeout in baseband slots

           bthci_cmd.notification_type  Notification Type
               Unsigned 8-bit integer
               Notification Type

           bthci_cmd.num_broad_retran  Num Broadcast Retran
               Unsigned 8-bit integer
               Number of Broadcast Retransmissions

           bthci_cmd.num_compl_packets  Number of Completed Packets
               Unsigned 16-bit integer
               Number of Completed HCI Data Packets

           bthci_cmd.num_curr_iac  Number of Current IAC
               Unsigned 8-bit integer
               Number of IACs which are currently in use

           bthci_cmd.num_handles  Number of Handles
               Unsigned 8-bit integer
               Number of Handles

           bthci_cmd.num_responses  Num Responses
               Unsigned 8-bit integer
               Number of Responses

           bthci_cmd.ocf  ocf
               Unsigned 16-bit integer
               Opcode Command Field

           bthci_cmd.ogf  ogf
               Unsigned 16-bit integer
               Opcode Group Field

           bthci_cmd.oob_data_present  OOB Data Present
               Unsigned 8-bit integer
               OOB Data Present

           bthci_cmd.opcode  Command Opcode
               Unsigned 16-bit integer
               HCI Command Opcode

           bthci_cmd.packet_type_2dh1  Packet Type 2-DH1
               Unsigned 16-bit integer
               Packet Type 2-DH1

           bthci_cmd.packet_type_2dh3  Packet Type 2-DH3
               Unsigned 16-bit integer
               Packet Type 2-DH3

           bthci_cmd.packet_type_2dh5  Packet Type 2-DH5
               Unsigned 16-bit integer
               Packet Type 2-DH5

           bthci_cmd.packet_type_3dh1  Packet Type 3-DH1
               Unsigned 16-bit integer
               Packet Type 3-DH1

           bthci_cmd.packet_type_3dh3  Packet Type 3-DH3
               Unsigned 16-bit integer
               Packet Type 3-DH3

           bthci_cmd.packet_type_3dh5  Packet Type 3-DH5
               Unsigned 16-bit integer
               Packet Type 3-DH5

           bthci_cmd.packet_type_dh1  Packet Type DH1
               Unsigned 16-bit integer
               Packet Type DH1

           bthci_cmd.packet_type_dh3  Packet Type DH3
               Unsigned 16-bit integer
               Packet Type DH3

           bthci_cmd.packet_type_dh5  Packet Type DH5
               Unsigned 16-bit integer
               Packet Type DH5

           bthci_cmd.packet_type_dm1  Packet Type DM1
               Unsigned 16-bit integer
               Packet Type DM1

           bthci_cmd.packet_type_dm3  Packet Type DM3
               Unsigned 16-bit integer
               Packet Type DM3

           bthci_cmd.packet_type_dm5  Packet Type DM5
               Unsigned 16-bit integer
               Packet Type DM5

           bthci_cmd.packet_type_hv1  Packet Type HV1
               Unsigned 16-bit integer
               Packet Type HV1

           bthci_cmd.packet_type_hv2  Packet Type HV2
               Unsigned 16-bit integer
               Packet Type HV2

           bthci_cmd.packet_type_hv3  Packet Type HV3
               Unsigned 16-bit integer
               Packet Type HV3

           bthci_cmd.page_number  Page Number
               Unsigned 8-bit integer
               Page Number

           bthci_cmd.page_scan_mode  Page Scan Mode
               Unsigned 8-bit integer
               Page Scan Mode

           bthci_cmd.page_scan_period_mode  Page Scan Period Mode
               Unsigned 8-bit integer
               Page Scan Period Mode

           bthci_cmd.page_scan_repetition_mode  Page Scan Repetition Mode
               Unsigned 8-bit integer
               Page Scan Repetition Mode

           bthci_cmd.param_length  Parameter Total Length
               Unsigned 8-bit integer
               Parameter Total Length

           bthci_cmd.params  Command Parameters
               Byte array
               Command Parameters

           bthci_cmd.passkey  Passkey
               Unsigned 32-bit integer
               Passkey

           bthci_cmd.peak_bandwidth  Peak Bandwidth
               Unsigned 32-bit integer
               Peak Bandwidth, in bytes per second

           bthci_cmd.pin_code  PIN Code
               String
               PIN Code

           bthci_cmd.pin_code_length  PIN Code Length
               Unsigned 8-bit integer
               PIN Code Length

           bthci_cmd.pin_type  PIN Type
               Unsigned 8-bit integer
               PIN Types

           bthci_cmd.power_level  Power Level (dBm)
               Signed 8-bit integer
               Power Level (dBm)

           bthci_cmd.power_level_type  Type
               Unsigned 8-bit integer
               Type

           bthci_cmd.randomizer_r  Randomizer R
               Unsigned 16-bit integer
               Randomizer R

           bthci_cmd.read_all_flag  Read All Flag
               Unsigned 8-bit integer
               Read All Flag

           bthci_cmd.reason  Reason
               Unsigned 8-bit integer
               Reason

           bthci_cmd.retransmission_effort  Retransmission Effort
               Unsigned 8-bit integer
               Retransmission Effort

           bthci_cmd.role  Role
               Unsigned 8-bit integer
               Role

           bthci_cmd.rx_bandwidth  Rx Bandwidth (bytes/s)
               Unsigned 32-bit integer
               Rx Bandwidth

           bthci_cmd.scan_enable  Scan Enable
               Unsigned 8-bit integer
               Scan Enable

           bthci_cmd.sco_packet_type_2ev3  Packet Type 2-EV3
               Unsigned 16-bit integer
               Packet Type 2-EV3

           bthci_cmd.sco_packet_type_2ev5  Packet Type 2-EV5
               Unsigned 16-bit integer
               Packet Type 2-EV5

           bthci_cmd.sco_packet_type_3ev3  Packet Type 3-EV3
               Unsigned 16-bit integer
               Packet Type 3-EV3

           bthci_cmd.sco_packet_type_3ev5  Packet Type 3-EV5
               Unsigned 16-bit integer
               Packet Type 3-EV5

           bthci_cmd.sco_packet_type_ev3  Packet Type EV3
               Unsigned 16-bit integer
               Packet Type EV3

           bthci_cmd.sco_packet_type_ev4  Packet Type EV4
               Unsigned 16-bit integer
               Packet Type EV4

           bthci_cmd.sco_packet_type_ev5  Packet Type EV5
               Unsigned 16-bit integer
               Packet Type EV5

           bthci_cmd.sco_packet_type_hv1  Packet Type HV1
               Unsigned 16-bit integer
               Packet Type HV1

           bthci_cmd.sco_packet_type_hv2  Packet Type HV2
               Unsigned 16-bit integer
               Packet Type HV2

           bthci_cmd.sco_packet_type_hv3  Packet Type HV3
               Unsigned 16-bit integer
               Packet Type HV3

           bthci_cmd.service_class_uuid128  UUID
               Byte array
               128-bit Service Class UUID

           bthci_cmd.service_class_uuid16  UUID
               Unsigned 16-bit integer
               16-bit Service Class UUID

           bthci_cmd.service_class_uuid32  UUID
               Unsigned 32-bit integer
               32-bit Service Class UUID

           bthci_cmd.service_type  Service Type
               Unsigned 8-bit integer
               Service Type

           bthci_cmd.simple_pairing_debug_mode  Simple Pairing Debug Mode
               Unsigned 8-bit integer
               Simple Pairing Debug Mode

           bthci_cmd.simple_pairing_mode  Simple Pairing Mode
               Unsigned 8-bit integer
               Simple Pairing Mode

           bthci_cmd.sniff_attempt  Sniff Attempt
               Unsigned 16-bit integer
               Number of Baseband receive slots for sniff attempt.

           bthci_cmd.sniff_max_int  Sniff Max Interval
               Unsigned 16-bit integer
               Maximal acceptable number of Baseband slots between each sniff period.

           bthci_cmd.sniff_min_int  Sniff Min Interval
               Unsigned 16-bit integer
               Minimum acceptable number of Baseband slots between each sniff period.

           bthci_cmd.status  Status
               Unsigned 8-bit integer
               Status

           bthci_cmd.timeout  Timeout
               Unsigned 16-bit integer
               Number of Baseband slots for timeout.

           bthci_cmd.token_bucket_size  Available Token Bucket Size
               Unsigned 32-bit integer
               Token Bucket Size in bytes

           bthci_cmd.token_rate  Available Token Rate
               Unsigned 32-bit integer
               Token Rate, in bytes per second

           bthci_cmd.tx_bandwidth  Tx Bandwidth (bytes/s)
               Unsigned 32-bit integer
               Tx Bandwidth

           bthci_cmd.which_clock  Which Clock
               Unsigned 8-bit integer
               Which Clock

           bthci_cmd.window  Interval
               Unsigned 16-bit integer
               Window

           bthci_cmd_num_link_keys  Number of Link Keys
               Unsigned 8-bit integer
               Number of Link Keys

   Bluetooth HCI Event (bthci_evt)
           bthci_evt.afh_ch_assessment_mode  AFH Channel Assessment Mode
               Unsigned 8-bit integer
               AFH Channel Assessment Mode

           bthci_evt.afh_channel_map  AFH Channel Map
               Length byte array pair
               AFH Channel Map

           bthci_evt.afh_mode  AFH Mode
               Unsigned 8-bit integer
               AFH Mode

           bthci_evt.air_mode  Air Mode
               Unsigned 8-bit integer
               Air Mode

           bthci_evt.auth_enable  Authentication
               Unsigned 8-bit integer
               Authentication Enable

           bthci_evt.auth_requirements  Authentication Requirements
               Unsigned 8-bit integer
               Authentication Requirements

           bthci_evt.bd_addr  BD_ADDR:
               No value
               Bluetooth Device Address

           bthci_evt.class_of_device  Class of Device
               Unsigned 24-bit integer
               Class of Device

           bthci_evt.clock  Clock
               Unsigned 32-bit integer
               Clock

           bthci_evt.clock_accuracy  Clock
               Unsigned 16-bit integer
               Clock

           bthci_evt.clock_offset  Clock Offset
               Unsigned 16-bit integer
               Bit 2-16 of the Clock Offset between CLKmaster-CLKslave

           bthci_evt.code  Event Code
               Unsigned 8-bit integer
               Event Code

           bthci_evt.com_opcode  Command Opcode
               Unsigned 16-bit integer
               Command Opcode

           bthci_evt.comp_id  Manufacturer Name
               Unsigned 16-bit integer
               Manufacturer Name of Bluetooth Hardware

           bthci_evt.connection_handle  Connection Handle
               Unsigned 16-bit integer
               Connection Handle

           bthci_evt.country_code  Country Code
               Unsigned 8-bit integer
               Country Code

           bthci_evt.current_mode  Current Mode
               Unsigned 8-bit integer
               Current Mode

           bthci_evt.delay_variation  Available Delay Variation
               Unsigned 32-bit integer
               Available Delay Variation, in microseconds

           bthci_evt.device_name  Device Name
               NULL terminated string
               Userfriendly descriptive name for the device

           bthci_evt.encryption_enable  Encryption Enable
               Unsigned 8-bit integer
               Encryption Enable

           bthci_evt.encryption_mode  Encryption Mode
               Unsigned 8-bit integer
               Encryption Mode

           bthci_evt.err_data_reporting  Erroneous Data Reporting
               Unsigned 8-bit integer
               Erroneous Data Reporting

           bthci_evt.failed_contact_counter  Failed Contact Counter
               Unsigned 16-bit integer
               Failed Contact Counter

           bthci_evt.fec_required  FEC Required
               Unsigned 8-bit integer
               FEC Required

           bthci_evt.flags  Flags
               Unsigned 8-bit integer
               Flags

           bthci_evt.flow_direction  Flow Direction
               Unsigned 8-bit integer
               Flow Direction

           bthci_evt.hardware_code  Hardware Code
               Unsigned 8-bit integer
               Hardware Code (implementation specific)

           bthci_evt.hash_c  Hash C
               Unsigned 16-bit integer
               Hash C

           bthci_evt.hci_vers_nr  HCI Version
               Unsigned 8-bit integer
               Version of the Current HCI

           bthci_evt.hold_mode_inquiry  Suspend Inquiry Scan
               Unsigned 8-bit integer
               Device can enter low power state

           bthci_evt.hold_mode_page  Suspend Page Scan
               Unsigned 8-bit integer
               Device can enter low power state

           bthci_evt.hold_mode_periodic  Suspend Periodic Inquiries
               Unsigned 8-bit integer
               Device can enter low power state

           bthci_evt.input_coding  Input Coding
               Unsigned 16-bit integer
               Authentication Enable

           bthci_evt.input_data_format  Input Data Format
               Unsigned 16-bit integer
               Input Data Format

           bthci_evt.input_sample_size  Input Sample Size
               Unsigned 16-bit integer
               Input Sample Size

           bthci_evt.inq_scan_type  Scan Type
               Unsigned 8-bit integer
               Scan Type

           bthci_evt.interval  Interval
               Unsigned 16-bit integer
               Interval - Number of Baseband slots

           bthci_evt.io_capability  IO Capability
               Unsigned 8-bit integer
               IO Capability

           bthci_evt.key_flag  Key Flag
               Unsigned 8-bit integer
               Key Flag

           bthci_evt.key_type  Key Type
               Unsigned 8-bit integer
               Key Type

           bthci_evt.latency  Available 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
               Enable Hold Mode

           bthci_evt.link_policy_park  Enable Park Mode
               Unsigned 16-bit integer
               Enable Park Mode

           bthci_evt.link_policy_sniff  Enable Sniff Mode
               Unsigned 16-bit integer
               Enable Sniff Mode

           bthci_evt.link_policy_switch  Enable Master Slave Switch
               Unsigned 16-bit integer
               Enable Master Slave Switch

           bthci_evt.link_quality  Link Quality
               Unsigned 8-bit integer
               Link Quality (0x00 - 0xFF Higher Value = Better Link)

           bthci_evt.link_supervision_timeout  Link Supervision Timeout
               Unsigned 16-bit integer
               Link Supervision Timeout

           bthci_evt.link_type  Link Type
               Unsigned 8-bit integer
               Link Type

           bthci_evt.link_type_2dh1  ACL Link Type 2-DH1
               Unsigned 16-bit integer
               ACL Link Type 2-DH1

           bthci_evt.link_type_2dh3  ACL Link Type 2-DH3
               Unsigned 16-bit integer
               ACL Link Type 2-DH3

           bthci_evt.link_type_2dh5  ACL Link Type 2-DH5
               Unsigned 16-bit integer
               ACL Link Type 2-DH5

           bthci_evt.link_type_3dh1  ACL Link Type 3-DH1
               Unsigned 16-bit integer
               ACL Link Type 3-DH1

           bthci_evt.link_type_3dh3  ACL Link Type 3-DH3
               Unsigned 16-bit integer
               ACL Link Type 3-DH3

           bthci_evt.link_type_3dh5  ACL Link Type 3-DH5
               Unsigned 16-bit integer
               ACL Link Type 3-DH5

           bthci_evt.link_type_dh1  ACL Link Type DH1
               Unsigned 16-bit integer
               ACL Link Type DH1

           bthci_evt.link_type_dh3  ACL Link Type DH3
               Unsigned 16-bit integer
               ACL Link Type DH3

           bthci_evt.link_type_dh5  ACL Link Type DH5
               Unsigned 16-bit integer
               ACL Link Type DH5

           bthci_evt.link_type_dm1  ACL Link Type DM1
               Unsigned 16-bit integer
               ACL Link Type DM1

           bthci_evt.link_type_dm3  ACL Link Type DM3
               Unsigned 16-bit integer
               ACL Link Type DM3

           bthci_evt.link_type_dm5  ACL Link Type DM5
               Unsigned 16-bit integer
               ACL Link Type DM5

           bthci_evt.link_type_hv1  SCO Link Type HV1
               Unsigned 16-bit integer
               SCO Link Type HV1

           bthci_evt.link_type_hv2  SCO Link Type HV2
               Unsigned 16-bit integer
               SCO Link Type HV2

           bthci_evt.link_type_hv3  SCO Link Type HV3
               Unsigned 16-bit integer
               SCO Link Type HV3

           bthci_evt.lmp_feature  3-slot packets
               Unsigned 8-bit integer
               3-slot packets

           bthci_evt.lmp_handle  LMP Handle
               Unsigned 16-bit integer
               LMP Handle

           bthci_evt.lmp_sub_vers_nr  LMP Subversion
               Unsigned 16-bit integer
               Subversion of the Current LMP

           bthci_evt.lmp_vers_nr  LMP Version
               Unsigned 8-bit integer
               Version of the Current LMP

           bthci_evt.local_supported_cmds  Local Supported Commands
               Byte array
               Local Supported Commands

           bthci_evt.loopback_mode  Loopback Mode
               Unsigned 8-bit integer
               Loopback Mode

           bthci_evt.max_data_length_acl  Host ACL Data Packet Length (bytes)
               Unsigned 16-bit integer
               Max Host ACL Data Packet length of data portion host is able to accept

           bthci_evt.max_data_length_sco  Host SCO Data Packet Length (bytes)
               Unsigned 8-bit integer
               Max Host SCO Data Packet length of data portion host is able to accept

           bthci_evt.max_data_num_acl  Host Total Num ACL Data Packets
               Unsigned 16-bit integer
               Total Number of HCI ACL Data Packets that can be stored in the data buffers of the Host

           bthci_evt.max_data_num_sco  Host Total Num SCO Data Packets
               Unsigned 16-bit integer
               Total Number of HCI SCO Data Packets that can be stored in the data buffers of the Host

           bthci_evt.max_num_keys  Max Num Keys
               Unsigned 16-bit integer
               Total Number of Link Keys that the Host Controller can store

           bthci_evt.max_page_number  Max. Page Number
               Unsigned 8-bit integer
               Max. Page Number

           bthci_evt.max_rx_latency  Max. Rx Latency
               Unsigned 16-bit integer
               Max. Rx Latency

           bthci_evt.max_slots  Maximum Number of Slots
               Unsigned 8-bit integer
               Maximum Number of slots allowed for baseband packets

           bthci_evt.max_tx_latency  Max. Tx Latency
               Unsigned 16-bit integer
               Max. Tx Latency

           bthci_evt.min_local_timeout  Min. Local Timeout
               Unsigned 16-bit integer
               Min. Local Timeout

           bthci_evt.min_remote_timeout  Min. Remote Timeout
               Unsigned 16-bit integer
               Min. Remote Timeout

           bthci_evt.notification_type  Notification Type
               Unsigned 8-bit integer
               Notification Type

           bthci_evt.num_broad_retran  Num Broadcast Retran
               Unsigned 8-bit integer
               Number of Broadcast Retransmissions

           bthci_evt.num_command_packets  Number of Allowed Command Packets
               Unsigned 8-bit integer
               Number of Allowed Command Packets

           bthci_evt.num_compl_packets  Number of Completed Packets
               Unsigned 16-bit integer
               The number of HCI Data Packets that have been completed

           bthci_evt.num_curr_iac   Num Current IAC
               Unsigned 8-bit integer
               Num of IACs currently in use to simultaneously listen

           bthci_evt.num_handles  Number of Connection Handles
               Unsigned 8-bit integer
               Number of Connection Handles and Num_HCI_Data_Packets parameter pairs

           bthci_evt.num_keys  Number of Link Keys
               Unsigned 8-bit integer
               Number of Link Keys contained

           bthci_evt.num_keys_deleted  Number of Link Keys Deleted
               Unsigned 16-bit integer
               Number of Link Keys Deleted

           bthci_evt.num_keys_read  Number of Link Keys Read
               Unsigned 16-bit integer
               Number of Link Keys Read

           bthci_evt.num_keys_written  Number of Link Keys Written
               Unsigned 8-bit integer
               Number of Link Keys Written

           bthci_evt.num_responses  Number of responses
               Unsigned 8-bit integer
               Number of Responses from Inquiry

           bthci_evt.num_supp_iac   Num Support IAC
               Unsigned 8-bit integer
               Num of supported IAC the device can simultaneously listen

           bthci_evt.numeric_value  Numeric Value
               Unsigned 32-bit integer
               Numeric Value

           bthci_evt.ocf  ocf
               Unsigned 16-bit integer
               Opcode Command Field

           bthci_evt.ogf  ogf
               Unsigned 16-bit integer
               Opcode Group Field

           bthci_evt.oob_data_present  OOB Data Present
               Unsigned 8-bit integer
               OOB Data Present

           bthci_evt.page_number  Page Number
               Unsigned 8-bit integer
               Page Number

           bthci_evt.page_scan_mode  Page Scan Mode
               Unsigned 8-bit integer
               Page Scan Mode

           bthci_evt.page_scan_period_mode  Page Scan Period Mode
               Unsigned 8-bit integer
               Page Scan Period Mode

           bthci_evt.page_scan_repetition_mode  Page Scan Repetition Mode
               Unsigned 8-bit integer
               Page Scan Repetition Mode

           bthci_evt.param_length  Parameter Total Length
               Unsigned 8-bit integer
               Parameter Total Length

           bthci_evt.params  Event Parameter
               No value
               Event Parameter

           bthci_evt.passkey  Passkey
               Unsigned 32-bit integer
               Passkey

           bthci_evt.peak_bandwidth  Available Peak Bandwidth
               Unsigned 32-bit integer
               Available Peak Bandwidth, in bytes per second

           bthci_evt.pin_type  PIN Type
               Unsigned 8-bit integer
               PIN Types

           bthci_evt.power_level_type  Type
               Unsigned 8-bit integer
               Type

           bthci_evt.randomizer_r  Randomizer R
               Unsigned 16-bit integer
               Randomizer R

           bthci_evt.reason  Reason
               Unsigned 8-bit integer
               Reason

           bthci_evt.remote_name  Remote Name
               NULL terminated string
               Userfriendly descriptive name for the remote device

           bthci_evt.ret_params  Return Parameter
               No value
               Return Parameter

           bthci_evt.role  Role
               Unsigned 8-bit integer
               Role

           bthci_evt.rssi  RSSI (dB)
               Signed 8-bit integer
               RSSI (dB)

           bthci_evt.scan_enable  Scan
               Unsigned 8-bit integer
               Scan Enable

           bthci_evt.sco_flow_cont_enable  SCO Flow Control
               Unsigned 8-bit integer
               SCO Flow Control Enable

           bthci_evt.service_type  Service Type
               Unsigned 8-bit integer
               Service Type

           bthci_evt.simple_pairing_mode  Simple Pairing Mode
               Unsigned 8-bit integer
               Simple Pairing Mode

           bthci_evt.status  Status
               Unsigned 8-bit integer
               Status

           bthci_evt.sync_link_type  Link Type
               Unsigned 8-bit integer
               Link Type

           bthci_evt.sync_rtx_window  Retransmit Window
               Unsigned 8-bit integer
               Retransmit Window

           bthci_evt.sync_rx_pkt_len  Rx Packet Length
               Unsigned 16-bit integer
               Rx Packet Length

           bthci_evt.sync_tx_interval  Transmit Interval
               Unsigned 8-bit integer
               Transmit Interval

           bthci_evt.sync_tx_pkt_len  Tx Packet Length
               Unsigned 16-bit integer
               Tx Packet Length

           bthci_evt.timeout  Timeout
               Unsigned 16-bit integer
               Number of Baseband slots for timeout.

           bthci_evt.token_bucket_size  Token Bucket Size
               Unsigned 32-bit integer
               Token Bucket Size (bytes)

           bthci_evt.token_rate  Available Token Rate
               Unsigned 32-bit integer
               Available Token Rate, in bytes per second

           bthci_evt.transmit_power_level  Transmit Power Level (dBm)
               Signed 8-bit integer
               Transmit Power Level (dBm)

           bthci_evt.window  Interval
               Unsigned 16-bit integer
               Window

           bthci_evt_curr_role  Current Role
               Unsigned 8-bit integer
               Current role for this connection handle

   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
               HCI Packet Type

   Bluetooth HCI SCO Packet (bthci_sco)
           btsco.chandle  Connection Handle
               Unsigned 16-bit integer
               Connection Handle

           btsco.data  Data
               No value
               Data

           btsco.length  Data Total Length
               Unsigned 8-bit integer
               Data Total Length

   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
               Configuration Parameter Option

           btl2cap.conf_result  Result
               Unsigned 16-bit integer
               Configuration Result

           btl2cap.continuation  Continuation Flag
               Boolean
               Continuation Flag

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

           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
               Segmentation and reassembly

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

           btl2cap.dcid  Destination CID
               Unsigned 16-bit integer
               Destination Channel Identifier

           btl2cap.fcs  FCS
               Unsigned 16-bit integer
               Frame Check Sequence

           btl2cap.info_bidirqos  Bi-Directional QOS
               Unsigned 8-bit integer
               Bi-Directional QOS support

           btl2cap.info_extfeatures  Extended Features
               No value
               Extended Features Mask

           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_type  Information Type
               Unsigned 16-bit integer
               Type of implementation-specific information

           btl2cap.length  Length
               Unsigned 16-bit integer
               L2CAP Payload Length

           btl2cap.maxtransmit  MaxTransmit
               Unsigned 8-bit integer
               Maximum I-frame retransmissions

           btl2cap.monitortimeout  Monitor Timeout (ms)
               Unsigned 16-bit integer
               S-frame transmission interval (milliseconds)

           btl2cap.mps  MPS
               Unsigned 16-bit integer
               Maximum PDU Payload Size

           btl2cap.option_delayvar  Delay Variation (microseconds)
               Unsigned 32-bit integer
               Difference between maximum and minimum delay (microseconds)

           btl2cap.option_flags  Flags
               Unsigned 8-bit integer
               Flags - must be set to 0 (Reserved for future use)

           btl2cap.option_flushto  Flush Timeout (ms)
               Unsigned 16-bit integer
               Flush Timeout in milliseconds

           btl2cap.option_latency  Latency (microseconds)
               Unsigned 32-bit integer
               Maximal acceptable 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_servicetype  Service Type
               Unsigned 8-bit integer
               Level of service required

           btl2cap.option_tokenbsize  Token Bucket Size (bytes)
               Unsigned 32-bit integer
               Size of the token bucket (bytes)

           btl2cap.option_tokenrate  Token Rate (bytes/s)
               Unsigned 32-bit integer
               Rate at which traffic credits are granted (bytes/s)

           btl2cap.option_type  Type
               Unsigned 8-bit integer
               Type of option

           btl2cap.payload  Payload
               Byte array
               L2CAP Payload

           btl2cap.psm  PSM
               Unsigned 16-bit integer
               Protocol/Service Multiplexer

           btl2cap.reassembled_in  This SDU is reassembled in frame
               Frame number
               This SDU is reassembled in frame #

           btl2cap.rej_reason  Reason
               Unsigned 16-bit integer
               Reason

           btl2cap.result  Result
               Unsigned 16-bit integer
               Result

           btl2cap.retransmissionmode  Mode
               Unsigned 8-bit integer
               Retransmission/Flow Control mode

           btl2cap.retransmittimeout  Retransmit timeout (ms)
               Unsigned 16-bit integer
               Retransmission timeout (milliseconds)

           btl2cap.scid  Source CID
               Unsigned 16-bit integer
               Source Channel Identifier

           btl2cap.sdulength  SDU Length
               Unsigned 16-bit integer
               SDU Length

           btl2cap.sig_mtu  Maximum Signalling MTU
               Unsigned 16-bit integer
               Maximum Signalling MTU

           btl2cap.status  Status
               Unsigned 16-bit integer
               Status

           btl2cap.txwindow  TxWindow
               Unsigned 8-bit integer
               Retransmission window size

   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
               Error Recovery Mode

           btrfcomm.fcs  Frame Check Sequence
               Unsigned 8-bit integer
               Checksum over frame

           btrfcomm.frame_type  Frame type
               Unsigned 8-bit integer
               Command/Response flag

           btrfcomm.len  Payload length
               Unsigned 16-bit integer
               Frame length

           btrfcomm.max_frame_size  Max Frame Size
               Unsigned 16-bit integer
               Maximum Frame Size

           btrfcomm.max_retrans  Max Retrans
               Unsigned 8-bit integer
               Maximum number of retransmissions

           btrfcomm.mcc.cmd  C/R Flag
               Unsigned 8-bit integer
               Command/Response flag

           btrfcomm.mcc.cr  C/R Flag
               Unsigned 8-bit integer
               Command/Response flag

           btrfcomm.mcc.ea  EA Flag
               Unsigned 8-bit integer
               EA flag (should be always 1)

           btrfcomm.mcc.len  MCC Length
               Unsigned 16-bit integer
               Length of MCC data

           btrfcomm.msc.bl  Length of break in units of 200ms
               Unsigned 8-bit integer
               Length of break in units of 200ms

           btrfcomm.msc.dv  Data Valid (DV)
               Unsigned 8-bit integer
               Data Valid

           btrfcomm.msc.fc  Flow Control (FC)
               Unsigned 8-bit integer
               Flow Control

           btrfcomm.msc.ic  Incoming Call Indicator (IC)
               Unsigned 8-bit integer
               Incoming Call Indicator

           btrfcomm.msc.rtc  Ready To Communicate (RTC)
               Unsigned 8-bit integer
               Ready To Communicate

           btrfcomm.msc.rtr  Ready To Receive (RTR)
               Unsigned 8-bit integer
               Ready To Receive

           btrfcomm.pf  P/F flag
               Unsigned 8-bit integer
               Poll/Final bit

           btrfcomm.pn.cl  Convergence layer
               Unsigned 8-bit integer
               Convergence layer used for that particular DLCI

           btrfcomm.pn.i  Type of frame
               Unsigned 8-bit integer
               Type of information frames used for that particular DLCI

           btrfcomm.priority  Priority
               Unsigned 8-bit integer
               Priority

   Bluetooth SDP (btsdp)
           btsdp.error_code  ErrorCode
               Unsigned 16-bit integer
               Error Code

           btsdp.len  ParameterLength
               Unsigned 16-bit integer
               ParameterLength

           btsdp.pdu  PDU
               Unsigned 8-bit integer
               PDU type

           btsdp.ssares.byte_count  AttributeListsByteCount
               Unsigned 16-bit integer
               count of bytes in attribute list response

           btsdp.ssr.current_count  CurrentServiceRecordCount
               Unsigned 16-bit integer
               count of service records in this message

           btsdp.ssr.total_count  TotalServiceRecordCount
               Unsigned 16-bit integer
               Total count of service records

           btsdp.tid  TransactionID
               Unsigned 16-bit integer
               Transaction ID

   Boardwalk (brdwlk)
           brdwlk.drop  Packet Dropped
               Boolean

           brdwlk.eof  EOF
               Unsigned 8-bit integer
               EOF

           brdwlk.error  Error
               Unsigned 8-bit integer
               Error

           brdwlk.error.crc  CRC
               Boolean

           brdwlk.error.ctrl  Ctrl Char Inside Frame
               Boolean

           brdwlk.error.ef  Empty Frame
               Boolean

           brdwlk.error.ff  Fifo Full
               Boolean

           brdwlk.error.jumbo  Jumbo FC Frame
               Boolean

           brdwlk.error.nd  No Data
               Boolean

           brdwlk.error.plp  Packet Length Present
               Boolean

           brdwlk.error.tr  Truncated
               Boolean

           brdwlk.pktcnt  Packet Count
               Unsigned 16-bit integer

           brdwlk.plen  Original Packet Length
               Unsigned 32-bit integer

           brdwlk.sof  SOF
               Unsigned 8-bit integer
               SOF

           brdwlk.vsan  VSAN
               Unsigned 16-bit integer

   Boot Parameters (bootparams)
           bootparams.domain  Client Domain
               String
               Client Domain

           bootparams.fileid  File ID
               String
               File ID

           bootparams.filepath  File Path
               String
               File Path

           bootparams.host  Client Host
               String
               Client Host

           bootparams.hostaddr  Client Address
               IPv4 address
               Address

           bootparams.procedure_v1  V1 Procedure
               Unsigned 32-bit integer
               V1 Procedure

           bootparams.routeraddr  Router Address
               IPv4 address
               Router Address

           bootparams.type  Address Type
               Unsigned 32-bit integer
               Address Type

   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.tftp1  Spatial Redundancy TFTP1
               IPv4 address

           bootp.vendor.alu.tftp2  Spatial Redundancy TFTP2
               IPv4 address

           bootp.vendor.alu.vid  Voice VLAN ID
               Unsigned 16-bit integer
               Alcatel-Lucent VLAN ID to define Voice VLAN

           bootp.vendor.docsis.cmcap_len  CM DC Length
               Unsigned 8-bit integer
               DOCSIS Cable Modem Device Capabilities Length

           bootp.vendor.pktc.mtacap_len  MTA DC Length
               Unsigned 8-bit integer
               PacketCable MTA Device Capabilities Length

   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
               Cookie

           bgp.ssa_l2tpv3_cookie_len  Cookie Length
               Unsigned 8-bit integer
               Cookie Length

           bgp.ssa_l2tpv3_pref  Preference
               Unsigned 16-bit integer
               Preference

           bgp.ssa_l2tpv3_s  Sequencing bit
               Boolean
               Sequencing S-bit

           bgp.ssa_l2tpv3_session_id  Session ID
               Unsigned 32-bit integer
               Session ID

           bgp.ssa_len  Length
               Unsigned 16-bit integer
               SSA Length

           bgp.ssa_t  Transitive bit
               Boolean
               SSA Transitive bit

           bgp.ssa_type  SSA Type
               Unsigned 16-bit integer
               SSA Type

           bgp.ssa_value  Value
               Byte array
               SSA Value

           bgp.type  Type
               Unsigned 8-bit integer
               BGP message type

           bgp.withdrawn_prefix  Withdrawn prefix
               IPv4 address

   Building Automation and Control Network APDU (bacapp)
           bacapp.LVT  Length Value Type
               Unsigned 8-bit integer
               Length Value Type

           bacapp.NAK  NAK
               Boolean
               negative ACK

           bacapp.SA  SA
               Boolean
               Segmented Response accepted

           bacapp.SRV  SRV
               Boolean
               Server

           bacapp.abort_reason  Abort Reason
               Unsigned 8-bit integer
               Abort Reason

           bacapp.application_tag_number  Application Tag Number
               Unsigned 8-bit integer
               Application Tag Number

           bacapp.confirmed_service  Service Choice
               Unsigned 8-bit integer
               Service Choice

           bacapp.context_tag_number  Context Tag Number
               Unsigned 8-bit integer
               Context Tag Number

           bacapp.extended_tag_number  Extended Tag Number
               Unsigned 8-bit integer
               Extended Tag Number

           bacapp.instance_number  Instance Number
               Unsigned 32-bit integer
               Instance Number

           bacapp.invoke_id  Invoke ID
               Unsigned 8-bit integer
               Invoke ID

           bacapp.max_adpu_size  Size of Maximum ADPU accepted
               Unsigned 8-bit integer
               Size of Maximum ADPU accepted

           bacapp.more_segments  More Segments
               Boolean
               More Segments Follow

           bacapp.named_tag  Named Tag
               Unsigned 8-bit integer
               Named Tag

           bacapp.objectType  Object Type
               Unsigned 32-bit integer
               Object Type

           bacapp.pduflags  PDU Flags
               Unsigned 8-bit integer
               PDU Flags

           bacapp.processId  ProcessIdentifier
               Unsigned 32-bit integer
               Process Identifier

           bacapp.property_identifier  Property Identifier
               Unsigned 32-bit integer
               Property Identifier

           bacapp.reject_reason  Reject Reason
               Unsigned 8-bit integer
               Reject Reason

           bacapp.response_segments  Max Response Segments accepted
               Unsigned 8-bit integer
               Max Response Segments accepted

           bacapp.segmented_request  Segmented Request
               Boolean
               Segmented Request

           bacapp.sequence_number  Sequence Number
               Unsigned 8-bit integer
               Sequence Number

           bacapp.string_character_set  String Character Set
               Unsigned 8-bit integer
               String Character Set

           bacapp.tag  BACnet Tag
               Byte array
               BACnet Tag

           bacapp.tag_class  Tag Class
               Boolean
               Tag Class

           bacapp.tag_value16  Tag Value 16-bit
               Unsigned 16-bit integer
               Tag Value 16-bit

           bacapp.tag_value32  Tag Value 32-bit
               Unsigned 32-bit integer
               Tag Value 32-bit

           bacapp.tag_value8  Tag Value
               Unsigned 8-bit integer
               Tag Value

           bacapp.type  APDU Type
               Unsigned 8-bit integer
               APDU Type

           bacapp.unconfirmed_service  Unconfirmed Service Choice
               Unsigned 8-bit integer
               Unconfirmed Service Choice

           bacapp.variable_part  BACnet APDU variable part:
               No value
               BACnet APDU variable part

           bacapp.vendor_identifier  Vendor Identifier
               Unsigned 16-bit integer
               Vendor Identifier

           bacapp.window_size  Proposed Window Size
               Unsigned 8-bit integer
               Proposed Window Size

   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
               Destination ISO 8802-3 MAC Address

           bacnet.dadr_mstp  DADR
               Unsigned 8-bit integer
               Destination MS/TP or ARCNET MAC Address

           bacnet.dadr_tmp  Unknown Destination MAC
               Byte array
               Unknown Destination MAC

           bacnet.dlen  Destination MAC Layer Address Length
               Unsigned 8-bit integer
               Destination MAC Layer Address Length

           bacnet.dnet  Destination Network Address
               Unsigned 16-bit integer
               Destination Network Address

           bacnet.hopc  Hop Count
               Unsigned 8-bit integer
               Hop Count

           bacnet.mesgtyp  Network Layer Message Type
               Unsigned 8-bit integer
               Network Layer Message Type

           bacnet.perf  Performance Index
               Unsigned 8-bit integer
               Performance Index

           bacnet.pinfolen  Port Info Length
               Unsigned 8-bit integer
               Port Info Length

           bacnet.portid  Port ID
               Unsigned 8-bit integer
               Port ID

           bacnet.rejectreason  Reject Reason
               Unsigned 8-bit integer
               Reject Reason

           bacnet.rportnum  Number of Port Mappings
               Unsigned 8-bit integer
               Number of Port Mappings

           bacnet.sadr_eth  SADR
               6-byte Hardware (MAC) Address
               Source ISO 8802-3 MAC Address

           bacnet.sadr_mstp  SADR
               Unsigned 8-bit integer
               Source MS/TP or ARCNET MAC Address

           bacnet.sadr_tmp  Unknown Source MAC
               Byte array
               Unknown Source MAC

           bacnet.slen  Source MAC Layer Address Length
               Unsigned 8-bit integer
               Source MAC Layer Address Length

           bacnet.snet  Source Network Address
               Unsigned 16-bit integer
               Source Network Address

           bacnet.term_time_value  Termination Time Value (seconds)
               Unsigned 8-bit integer
               Termination Time Value

           bacnet.vendor  Vendor ID
               Unsigned 16-bit integer
               Vendor ID

           bacnet.version  Version
               Unsigned 8-bit integer
               BACnet Version

   CCSDS (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
               Operation

   CESoPSN basic NxDS0 mode (no RTP support) (pwcesopsn)
           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.padding  Padding
               Byte array

           pwcesopsn.payload  TDM payload
               Byte array

   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.tlv.chassis.id  Chassis ID
               Byte array

           cfm.tlv.chassis.id.length  Chassis ID Length
               Unsigned 8-bit integer

           cfm.tlv.chassis.id.subtype  Chassis ID Sub-type
               Unsigned 8-bit integer

           cfm.tlv.data.value  Data Value
               Byte array

           cfm.tlv.length  TLV Length
               Unsigned 16-bit integer

           cfm.tlv.ltm.egress.id.mac  Egress Identifier - MAC of LT Initiator/Responder
               6-byte Hardware (MAC) Address

           cfm.tlv.ltm.egress.id.ui  Egress Identifier - Unique Identifier
               Byte array

           cfm.tlv.ltr.egress.last.id.mac  Last Egress Identifier - MAC address
               6-byte Hardware (MAC) Address

           cfm.tlv.ltr.egress.last.id.ui  Last Egress Identifier - Unique Identifier
               Byte array

           cfm.tlv.ltr.egress.next.id.mac  Next Egress Identifier - MAC address
               6-byte Hardware (MAC) Address

           cfm.tlv.ltr.egress.next.id.ui  Next Egress Identifier - Unique Identifier
               Byte array

           cfm.tlv.ma.domain  Management Address Domain
               Byte array

           cfm.tlv.ma.domain.length  Management Address Domain Length
               Unsigned 8-bit integer

           cfm.tlv.management.addr  Management Address
               Byte array

           cfm.tlv.management.addr.length  Management Address Length
               Unsigned 8-bit integer

           cfm.tlv.org.spec.oui  OUI
               Byte array

           cfm.tlv.org.spec.subtype  Sub-Type
               Byte array

           cfm.tlv.org.spec.value  Value
               Byte array

           cfm.tlv.port.interface.value  Interface Status value
               Unsigned 8-bit integer

           cfm.tlv.port.status.value  Port Status value
               Unsigned 8-bit integer

           cfm.tlv.reply.egress.action  Egress Action
               Unsigned 8-bit integer

           cfm.tlv.reply.egress.mac.address  Egress MAC address
               6-byte Hardware (MAC) Address

           cfm.tlv.reply.ingress.action  Ingress Action
               Unsigned 8-bit integer

           cfm.tlv.reply.ingress.mac.address  Ingress MAC address
               6-byte Hardware (MAC) Address

           cfm.tlv.tst.crc32  CRC-32
               Byte array

           cfm.tlv.tst.test.pattern  Test Pattern
               No value

           cfm.tlv.tst.test.pattern.type  Test Pattern Type
               Unsigned 8-bit integer

           cfm.tlv.type  TLV Type
               Unsigned 8-bit integer

           cfm.tst.pdu  CFM TST PDU
               No value

           cfm.tst.sequence.num  Sequence Number
               Unsigned 32-bit integer

           cfm.version  CFM Version
               Unsigned 8-bit integer

           cfm.vsm.pdu  CFM VSM PDU
               No value

           cfm.vsr.pdu  CFM VSR PDU
               No value

   CRTP (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.ApplyChargingArg

           camel.ApplyChargingGPRSArg  ApplyChargingGPRSArg
               No value
               camel.ApplyChargingGPRSArg

           camel.ApplyChargingReportArg  ApplyChargingReportArg
               Byte array
               camel.ApplyChargingReportArg

           camel.ApplyChargingReportGPRSArg  ApplyChargingReportGPRSArg
               No value
               camel.ApplyChargingReportGPRSArg

           camel.AssistRequestInstructionsArg  AssistRequestInstructionsArg
               No value
               camel.AssistRequestInstructionsArg

           camel.BCSMEvent  BCSMEvent
               No value
               camel.BCSMEvent

           camel.CAMEL_AChBillingChargingCharacteristics  CAMEL-AChBillingChargingCharacteristics
               Unsigned 32-bit integer
               CAMEL-AChBillingChargingCharacteristics

           camel.CAMEL_CallResult  CAMEL-CAMEL_CallResult
               Unsigned 32-bit integer
               CAMEL-CallResult

           camel.CAMEL_FCIBillingChargingCharacteristics  CAMEL-FCIBillingChargingCharacteristics
               Unsigned 32-bit integer
               CAMEL-FCIBillingChargingCharacteristics

           camel.CAMEL_FCIGPRSBillingChargingCharacteristics  CAMEL-FCIGPRSBillingChargingCharacteristics
               Unsigned 32-bit integer
               CAMEL-FCIGPRSBillingChargingCharacteristics

           camel.CAMEL_FCISMSBillingChargingCharacteristics  CAMEL-FCISMSBillingChargingCharacteristics
               Unsigned 32-bit integer
               CAMEL-FCISMSBillingChargingCharacteristics

           camel.CAMEL_SCIBillingChargingCharacteristics  CAMEL-SCIBillingChargingCharacteristics
               Unsigned 32-bit integer
               CAMEL-SCIBillingChargingCharacteristics

           camel.CAMEL_SCIGPRSBillingChargingCharacteristics  CAMEL-SCIGPRSBillingChargingCharacteristics
               Unsigned 32-bit integer
               CAMEL-FSCIGPRSBillingChargingCharacteristics

           camel.CAP_GPRS_ReferenceNumber  CAP-GPRS-ReferenceNumber
               No value
               camel.CAP_GPRS_ReferenceNumber

           camel.CAP_U_ABORT_REASON  CAP-U-ABORT-REASON
               Unsigned 32-bit integer
               camel.CAP_U_ABORT_REASON

           camel.CallGapArg  CallGapArg
               No value
               camel.CallGapArg

           camel.CallInformationReportArg  CallInformationReportArg
               No value
               camel.CallInformationReportArg

           camel.CallInformationRequestArg  CallInformationRequestArg
               No value
               camel.CallInformationRequestArg

           camel.CalledPartyNumber  CalledPartyNumber
               Byte array
               camel.CalledPartyNumber

           camel.CancelArg  CancelArg
               Unsigned 32-bit integer
               camel.CancelArg

           camel.CancelGPRSArg  CancelGPRSArg
               No value
               camel.CancelGPRSArg

           camel.CellGlobalIdOrServiceAreaIdFixedLength  CellGlobalIdOrServiceAreaIdFixedLength
               Byte array
               LocationInformationGPRS/CellGlobalIdOrServiceAreaIdOrLAI

           camel.ChangeOfLocation  ChangeOfLocation
               Unsigned 32-bit integer
               camel.ChangeOfLocation

           camel.ConnectArg  ConnectArg
               No value
               camel.ConnectArg

           camel.ConnectGPRSArg  ConnectGPRSArg
               No value
               camel.ConnectGPRSArg

           camel.ConnectSMSArg  ConnectSMSArg
               No value
               camel.ConnectSMSArg

           camel.ConnectToResourceArg  ConnectToResourceArg
               No value
               camel.ConnectToResourceArg

           camel.ContinueGPRSArg  ContinueGPRSArg
               No value
               camel.ContinueGPRSArg

           camel.ContinueWithArgumentArg  ContinueWithArgumentArg
               No value
               camel.ContinueWithArgumentArg

           camel.DisconnectForwardConnectionWithArgumentArg  DisconnectForwardConnectionWithArgumentArg
               No value
               camel.DisconnectForwardConnectionWithArgumentArg

           camel.DisconnectLegArg  DisconnectLegArg
               No value
               camel.DisconnectLegArg

           camel.EntityReleasedArg  EntityReleasedArg
               Unsigned 32-bit integer
               camel.EntityReleasedArg

           camel.EntityReleasedGPRSArg  EntityReleasedGPRSArg
               No value
               camel.EntityReleasedGPRSArg

           camel.EstablishTemporaryConnectionArg  EstablishTemporaryConnectionArg
               No value
               camel.EstablishTemporaryConnectionArg

           camel.EventReportBCSMArg  EventReportBCSMArg
               No value
               camel.EventReportBCSMArg

           camel.EventReportGPRSArg  EventReportGPRSArg
               No value
               camel.EventReportGPRSArg

           camel.EventReportSMSArg  EventReportSMSArg
               No value
               camel.EventReportSMSArg

           camel.ExtensionField  ExtensionField
               No value
               camel.ExtensionField

           camel.FurnishChargingInformationArg  FurnishChargingInformationArg
               Byte array
               camel.FurnishChargingInformationArg

           camel.FurnishChargingInformationGPRSArg  FurnishChargingInformationGPRSArg
               Byte array
               camel.FurnishChargingInformationGPRSArg

           camel.FurnishChargingInformationSMSArg  FurnishChargingInformationSMSArg
               Byte array
               camel.FurnishChargingInformationSMSArg

           camel.GPRSEvent  GPRSEvent
               No value
               camel.GPRSEvent

           camel.GenericNumber  GenericNumber
               Byte array
               camel.GenericNumber

           camel.InitialDPArg  InitialDPArg
               No value
               camel.InitialDPArg

           camel.InitialDPGPRSArg  InitialDPGPRSArg
               No value
               camel.InitialDPGPRSArg

           camel.InitialDPSMSArg  InitialDPSMSArg
               No value
               camel.InitialDPSMSArg

           camel.InitiateCallAttemptArg  InitiateCallAttemptArg
               No value
               camel.InitiateCallAttemptArg

           camel.InitiateCallAttemptRes  InitiateCallAttemptRes
               No value
               camel.InitiateCallAttemptRes

           camel.Integer4  Integer4
               Unsigned 32-bit integer
               inap.Integer4

           camel.InvokeId_present  InvokeId.present
               Signed 32-bit integer
               camel.InvokeId_present

           camel.MetDPCriterion  MetDPCriterion
               Unsigned 32-bit integer
               camel.MetDPCriterion

           camel.MoveLegArg  MoveLegArg
               No value
               camel.MoveLegArg

           camel.PAR_cancelFailed  PAR-cancelFailed
               No value
               camel.PAR_cancelFailed

           camel.PAR_requestedInfoError  PAR-requestedInfoError
               Unsigned 32-bit integer
               camel.PAR_requestedInfoError

           camel.PAR_taskRefused  PAR-taskRefused
               Unsigned 32-bit integer
               camel.PAR_taskRefused

           camel.PDPAddress_IPv4  PDPAddress IPv4
               IPv4 address
               IPAddress IPv4

           camel.PDPAddress_IPv6  PDPAddress IPv6
               IPv6 address
               IPAddress IPv6

           camel.PDPTypeNumber_etsi  ETSI defined PDP Type Value
               Unsigned 8-bit integer
               ETSI defined PDP Type Value

           camel.PDPTypeNumber_ietf  IETF defined PDP Type Value
               Unsigned 8-bit integer
               IETF defined PDP Type Value

           camel.PlayAnnouncementArg  PlayAnnouncementArg
               No value
               camel.PlayAnnouncementArg

           camel.PlayToneArg  PlayToneArg
               No value
               camel.PlayToneArg

           camel.PromptAndCollectUserInformationArg  PromptAndCollectUserInformationArg
               No value
               camel.PromptAndCollectUserInformationArg

           camel.RP_Cause  RP Cause
               Unsigned 8-bit integer
               RP Cause Value

           camel.ReceivedInformationArg  ReceivedInformationArg
               Unsigned 32-bit integer
               camel.ReceivedInformationArg

           camel.ReleaseCallArg  ReleaseCallArg
               Byte array
               camel.ReleaseCallArg

           camel.ReleaseGPRSArg  ReleaseGPRSArg
               No value
               camel.ReleaseGPRSArg

           camel.ReleaseSMSArg  ReleaseSMSArg
               Byte array
               camel.ReleaseSMSArg

           camel.RequestReportBCSMEventArg  RequestReportBCSMEventArg
               No value
               camel.RequestReportBCSMEventArg

           camel.RequestReportGPRSEventArg  RequestReportGPRSEventArg
               No value
               camel.RequestReportGPRSEventArg

           camel.RequestReportSMSEventArg  RequestReportSMSEventArg
               No value
               camel.RequestReportSMSEventArg

           camel.RequestedInformation  RequestedInformation
               No value
               camel.RequestedInformation

           camel.RequestedInformationType  RequestedInformationType
               Unsigned 32-bit integer
               camel.RequestedInformationType

           camel.ResetTimerArg  ResetTimerArg
               No value
               camel.ResetTimerArg

           camel.ResetTimerGPRSArg  ResetTimerGPRSArg
               No value
               camel.ResetTimerGPRSArg

           camel.ResetTimerSMSArg  ResetTimerSMSArg
               No value
               camel.ResetTimerSMSArg

           camel.SMSEvent  SMSEvent
               No value
               camel.SMSEvent

           camel.SendChargingInformationArg  SendChargingInformationArg
               No value
               camel.SendChargingInformationArg

           camel.SendChargingInformationGPRSArg  SendChargingInformationGPRSArg
               No value
               camel.SendChargingInformationGPRSArg

           camel.SpecializedResourceReportArg  SpecializedResourceReportArg
               Unsigned 32-bit integer
               camel.SpecializedResourceReportArg

           camel.SplitLegArg  SplitLegArg
               No value
               camel.SplitLegArg

           camel.UnavailableNetworkResource  UnavailableNetworkResource
               Unsigned 32-bit integer
               camel.UnavailableNetworkResource

           camel.VariablePart  VariablePart
               Unsigned 32-bit integer
               camel.VariablePart

           camel.aChBillingChargingCharacteristics  aChBillingChargingCharacteristics
               Byte array
               camel.AChBillingChargingCharacteristics

           camel.aChChargingAddress  aChChargingAddress
               Unsigned 32-bit integer
               camel.AChChargingAddress

           camel.aOCAfterAnswer  aOCAfterAnswer
               No value
               camel.AOCSubsequent

           camel.aOCBeforeAnswer  aOCBeforeAnswer
               No value
               camel.AOCBeforeAnswer

           camel.aOCGPRS  aOCGPRS
               No value
               camel.AOCGPRS

           camel.aOCInitial  aOCInitial
               No value
               camel.CAI_GSM0224

           camel.aOCSubsequent  aOCSubsequent
               No value
               camel.AOCSubsequent

           camel.aOC_extension  aOC-extension
               No value
               camel.CAMEL_SCIBillingChargingCharacteristicsAlt

           camel.absent  absent
               No value
               camel.NULL

           camel.accessPointName  accessPointName
               String
               camel.AccessPointName

           camel.active  active
               Boolean
               camel.BOOLEAN

           camel.additionalCallingPartyNumber  additionalCallingPartyNumber
               Byte array
               camel.AdditionalCallingPartyNumber

           camel.alertingPattern  alertingPattern
               Byte array
               camel.AlertingPattern

           camel.allAnnouncementsComplete  allAnnouncementsComplete
               No value
               camel.NULL

           camel.allRequests  allRequests
               No value
               camel.NULL

           camel.appendFreeFormatData  appendFreeFormatData
               Unsigned 32-bit integer
               camel.AppendFreeFormatData

           camel.applicationTimer  applicationTimer
               Unsigned 32-bit integer
               camel.ApplicationTimer

           camel.argument  argument
               No value
               camel.T_argument

           camel.assistingSSPIPRoutingAddress  assistingSSPIPRoutingAddress
               Byte array
               camel.AssistingSSPIPRoutingAddress

           camel.attachChangeOfPositionSpecificInformation  attachChangeOfPositionSpecificInformation
               No value
               camel.T_attachChangeOfPositionSpecificInformation

           camel.attributes  attributes
               Byte array
               camel.OCTET_STRING_SIZE_bound__minAttributesLength_bound__maxAttributesLength

           camel.audibleIndicator  audibleIndicator
               Unsigned 32-bit integer
               camel.T_audibleIndicator

           camel.automaticRearm  automaticRearm
               No value
               camel.NULL

           camel.bCSM_Failure  bCSM-Failure
               No value
               camel.BCSM_Failure

           camel.backwardServiceInteractionInd  backwardServiceInteractionInd
               No value
               camel.BackwardServiceInteractionInd

           camel.basicGapCriteria  basicGapCriteria
               Unsigned 32-bit integer
               camel.BasicGapCriteria

           camel.bcsmEvents  bcsmEvents
               Unsigned 32-bit integer
               camel.SEQUENCE_SIZE_1_bound__numOfBCSMEvents_OF_BCSMEvent

           camel.bearerCap  bearerCap
               Byte array
               camel.T_bearerCap

           camel.bearerCapability  bearerCapability
               Unsigned 32-bit integer
               camel.BearerCapability

           camel.bearerCapability2  bearerCapability2
               Unsigned 32-bit integer
               camel.BearerCapability

           camel.bor_InterrogationRequested  bor-InterrogationRequested
               No value
               camel.NULL

           camel.bothwayThroughConnectionInd  bothwayThroughConnectionInd
               Unsigned 32-bit integer
               inap.BothwayThroughConnectionInd

           camel.burstInterval  burstInterval
               Unsigned 32-bit integer
               camel.INTEGER_1_1200

           camel.burstList  burstList
               No value
               camel.BurstList

           camel.bursts  bursts
               No value
               camel.Burst

           camel.busyCause  busyCause
               Byte array
               camel.Cause

           camel.cAI_GSM0224  cAI-GSM0224
               No value
               camel.CAI_GSM0224

           camel.cGEncountered  cGEncountered
               Unsigned 32-bit integer
               camel.CGEncountered

           camel.callAcceptedSpecificInfo  callAcceptedSpecificInfo
               No value
               camel.T_callAcceptedSpecificInfo

           camel.callAttemptElapsedTimeValue  callAttemptElapsedTimeValue
               Unsigned 32-bit integer
               camel.INTEGER_0_255

           camel.callCompletionTreatmentIndicator  callCompletionTreatmentIndicator
               Byte array
               camel.OCTET_STRING_SIZE_1

           camel.callConnectedElapsedTimeValue  callConnectedElapsedTimeValue
               Unsigned 32-bit integer
               inap.Integer4

           camel.callDiversionTreatmentIndicator  callDiversionTreatmentIndicator
               Byte array
               camel.OCTET_STRING_SIZE_1

           camel.callForwarded  callForwarded
               No value
               camel.NULL

           camel.callForwardingSS_Pending  callForwardingSS-Pending
               No value
               camel.NULL

           camel.callLegReleasedAtTcpExpiry  callLegReleasedAtTcpExpiry
               No value
               camel.NULL

           camel.callReferenceNumber  callReferenceNumber
               Byte array
               gsm_map_ch.CallReferenceNumber

           camel.callSegmentFailure  callSegmentFailure
               No value
               camel.CallSegmentFailure

           camel.callSegmentID  callSegmentID
               Unsigned 32-bit integer
               camel.CallSegmentID

           camel.callSegmentToCancel  callSegmentToCancel
               No value
               camel.CallSegmentToCancel

           camel.callStopTimeValue  callStopTimeValue
               String
               camel.DateAndTime

           camel.calledAddressAndService  calledAddressAndService
               No value
               camel.T_calledAddressAndService

           camel.calledAddressValue  calledAddressValue
               Byte array
               camel.Digits

           camel.calledPartyBCDNumber  calledPartyBCDNumber
               Byte array
               camel.CalledPartyBCDNumber

           camel.calledPartyNumber  calledPartyNumber
               Byte array
               camel.CalledPartyNumber

           camel.callingAddressAndService  callingAddressAndService
               No value
               camel.T_callingAddressAndService

           camel.callingAddressValue  callingAddressValue
               Byte array
               camel.Digits

           camel.callingPartyNumber  callingPartyNumber
               Byte array
               camel.CallingPartyNumber

           camel.callingPartyRestrictionIndicator  callingPartyRestrictionIndicator
               Byte array
               camel.OCTET_STRING_SIZE_1

           camel.callingPartysCategory  callingPartysCategory
               Unsigned 16-bit integer
               inap.CallingPartysCategory

           camel.callingPartysNumber  callingPartysNumber
               Byte array
               camel.SMS_AddressString

           camel.cancelDigit  cancelDigit
               Byte array
               camel.OCTET_STRING_SIZE_1_2

           camel.carrier  carrier
               Byte array
               camel.Carrier

           camel.cause  cause
               Byte array
               camel.Cause

           camel.cause_indicator  Cause indicator
               Unsigned 8-bit integer

           camel.cellGlobalId  cellGlobalId
               Byte array
               gsm_map.CellGlobalIdOrServiceAreaIdFixedLength

           camel.cellGlobalIdOrServiceAreaIdOrLAI  cellGlobalIdOrServiceAreaIdOrLAI
               Byte array
               camel.T_cellGlobalIdOrServiceAreaIdOrLAI

           camel.changeOfLocationAlt  changeOfLocationAlt
               No value
               camel.ChangeOfLocationAlt

           camel.changeOfPositionControlInfo  changeOfPositionControlInfo
               Unsigned 32-bit integer
               camel.ChangeOfPositionControlInfo

           camel.chargeIndicator  chargeIndicator
               Byte array
               camel.ChargeIndicator

           camel.chargeNumber  chargeNumber
               Byte array
               camel.ChargeNumber

           camel.chargingCharacteristics  chargingCharacteristics
               Unsigned 32-bit integer
               camel.ChargingCharacteristics

           camel.chargingID  chargingID
               Byte array
               gsm_map_ms.GPRSChargingID

           camel.chargingResult  chargingResult
               Unsigned 32-bit integer
               camel.ChargingResult

           camel.chargingRollOver  chargingRollOver
               Unsigned 32-bit integer
               camel.ChargingRollOver

           camel.collectInformationAllowed  collectInformationAllowed
               No value
               camel.NULL

           camel.collectedDigits  collectedDigits
               No value
               camel.CollectedDigits

           camel.collectedInfo  collectedInfo
               Unsigned 32-bit integer
               camel.CollectedInfo

           camel.collectedInfoSpecificInfo  collectedInfoSpecificInfo
               No value
               camel.T_collectedInfoSpecificInfo

           camel.compoundGapCriteria  compoundGapCriteria
               No value
               camel.CompoundCriteria

           camel.conferenceTreatmentIndicator  conferenceTreatmentIndicator
               Byte array
               camel.OCTET_STRING_SIZE_1

           camel.connectedNumberTreatmentInd  connectedNumberTreatmentInd
               Unsigned 32-bit integer
               camel.ConnectedNumberTreatmentInd

           camel.continueWithArgumentArgExtension  continueWithArgumentArgExtension
               No value
               camel.ContinueWithArgumentArgExtension

           camel.controlType  controlType
               Unsigned 32-bit integer
               camel.ControlType

           camel.correlationID  correlationID
               Byte array
               camel.CorrelationID

           camel.criticality  criticality
               Unsigned 32-bit integer
               inap.CriticalityType

           camel.cug_Index  cug-Index
               Unsigned 32-bit integer
               gsm_map_ms.CUG_Index

           camel.cug_Interlock  cug-Interlock
               Byte array
               gsm_map_ms.CUG_Interlock

           camel.cug_OutgoingAccess  cug-OutgoingAccess
               No value
               camel.NULL

           camel.cwTreatmentIndicator  cwTreatmentIndicator
               Signed 32-bit integer
               camel.OCTET_STRING_SIZE_1

           camel.dTMFDigitsCompleted  dTMFDigitsCompleted
               Byte array
               camel.Digits

           camel.dTMFDigitsTimeOut  dTMFDigitsTimeOut
               Byte array
               camel.Digits

           camel.date  date
               Byte array
               camel.OCTET_STRING_SIZE_4

           camel.destinationAddress  destinationAddress
               Byte array
               camel.CalledPartyNumber

           camel.destinationReference  destinationReference
               Unsigned 32-bit integer
               inap.Integer4

           camel.destinationRoutingAddress  destinationRoutingAddress
               Unsigned 32-bit integer
               camel.DestinationRoutingAddress

           camel.destinationSubscriberNumber  destinationSubscriberNumber
               Byte array
               camel.CalledPartyBCDNumber

           camel.detachSpecificInformation  detachSpecificInformation
               No value
               camel.T_detachSpecificInformation

           camel.digit_value  Digit Value
               Unsigned 8-bit integer
               Digit Value

           camel.digitsResponse  digitsResponse
               Byte array
               camel.Digits

           camel.disconnectFromIPForbidden  disconnectFromIPForbidden
               Boolean
               camel.BOOLEAN

           camel.disconnectSpecificInformation  disconnectSpecificInformation
               No value
               camel.T_disconnectSpecificInformation

           camel.dpSpecificCriteria  dpSpecificCriteria
               Unsigned 32-bit integer
               camel.DpSpecificCriteria

           camel.dpSpecificCriteriaAlt  dpSpecificCriteriaAlt
               No value
               camel.DpSpecificCriteriaAlt

           camel.dpSpecificInfoAlt  dpSpecificInfoAlt
               No value
               camel.DpSpecificInfoAlt

           camel.duration  duration
               Signed 32-bit integer
               inap.Duration

           camel.e1  e1
               Unsigned 32-bit integer
               camel.INTEGER_0_8191

           camel.e2  e2
               Unsigned 32-bit integer
               camel.INTEGER_0_8191

           camel.e3  e3
               Unsigned 32-bit integer
               camel.INTEGER_0_8191

           camel.e4  e4
               Unsigned 32-bit integer
               camel.INTEGER_0_8191

           camel.e5  e5
               Unsigned 32-bit integer
               camel.INTEGER_0_8191

           camel.e6  e6
               Unsigned 32-bit integer
               camel.INTEGER_0_8191

           camel.e7  e7
               Unsigned 32-bit integer
               camel.INTEGER_0_8191

           camel.ectTreatmentIndicator  ectTreatmentIndicator
               Signed 32-bit integer
               camel.OCTET_STRING_SIZE_1

           camel.elapsedTime  elapsedTime
               Unsigned 32-bit integer
               camel.ElapsedTime

           camel.elapsedTimeRollOver  elapsedTimeRollOver
               Unsigned 32-bit integer
               camel.ElapsedTimeRollOver

           camel.elementaryMessageID  elementaryMessageID
               Unsigned 32-bit integer
               inap.Integer4

           camel.elementaryMessageIDs  elementaryMessageIDs
               Unsigned 32-bit integer
               camel.SEQUENCE_SIZE_1_bound__numOfMessageIDs_OF_Integer4

           camel.endOfReplyDigit  endOfReplyDigit
               Byte array
               camel.OCTET_STRING_SIZE_1_2

           camel.endUserAddress  endUserAddress
               No value
               camel.EndUserAddress

           camel.enhancedDialledServicesAllowed  enhancedDialledServicesAllowed
               No value
               camel.NULL

           camel.enteringCellGlobalId  enteringCellGlobalId
               Byte array
               gsm_map.CellGlobalIdOrServiceAreaIdFixedLength

           camel.enteringLocationAreaId  enteringLocationAreaId
               Byte array
               gsm_map.LAIFixedLength

           camel.enteringServiceAreaId  enteringServiceAreaId
               Byte array
               gsm_map.CellGlobalIdOrServiceAreaIdFixedLength

           camel.errcode  errcode
               Unsigned 32-bit integer
               camel.Code

           camel.errorTreatment  errorTreatment
               Unsigned 32-bit integer
               camel.ErrorTreatment

           camel.error_code_local  local
               Signed 32-bit integer
               ERROR code

           camel.eventSpecificInformationBCSM  eventSpecificInformationBCSM
               Unsigned 32-bit integer
               camel.EventSpecificInformationBCSM

           camel.eventSpecificInformationSMS  eventSpecificInformationSMS
               Unsigned 32-bit integer
               camel.EventSpecificInformationSMS

           camel.eventTypeBCSM  eventTypeBCSM
               Unsigned 32-bit integer
               camel.EventTypeBCSM

           camel.eventTypeSMS  eventTypeSMS
               Unsigned 32-bit integer
               camel.EventTypeSMS

           camel.ext_basicServiceCode  ext-basicServiceCode
               Unsigned 32-bit integer
               gsm_map.Ext_BasicServiceCode

           camel.ext_basicServiceCode2  ext-basicServiceCode2
               Unsigned 32-bit integer
               gsm_map.Ext_BasicServiceCode

           camel.extensionContainer  extensionContainer
               No value
               gsm_map.ExtensionContainer

           camel.extension_code_local  local
               Signed 32-bit integer
               Extension local code

           camel.extensions  extensions
               Unsigned 32-bit integer
               camel.Extensions

           camel.fCIBCCCAMELsequence1  fCIBCCCAMELsequence1
               No value
               camel.T_fci_fCIBCCCAMELsequence1

           camel.failureCause  failureCause
               Byte array
               camel.Cause

           camel.firstAnnouncementStarted  firstAnnouncementStarted
               No value
               camel.NULL

           camel.firstDigitTimeOut  firstDigitTimeOut
               Unsigned 32-bit integer
               camel.INTEGER_1_127

           camel.forwardServiceInteractionInd  forwardServiceInteractionInd
               No value
               camel.ForwardServiceInteractionInd

           camel.forwardedCall  forwardedCall
               No value
               camel.NULL

           camel.forwardingDestinationNumber  forwardingDestinationNumber
               Byte array
               camel.CalledPartyNumber

           camel.freeFormatData  freeFormatData
               Byte array
               camel.OCTET_STRING_SIZE_bound__minFCIBillingChargingDataLength_bound__maxFCIBillingChargingDataLength

           camel.gGSNAddress  gGSNAddress
               Byte array
               gsm_map_ms.GSN_Address

           camel.gPRSCause  gPRSCause
               Byte array
               camel.GPRSCause

           camel.gPRSEvent  gPRSEvent
               Unsigned 32-bit integer
               camel.SEQUENCE_SIZE_1_bound__numOfGPRSEvents_OF_GPRSEvent

           camel.gPRSEventSpecificInformation  gPRSEventSpecificInformation
               Unsigned 32-bit integer
               camel.GPRSEventSpecificInformation

           camel.gPRSEventType  gPRSEventType
               Unsigned 32-bit integer
               camel.GPRSEventType

           camel.gPRSMSClass  gPRSMSClass
               No value
               gsm_map_ms.GPRSMSClass

           camel.gapCriteria  gapCriteria
               Unsigned 32-bit integer
               camel.GapCriteria

           camel.gapIndicators  gapIndicators
               No value
               camel.GapIndicators

           camel.gapInterval  gapInterval
               Signed 32-bit integer
               inap.Interval

           camel.gapOnService  gapOnService
               No value
               camel.GapOnService

           camel.gapTreatment  gapTreatment
               Unsigned 32-bit integer
               camel.GapTreatment

           camel.general  general
               Signed 32-bit integer
               camel.GeneralProblem

           camel.genericNumbers  genericNumbers
               Unsigned 32-bit integer
               camel.GenericNumbers

           camel.geographicalInformation  geographicalInformation
               Byte array
               gsm_map_ms.GeographicalInformation

           camel.global  global
               Object Identifier
               camel.T_global

           camel.gmscAddress  gmscAddress
               Byte array
               gsm_map.ISDN_AddressString

           camel.gprsCause  gprsCause
               Byte array
               camel.GPRSCause

           camel.gsmSCFAddress  gsmSCFAddress
               Byte array
               gsm_map.ISDN_AddressString

           camel.highLayerCompatibility  highLayerCompatibility
               Byte array
               inap.HighLayerCompatibility

           camel.highLayerCompatibility2  highLayerCompatibility2
               Byte array
               inap.HighLayerCompatibility

           camel.holdTreatmentIndicator  holdTreatmentIndicator
               Signed 32-bit integer
               camel.OCTET_STRING_SIZE_1

           camel.iMEI  iMEI
               Byte array
               gsm_map.IMEI

           camel.iMSI  iMSI
               Byte array
               gsm_map.IMSI

           camel.iPSSPCapabilities  iPSSPCapabilities
               Byte array
               camel.IPSSPCapabilities

           camel.inbandInfo  inbandInfo
               No value
               camel.InbandInfo

           camel.informationToSend  informationToSend
               Unsigned 32-bit integer
               camel.InformationToSend

           camel.initialDPArgExtension  initialDPArgExtension
               No value
               camel.InitialDPArgExtension

           camel.initiatingEntity  initiatingEntity
               Unsigned 32-bit integer
               camel.InitiatingEntity

           camel.initiatorOfServiceChange  initiatorOfServiceChange
               Unsigned 32-bit integer
               camel.InitiatorOfServiceChange

           camel.integer  integer
               Unsigned 32-bit integer
               inap.Integer4

           camel.interDigitTimeOut  interDigitTimeOut
               Unsigned 32-bit integer
               camel.INTEGER_1_127

           camel.interDigitTimeout  interDigitTimeout
               Unsigned 32-bit integer
               camel.INTEGER_1_127

           camel.inter_MSCHandOver  inter-MSCHandOver
               No value
               camel.NULL

           camel.inter_PLMNHandOver  inter-PLMNHandOver
               No value
               camel.NULL

           camel.inter_SystemHandOver  inter-SystemHandOver
               No value
               camel.NULL

           camel.inter_SystemHandOverToGSM  inter-SystemHandOverToGSM
               No value
               camel.NULL

           camel.inter_SystemHandOverToUMTS  inter-SystemHandOverToUMTS
               No value
               camel.NULL

           camel.interruptableAnnInd  interruptableAnnInd
               Boolean
               camel.BOOLEAN

           camel.interval  interval
               Unsigned 32-bit integer
               camel.INTEGER_0_32767

           camel.invoke  invoke
               No value
               camel.Invoke

           camel.invokeID  invokeID
               Unsigned 32-bit integer
               camel.InvokeID

           camel.invokeId  invokeId
               Unsigned 32-bit integer
               camel.InvokeId

           camel.ipRoutingAddress  ipRoutingAddress
               Byte array
               camel.IPRoutingAddress

           camel.leavingCellGlobalId  leavingCellGlobalId
               Byte array
               gsm_map.CellGlobalIdOrServiceAreaIdFixedLength

           camel.leavingLocationAreaId  leavingLocationAreaId
               Byte array
               gsm_map.LAIFixedLength

           camel.leavingServiceAreaId  leavingServiceAreaId
               Byte array
               gsm_map.CellGlobalIdOrServiceAreaIdFixedLength

           camel.legActive  legActive
               Boolean
               camel.BOOLEAN

           camel.legID  legID
               Unsigned 32-bit integer
               inap.LegID

           camel.legIDToMove  legIDToMove
               Unsigned 32-bit integer
               inap.LegID

           camel.legOrCallSegment  legOrCallSegment
               Unsigned 32-bit integer
               camel.LegOrCallSegment

           camel.legToBeConnected  legToBeConnected
               Unsigned 32-bit integer
               inap.LegID

           camel.legToBeCreated  legToBeCreated
               Unsigned 32-bit integer
               inap.LegID

           camel.legToBeReleased  legToBeReleased
               Unsigned 32-bit integer
               inap.LegID

           camel.legToBeSplit  legToBeSplit
               Unsigned 32-bit integer
               inap.LegID

           camel.linkedId  linkedId
               Unsigned 32-bit integer
               camel.T_linkedId

           camel.local  local
               Signed 32-bit integer
               camel.T_local

           camel.locationAreaId  locationAreaId
               Byte array
               gsm_map.LAIFixedLength

           camel.locationInformation  locationInformation
               No value
               gsm_map_ms.LocationInformation

           camel.locationInformationGPRS  locationInformationGPRS
               No value
               camel.LocationInformationGPRS

           camel.locationInformationMSC  locationInformationMSC
               No value
               gsm_map_ms.LocationInformation

           camel.locationNumber  locationNumber
               Byte array
               camel.LocationNumber

           camel.long_QoS_format  long-QoS-format
               Byte array
               gsm_map_ms.Ext_QoS_Subscribed

           camel.lowLayerCompatibility  lowLayerCompatibility
               Byte array
               camel.LowLayerCompatibility

           camel.lowLayerCompatibility2  lowLayerCompatibility2
               Byte array
               camel.LowLayerCompatibility

           camel.mSISDN  mSISDN
               Byte array
               gsm_map.ISDN_AddressString

           camel.maxCallPeriodDuration  maxCallPeriodDuration
               Unsigned 32-bit integer
               camel.INTEGER_1_864000

           camel.maxElapsedTime  maxElapsedTime
               Unsigned 32-bit integer
               camel.INTEGER_1_86400

           camel.maxTransferredVolume  maxTransferredVolume
               Unsigned 32-bit integer
               camel.INTEGER_1_4294967295

           camel.maximumNbOfDigits  maximumNbOfDigits
               Unsigned 32-bit integer
               camel.INTEGER_1_30

           camel.maximumNumberOfDigits  maximumNumberOfDigits
               Unsigned 32-bit integer
               camel.INTEGER_1_30

           camel.messageContent  messageContent
               String
               camel.IA5String_SIZE_bound__minMessageContentLength_bound__maxMessageContentLength

           camel.messageID  messageID
               Unsigned 32-bit integer
               camel.MessageID

           camel.metDPCriteriaList  metDPCriteriaList
               Unsigned 32-bit integer
               camel.MetDPCriteriaList

           camel.metDPCriterionAlt  metDPCriterionAlt
               No value
               camel.MetDPCriterionAlt

           camel.midCallControlInfo  midCallControlInfo
               No value
               camel.MidCallControlInfo

           camel.midCallEvents  midCallEvents
               Unsigned 32-bit integer
               camel.T_omidCallEvents

           camel.minimumNbOfDigits  minimumNbOfDigits
               Unsigned 32-bit integer
               camel.INTEGER_1_30

           camel.minimumNumberOfDigits  minimumNumberOfDigits
               Unsigned 32-bit integer
               camel.INTEGER_1_30

           camel.miscCallInfo  miscCallInfo
               No value
               inap.MiscCallInfo

           camel.miscGPRSInfo  miscGPRSInfo
               No value
               inap.MiscCallInfo

           camel.monitorMode  monitorMode
               Unsigned 32-bit integer
               camel.MonitorMode

           camel.ms_Classmark2  ms-Classmark2
               Byte array
               gsm_map_ms.MS_Classmark2

           camel.mscAddress  mscAddress
               Byte array
               gsm_map.ISDN_AddressString

           camel.naOliInfo  naOliInfo
               Byte array
               camel.NAOliInfo

           camel.natureOfServiceChange  natureOfServiceChange
               Unsigned 32-bit integer
               camel.NatureOfServiceChange

           camel.negotiated_QoS  negotiated-QoS
               Unsigned 32-bit integer
               camel.GPRS_QoS

           camel.negotiated_QoS_Extension  negotiated-QoS-Extension
               No value
               camel.GPRS_QoS_Extension

           camel.newCallSegment  newCallSegment
               Unsigned 32-bit integer
               camel.CallSegmentID

           camel.nonCUGCall  nonCUGCall
               No value
               camel.NULL

           camel.none  none
               No value
               camel.NULL

           camel.number  number
               Byte array
               camel.Digits

           camel.numberOfBursts  numberOfBursts
               Unsigned 32-bit integer
               camel.INTEGER_1_3

           camel.numberOfDigits  numberOfDigits
               Unsigned 32-bit integer
               camel.NumberOfDigits

           camel.numberOfRepetitions  numberOfRepetitions
               Unsigned 32-bit integer
               camel.INTEGER_1_127

           camel.numberOfTonesInBurst  numberOfTonesInBurst
               Unsigned 32-bit integer
               camel.INTEGER_1_3

           camel.oAbandonSpecificInfo  oAbandonSpecificInfo
               No value
               camel.T_oAbandonSpecificInfo

           camel.oAnswerSpecificInfo  oAnswerSpecificInfo
               No value
               camel.T_oAnswerSpecificInfo

           camel.oCSIApplicable  oCSIApplicable
               No value
               camel.OCSIApplicable

           camel.oCalledPartyBusySpecificInfo  oCalledPartyBusySpecificInfo
               No value
               camel.T_oCalledPartyBusySpecificInfo

           camel.oChangeOfPositionSpecificInfo  oChangeOfPositionSpecificInfo
               No value
               camel.T_oChangeOfPositionSpecificInfo

           camel.oDisconnectSpecificInfo  oDisconnectSpecificInfo
               No value
               camel.T_oDisconnectSpecificInfo

           camel.oMidCallSpecificInfo  oMidCallSpecificInfo
               No value
               camel.T_oMidCallSpecificInfo

           camel.oNoAnswerSpecificInfo  oNoAnswerSpecificInfo
               No value
               camel.T_oNoAnswerSpecificInfo

           camel.oServiceChangeSpecificInfo  oServiceChangeSpecificInfo
               No value
               camel.T_oServiceChangeSpecificInfo

           camel.oTermSeizedSpecificInfo  oTermSeizedSpecificInfo
               No value
               camel.T_oTermSeizedSpecificInfo

           camel.o_smsFailureSpecificInfo  o-smsFailureSpecificInfo
               No value
               camel.T_o_smsFailureSpecificInfo

           camel.o_smsSubmissionSpecificInfo  o-smsSubmissionSpecificInfo
               No value
               camel.T_o_smsSubmissionSpecificInfo

           camel.offeredCamel4Functionalities  offeredCamel4Functionalities
               Byte array
               gsm_map_ms.OfferedCamel4Functionalities

           camel.opcode  opcode
               Unsigned 32-bit integer
               camel.Code

           camel.operation  operation
               Unsigned 32-bit integer
               camel.InvokeID

           camel.or_Call  or-Call
               No value
               camel.NULL

           camel.originalCalledPartyID  originalCalledPartyID
               Byte array
               camel.OriginalCalledPartyID

           camel.originationReference  originationReference
               Unsigned 32-bit integer
               inap.Integer4

           camel.pDPAddress  pDPAddress
               Byte array
               camel.T_pDPAddress

           camel.pDPContextEstablishmentAcknowledgementSpecificInformation  pDPContextEstablishmentAcknowledgementSpecificInformation
               No value
               camel.T_pDPContextEstablishmentAcknowledgementSpecificInformation

           camel.pDPContextEstablishmentSpecificInformation  pDPContextEstablishmentSpecificInformation
               No value
               camel.T_pDPContextEstablishmentSpecificInformation

           camel.pDPID  pDPID
               Byte array
               camel.PDPID

           camel.pDPInitiationType  pDPInitiationType
               Unsigned 32-bit integer
               camel.PDPInitiationType

           camel.pDPTypeNumber  pDPTypeNumber
               Byte array
               camel.T_pDPTypeNumber

           camel.pDPTypeOrganization  pDPTypeOrganization
               Byte array
               camel.T_pDPTypeOrganization

           camel.parameter  parameter
               No value
               camel.T_parameter

           camel.partyToCharge  partyToCharge
               Unsigned 32-bit integer
               camel.ReceivingSideID

           camel.pdpID  pdpID
               Byte array
               camel.PDPID

           camel.pdp_ContextchangeOfPositionSpecificInformation  pdp-ContextchangeOfPositionSpecificInformation
               No value
               camel.T_pdp_ContextchangeOfPositionSpecificInformation

           camel.present  present
               Signed 32-bit integer
               camel.T_linkedIdPresent

           camel.price  price
               Byte array
               camel.OCTET_STRING_SIZE_4

           camel.problem  problem
               Unsigned 32-bit integer
               camel.T_par_cancelFailedProblem

           camel.qualityOfService  qualityOfService
               No value
               camel.QualityOfService

           camel.rO_TimeGPRSIfNoTariffSwitch  rO-TimeGPRSIfNoTariffSwitch
               Unsigned 32-bit integer
               camel.INTEGER_0_255

           camel.rO_TimeGPRSIfTariffSwitch  rO-TimeGPRSIfTariffSwitch
               No value
               camel.T_rO_TimeGPRSIfTariffSwitch

           camel.rO_TimeGPRSSinceLastTariffSwitch  rO-TimeGPRSSinceLastTariffSwitch
               Unsigned 32-bit integer
               camel.INTEGER_0_255

           camel.rO_TimeGPRSTariffSwitchInterval  rO-TimeGPRSTariffSwitchInterval
               Unsigned 32-bit integer
               camel.INTEGER_0_255

           camel.rO_VolumeIfNoTariffSwitch  rO-VolumeIfNoTariffSwitch
               Unsigned 32-bit integer
               camel.INTEGER_0_255

           camel.rO_VolumeIfTariffSwitch  rO-VolumeIfTariffSwitch
               No value
               camel.T_rO_VolumeIfTariffSwitch

           camel.rO_VolumeSinceLastTariffSwitch  rO-VolumeSinceLastTariffSwitch
               Unsigned 32-bit integer
               camel.INTEGER_0_255

           camel.rO_VolumeTariffSwitchInterval  rO-VolumeTariffSwitchInterval
               Unsigned 32-bit integer
               camel.INTEGER_0_255

           camel.receivingSideID  receivingSideID
               Byte array
               camel.LegType

           camel.redirectingPartyID  redirectingPartyID
               Byte array
               camel.RedirectingPartyID

           camel.redirectionInformation  redirectionInformation
               Byte array
               inap.RedirectionInformation

           camel.reject  reject
               No value
               camel.Reject

           camel.releaseCause  releaseCause
               Byte array
               camel.Cause

           camel.releaseCauseValue  releaseCauseValue
               Byte array
               camel.Cause

           camel.releaseIfdurationExceeded  releaseIfdurationExceeded
               Boolean
               camel.BOOLEAN

           camel.requestAnnouncementCompleteNotification  requestAnnouncementCompleteNotification
               Boolean
               camel.BOOLEAN

           camel.requestAnnouncementStartedNotification  requestAnnouncementStartedNotification
               Boolean
               camel.BOOLEAN

           camel.requestedInformationList  requestedInformationList
               Unsigned 32-bit integer
               camel.RequestedInformationList

           camel.requestedInformationType  requestedInformationType
               Unsigned 32-bit integer
               camel.RequestedInformationType

           camel.requestedInformationTypeList  requestedInformationTypeList
               Unsigned 32-bit integer
               camel.RequestedInformationTypeList

           camel.requestedInformationValue  requestedInformationValue
               Unsigned 32-bit integer
               camel.RequestedInformationValue

           camel.requested_QoS  requested-QoS
               Unsigned 32-bit integer
               camel.GPRS_QoS

           camel.requested_QoS_Extension  requested-QoS-Extension
               No value
               camel.GPRS_QoS_Extension

           camel.resourceAddress  resourceAddress
               Unsigned 32-bit integer
               camel.T_resourceAddress

           camel.result  result
               No value
               camel.T_result

           camel.returnError  returnError
               No value
               camel.ReturnError

           camel.returnResult  returnResult
               No value
               camel.ReturnResult

           camel.routeNotPermitted  routeNotPermitted
               No value
               camel.NULL

           camel.routeSelectFailureSpecificInfo  routeSelectFailureSpecificInfo
               No value
               camel.T_routeSelectFailureSpecificInfo

           camel.routeingAreaIdentity  routeingAreaIdentity
               Byte array
               gsm_map_ms.RAIdentity

           camel.routeingAreaUpdate  routeingAreaUpdate
               No value
               camel.NULL

           camel.sCIBillingChargingCharacteristics  sCIBillingChargingCharacteristics
               Byte array
               camel.SCIBillingChargingCharacteristics

           camel.sCIGPRSBillingChargingCharacteristics  sCIGPRSBillingChargingCharacteristics
               Byte array
               camel.SCIGPRSBillingChargingCharacteristics

           camel.sGSNCapabilities  sGSNCapabilities
               Byte array
               camel.SGSNCapabilities

           camel.sMSCAddress  sMSCAddress
               Byte array
               gsm_map.ISDN_AddressString

           camel.sMSEvents  sMSEvents
               Unsigned 32-bit integer
               camel.SEQUENCE_SIZE_1_bound__numOfSMSEvents_OF_SMSEvent

           camel.sai_Present  sai-Present
               No value
               camel.NULL

           camel.scfID  scfID
               Byte array
               camel.ScfID

           camel.secondaryPDP_context  secondaryPDP-context
               No value
               camel.NULL

           camel.selectedLSAIdentity  selectedLSAIdentity
               Byte array
               gsm_map_ms.LSAIdentity

           camel.sendingSideID  sendingSideID
               Byte array
               camel.LegType

           camel.serviceAreaId  serviceAreaId
               Byte array
               gsm_map.CellGlobalIdOrServiceAreaIdFixedLength

           camel.serviceInteractionIndicatorsTwo  serviceInteractionIndicatorsTwo
               No value
               camel.ServiceInteractionIndicatorsTwo

           camel.serviceKey  serviceKey
               Unsigned 32-bit integer
               inap.ServiceKey

           camel.sgsn_Number  sgsn-Number
               Byte array
               gsm_map.ISDN_AddressString

           camel.short_QoS_format  short-QoS-format
               Byte array
               gsm_map_ms.QoS_Subscribed

           camel.smsReferenceNumber  smsReferenceNumber
               Byte array
               gsm_map_ch.CallReferenceNumber

           camel.srfConnection  srfConnection
               Unsigned 32-bit integer
               camel.CallSegmentID

           camel.srt.deltatime  Service Response Time
               Time duration
               DeltaTime between Request and Response

           camel.srt.deltatime22  Service Response Time
               Time duration
               DeltaTime between EventReport(Disconnect) and Release Call

           camel.srt.deltatime31  Service Response Time
               Time duration
               DeltaTime between InitialDP and Continue

           camel.srt.deltatime35  Service Response Time
               Time duration
               DeltaTime between ApplyCharginReport and ApplyCharging

           camel.srt.deltatime65  Service Response Time
               Time duration
               DeltaTime between InitialDPSMS and ContinueSMS

           camel.srt.deltatime75  Service Response Time
               Time duration
               DeltaTime between InitialDPGPRS and ContinueGPRS

           camel.srt.deltatime80  Service Response Time
               Time duration
               DeltaTime between EventReportGPRS and ContinueGPRS

           camel.srt.duplicate  Request Duplicate
               Unsigned 32-bit integer

           camel.srt.reqframe  Requested Frame
               Frame number
               SRT Request Frame

           camel.srt.request_number  Request Number
               Unsigned 64-bit integer

           camel.srt.rspframe  Response Frame
               Frame number
               SRT Response Frame

           camel.srt.session_id  Session Id
               Unsigned 32-bit integer

           camel.srt.sessiontime  Session duration
               Time duration
               Duration of the TCAP session

           camel.startDigit  startDigit
               Byte array
               camel.OCTET_STRING_SIZE_1_2

           camel.subscribed_QoS  subscribed-QoS
               Unsigned 32-bit integer
               camel.GPRS_QoS

           camel.subscribed_QoS_Extension  subscribed-QoS-Extension
               No value
               camel.GPRS_QoS_Extension

           camel.subscriberState  subscriberState
               Unsigned 32-bit integer
               gsm_map_ms.SubscriberState

           camel.supplement_to_long_QoS_format  supplement-to-long-QoS-format
               Byte array
               gsm_map_ms.Ext2_QoS_Subscribed

           camel.supportedCamelPhases  supportedCamelPhases
               Byte array
               gsm_map_ms.SupportedCamelPhases

           camel.suppressOutgoingCallBarring  suppressOutgoingCallBarring
               No value
               camel.NULL

           camel.suppress_D_CSI  suppress-D-CSI
               No value
               camel.NULL

           camel.suppress_N_CSI  suppress-N-CSI
               No value
               camel.NULL

           camel.suppress_O_CSI  suppress-O-CSI
               No value
               camel.NULL

           camel.suppress_T_CSI  suppress-T-CSI
               No value
               camel.NULL

           camel.suppressionOfAnnouncement  suppressionOfAnnouncement
               No value
               gsm_map_ch.SuppressionOfAnnouncement

           camel.tAnswerSpecificInfo  tAnswerSpecificInfo
               No value
               camel.T_tAnswerSpecificInfo

           camel.tBusySpecificInfo  tBusySpecificInfo
               No value
               camel.T_tBusySpecificInfo

           camel.tChangeOfPositionSpecificInfo  tChangeOfPositionSpecificInfo
               No value
               camel.T_tChangeOfPositionSpecificInfo

           camel.tDisconnectSpecificInfo  tDisconnectSpecificInfo
               No value
               camel.T_tDisconnectSpecificInfo

           camel.tMidCallSpecificInfo  tMidCallSpecificInfo
               No value
               camel.T_tMidCallSpecificInfo

           camel.tNoAnswerSpecificInfo  tNoAnswerSpecificInfo
               No value
               camel.T_tNoAnswerSpecificInfo

           camel.tPDataCodingScheme  tPDataCodingScheme
               Byte array
               camel.TPDataCodingScheme

           camel.tPProtocolIdentifier  tPProtocolIdentifier
               Byte array
               camel.TPProtocolIdentifier

           camel.tPShortMessageSpecificInfo  tPShortMessageSpecificInfo
               Byte array
               camel.TPShortMessageSpecificInfo

           camel.tPValidityPeriod  tPValidityPeriod
               Byte array
               camel.TPValidityPeriod

           camel.tServiceChangeSpecificInfo  tServiceChangeSpecificInfo
               No value
               camel.T_tServiceChangeSpecificInfo

           camel.t_smsDeliverySpecificInfo  t-smsDeliverySpecificInfo
               No value
               camel.T_t_smsDeliverySpecificInfo

           camel.t_smsFailureSpecificInfo  t-smsFailureSpecificInfo
               No value
               camel.T_t_smsFailureSpecificInfo

           camel.tariffSwitchInterval  tariffSwitchInterval
               Unsigned 32-bit integer
               camel.INTEGER_1_86400

           camel.text  text
               No value
               camel.T_text

           camel.time  time
               Byte array
               camel.OCTET_STRING_SIZE_2

           camel.timeAndTimeZone  timeAndTimeZone
               Byte array
               camel.TimeAndTimezone

           camel.timeAndTimezone  timeAndTimezone
               Byte array
               camel.TimeAndTimezone

           camel.timeDurationCharging  timeDurationCharging
               No value
               camel.T_timeDurationCharging

           camel.timeDurationChargingResult  timeDurationChargingResult
               No value
               camel.T_timeDurationChargingResult

           camel.timeGPRSIfNoTariffSwitch  timeGPRSIfNoTariffSwitch
               Unsigned 32-bit integer
               camel.INTEGER_0_86400

           camel.timeGPRSIfTariffSwitch  timeGPRSIfTariffSwitch
               No value
               camel.T_timeGPRSIfTariffSwitch

           camel.timeGPRSSinceLastTariffSwitch  timeGPRSSinceLastTariffSwitch
               Unsigned 32-bit integer
               camel.INTEGER_0_86400

           camel.timeGPRSTariffSwitchInterval  timeGPRSTariffSwitchInterval
               Unsigned 32-bit integer
               camel.INTEGER_0_86400

           camel.timeIfNoTariffSwitch  timeIfNoTariffSwitch
               Unsigned 32-bit integer
               camel.TimeIfNoTariffSwitch

           camel.timeIfTariffSwitch  timeIfTariffSwitch
               No value
               camel.TimeIfTariffSwitch

           camel.timeInformation  timeInformation
               Unsigned 32-bit integer
               camel.TimeInformation

           camel.timeSinceTariffSwitch  timeSinceTariffSwitch
               Unsigned 32-bit integer
               camel.INTEGER_0_864000

           camel.timerID  timerID
               Unsigned 32-bit integer
               camel.TimerID

           camel.timervalue  timervalue
               Unsigned 32-bit integer
               camel.TimerValue

           camel.tone  tone
               Boolean
               camel.BOOLEAN

           camel.toneDuration  toneDuration
               Unsigned 32-bit integer
               camel.INTEGER_1_20

           camel.toneID  toneID
               Unsigned 32-bit integer
               inap.Integer4

           camel.toneInterval  toneInterval
               Unsigned 32-bit integer
               camel.INTEGER_1_20

           camel.transferredVolume  transferredVolume
               Unsigned 32-bit integer
               camel.TransferredVolume

           camel.transferredVolumeRollOver  transferredVolumeRollOver
               Unsigned 32-bit integer
               camel.TransferredVolumeRollOver

           camel.type  type
               Unsigned 32-bit integer
               camel.Code

           camel.uu_Data  uu-Data
               No value
               gsm_map_ch.UU_Data

           camel.value  value
               No value
               camel.T_value

           camel.variableMessage  variableMessage
               No value
               camel.T_variableMessage

           camel.variableParts  variableParts
               Unsigned 32-bit integer
               camel.SEQUENCE_SIZE_1_5_OF_VariablePart

           camel.voiceBack  voiceBack
               Boolean
               camel.BOOLEAN

           camel.voiceInformation  voiceInformation
               Boolean
               camel.BOOLEAN

           camel.volumeIfNoTariffSwitch  volumeIfNoTariffSwitch
               Unsigned 32-bit integer
               camel.INTEGER_0_4294967295

           camel.volumeIfTariffSwitch  volumeIfTariffSwitch
               No value
               camel.T_volumeIfTariffSwitch

           camel.volumeSinceLastTariffSwitch  volumeSinceLastTariffSwitch
               Unsigned 32-bit integer
               camel.INTEGER_0_4294967295

           camel.volumeTariffSwitchInterval  volumeTariffSwitchInterval
               Unsigned 32-bit integer
               camel.INTEGER_0_4294967295

           camel.warningPeriod  warningPeriod
               Unsigned 32-bit integer
               camel.INTEGER_1_1200

   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
               Layout

           cast.layoutCount  LayoutCount
               Unsigned 32-bit integer
               LayoutCount.

           cast.levelPreferenceCount  LevelPreferenceCount
               Unsigned 32-bit integer
               LevelPreferenceCount.

           cast.lineInstance  Line Instance
               Unsigned 32-bit integer
               The display call plane associated with this call.

           cast.longTermPictureIndex  LongTermPictureIndex
               Unsigned 32-bit integer
               LongTermPictureIndex.

           cast.marker  Marker
               Unsigned 32-bit integer
               Marker value should ne zero.

           cast.maxBW  MaxBW
               Unsigned 32-bit integer
               MaxBW.

           cast.maxBitRate  MaxBitRate
               Unsigned 32-bit integer
               MaxBitRate.

           cast.maxConferences  MaxConferences
               Unsigned 32-bit integer
               MaxConferences.

           cast.maxStreams  MaxStreams
               Unsigned 32-bit integer
               32 bit unsigned integer indicating the maximum number of simultansous RTP duplex streams that the client can handle.

           cast.messageid  Message ID
               Unsigned 32-bit integer
               The function requested/done with this message.

           cast.millisecondPacketSize  MS/Packet
               Unsigned 32-bit integer
               The number of milliseconds of conversation in each packet

           cast.minBitRate  MinBitRate
               Unsigned 32-bit integer
               MinBitRate.

           cast.miscCommandType  MiscCommandType
               Unsigned 32-bit integer
               MiscCommandType

           cast.modelNumber  ModelNumber
               Unsigned 32-bit integer
               ModelNumber.

           cast.numberOfGOBs  NumberOfGOBs
               Unsigned 32-bit integer
               NumberOfGOBs.

           cast.numberOfMBs  NumberOfMBs
               Unsigned 32-bit integer
               NumberOfMBs.

           cast.originalCalledParty  Original Called Party
               String
               The number of the original calling party.

           cast.originalCalledPartyName  Original Called Party Name
               String
               name of the original person who placed the call.

           cast.originalCdpnRedirectReason  OriginalCdpnRedirectReason
               Unsigned 32-bit integer
               OriginalCdpnRedirectReason.

           cast.originalCdpnVoiceMailbox  OriginalCdpnVoiceMailbox
               String
               OriginalCdpnVoiceMailbox.

           cast.passThruPartyID  PassThruPartyID
               Unsigned 32-bit integer
               The pass thru party id

           cast.payloadCapability  PayloadCapability
               Unsigned 32-bit integer
               The payload capability for this media capability structure.

           cast.payloadType  PayloadType
               Unsigned 32-bit integer
               PayloadType.

           cast.payload_rfc_number  Payload_rfc_number
               Unsigned 32-bit integer
               Payload_rfc_number.

           cast.pictureFormatCount  PictureFormatCount
               Unsigned 32-bit integer
               PictureFormatCount.

           cast.pictureHeight  PictureHeight
               Unsigned 32-bit integer
               PictureHeight.

           cast.pictureNumber  PictureNumber
               Unsigned 32-bit integer
               PictureNumber.

           cast.pictureWidth  PictureWidth
               Unsigned 32-bit integer
               PictureWidth.

           cast.pixelAspectRatio  PixelAspectRatio
               Unsigned 32-bit integer
               PixelAspectRatio.

           cast.portNumber  Port Number
               Unsigned 32-bit integer
               A port number

           cast.precedenceDm  PrecedenceDm
               Unsigned 32-bit integer
               Precedence Domain.

           cast.precedenceLv  PrecedenceLv
               Unsigned 32-bit integer
               Precedence Level.

           cast.precedenceValue  Precedence
               Unsigned 32-bit integer
               Precedence value

           cast.privacy  Privacy
               Unsigned 32-bit integer
               Privacy.

           cast.protocolDependentData  ProtocolDependentData
               Unsigned 32-bit integer
               ProtocolDependentData.

           cast.recoveryReferencePictureCount  RecoveryReferencePictureCount
               Unsigned 32-bit integer
               RecoveryReferencePictureCount.

           cast.requestorIpAddress  RequestorIpAddress
               IPv4 address
               RequestorIpAddress

           cast.serviceNum  ServiceNum
               Unsigned 32-bit integer
               ServiceNum.

           cast.serviceNumber  ServiceNumber
               Unsigned 32-bit integer
               ServiceNumber.

           cast.serviceResourceCount  ServiceResourceCount
               Unsigned 32-bit integer
               ServiceResourceCount.

           cast.stationFriendlyName  StationFriendlyName
               String
               StationFriendlyName.

           cast.stationGUID  stationGUID
               String
               stationGUID.

           cast.stationIpAddress  StationIpAddress
               IPv4 address
               StationIpAddress

           cast.stillImageTransmission  StillImageTransmission
               Unsigned 32-bit integer
               StillImageTransmission.

           cast.temporalSpatialTradeOff  TemporalSpatialTradeOff
               Unsigned 32-bit integer
               TemporalSpatialTradeOff.

           cast.temporalSpatialTradeOffCapability  TemporalSpatialTradeOffCapability
               Unsigned 32-bit integer
               TemporalSpatialTradeOffCapability.

           cast.transmitOrReceive  TransmitOrReceive
               Unsigned 32-bit integer
               TransmitOrReceive

           cast.transmitPreference  TransmitPreference
               Unsigned 32-bit integer
               TransmitPreference.

           cast.version  Version
               Unsigned 32-bit integer
               The version in the keepalive version messages.

           cast.videoCapCount  VideoCapCount
               Unsigned 32-bit integer
               VideoCapCount.

   Catapult DCT2000 packet (dct2000)
           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.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.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
               RLC Logical Channel Type

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

           dct2000.sctpprim.addr  Address
               IPv4 address
               SCTPPrim IPv4 Address

           dct2000.sctpprim.addrv6  Address
               IPv6 address
               SCTPPrim IPv6 Address

           dct2000.sctpprim.dst  Destination Address
               IPv4 address
               SCTPPrim IPv4 Destination Address

           dct2000.sctpprim.dstv6  Destination Address
               IPv6 address
               SCTPPrim IPv6 Destination Address

           dct2000.sctprim.dstport  UDP Destination Port
               Unsigned 16-bit integer
               SCTPPrim Destination Port

           dct2000.timestamp  Timestamp
               Double-precision floating point
               File timestamp

           dct2000.tty  tty contents
               No value
               tty contents

           dct2000.tty-line  tty line
               String

           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
               pkix1explicit.AlgorithmIdentifier

           cmp.CAKeyUpdateInfoValue  CAKeyUpdateInfoValue
               No value
               cmp.CAKeyUpdateInfoValue

           cmp.CAProtEncCertValue  CAProtEncCertValue
               Unsigned 32-bit integer
               cmp.CAProtEncCertValue

           cmp.CMPCertificate  CMPCertificate
               Unsigned 32-bit integer
               cmp.CMPCertificate

           cmp.CertId  CertId
               No value
               crmf.CertId

           cmp.CertResponse  CertResponse
               No value
               cmp.CertResponse

           cmp.CertStatus  CertStatus
               No value
               cmp.CertStatus

           cmp.CertificateList  CertificateList
               No value
               pkix1explicit.CertificateList

           cmp.CertifiedKeyPair  CertifiedKeyPair
               No value
               cmp.CertifiedKeyPair

           cmp.Challenge  Challenge
               No value
               cmp.Challenge

           cmp.ConfirmWaitTimeValue  ConfirmWaitTimeValue
               String
               cmp.ConfirmWaitTimeValue

           cmp.CurrentCRLValue  CurrentCRLValue
               No value
               cmp.CurrentCRLValue

           cmp.DHBMParameter  DHBMParameter
               No value
               cmp.DHBMParameter

           cmp.EncKeyPairTypesValue  EncKeyPairTypesValue
               Unsigned 32-bit integer
               cmp.EncKeyPairTypesValue

           cmp.ImplicitConfirmValue  ImplicitConfirmValue
               No value
               cmp.ImplicitConfirmValue

           cmp.InfoTypeAndValue  InfoTypeAndValue
               No value
               cmp.InfoTypeAndValue

           cmp.KeyPairParamRepValue  KeyPairParamRepValue
               No value
               cmp.KeyPairParamRepValue

           cmp.KeyPairParamReqValue  KeyPairParamReqValue
               Object Identifier
               cmp.KeyPairParamReqValue

           cmp.OrigPKIMessageValue  OrigPKIMessageValue
               Unsigned 32-bit integer
               cmp.OrigPKIMessageValue

           cmp.PBMParameter  PBMParameter
               No value
               cmp.PBMParameter

           cmp.PKIFreeText_item  PKIFreeText item
               String
               cmp.UTF8String

           cmp.PKIMessage  PKIMessage
               No value
               cmp.PKIMessage

           cmp.PKIStatusInfo  PKIStatusInfo
               No value
               cmp.PKIStatusInfo

           cmp.POPODecKeyRespContent_item  POPODecKeyRespContent item
               Signed 32-bit integer
               cmp.INTEGER

           cmp.PollRepContent_item  PollRepContent item
               No value
               cmp.PollRepContent_item

           cmp.PollReqContent_item  PollReqContent item
               No value
               cmp.PollReqContent_item

           cmp.PreferredSymmAlgValue  PreferredSymmAlgValue
               No value
               cmp.PreferredSymmAlgValue

           cmp.RevDetails  RevDetails
               No value
               cmp.RevDetails

           cmp.RevPassphraseValue  RevPassphraseValue
               No value
               cmp.RevPassphraseValue

           cmp.SignKeyPairTypesValue  SignKeyPairTypesValue
               Unsigned 32-bit integer
               cmp.SignKeyPairTypesValue

           cmp.SuppLangTagsValue  SuppLangTagsValue
               Unsigned 32-bit integer
               cmp.SuppLangTagsValue

           cmp.SuppLangTagsValue_item  SuppLangTagsValue item
               String
               cmp.UTF8String

           cmp.UnsupportedOIDsValue  UnsupportedOIDsValue
               Unsigned 32-bit integer
               cmp.UnsupportedOIDsValue

           cmp.UnsupportedOIDsValue_item  UnsupportedOIDsValue item
               Object Identifier
               cmp.OBJECT_IDENTIFIER

           cmp.addInfoNotAvailable  addInfoNotAvailable
               Boolean

           cmp.badAlg  badAlg
               Boolean

           cmp.badCertId  badCertId
               Boolean

           cmp.badCertTemplate  badCertTemplate
               Boolean

           cmp.badDataFormat  badDataFormat
               Boolean

           cmp.badMessageCheck  badMessageCheck
               Boolean

           cmp.badPOP  badPOP
               Boolean

           cmp.badRecipientNonce  badRecipientNonce
               Boolean

           cmp.badRequest  badRequest
               Boolean

           cmp.badSenderNonce  badSenderNonce
               Boolean

           cmp.badSinceDate  badSinceDate
               String
               cmp.GeneralizedTime

           cmp.badTime  badTime
               Boolean

           cmp.body  body
               Unsigned 32-bit integer
               cmp.PKIBody

           cmp.caCerts  caCerts
               Unsigned 32-bit integer
               cmp.SEQUENCE_SIZE_1_MAX_OF_CMPCertificate

           cmp.caPubs  caPubs
               Unsigned 32-bit integer
               cmp.SEQUENCE_SIZE_1_MAX_OF_CMPCertificate

           cmp.cann  cann
               Unsigned 32-bit integer
               cmp.CertAnnContent

           cmp.ccp  ccp
               No value
               cmp.CertRepMessage

           cmp.ccr  ccr
               Unsigned 32-bit integer
               crmf.CertReqMessages

           cmp.certConf  certConf
               Unsigned 32-bit integer
               cmp.CertConfirmContent

           cmp.certConfirmed  certConfirmed
               Boolean

           cmp.certDetails  certDetails
               No value
               crmf.CertTemplate

           cmp.certHash  certHash
               Byte array
               cmp.OCTET_STRING

           cmp.certId  certId
               No value
               crmf.CertId

           cmp.certOrEncCert  certOrEncCert
               Unsigned 32-bit integer
               cmp.CertOrEncCert

           cmp.certReqId  certReqId
               Signed 32-bit integer
               cmp.INTEGER

           cmp.certRevoked  certRevoked
               Boolean

           cmp.certificate  certificate
               Unsigned 32-bit integer
               cmp.CMPCertificate

           cmp.certifiedKeyPair  certifiedKeyPair
               No value
               cmp.CertifiedKeyPair

           cmp.challenge  challenge
               Byte array
               cmp.OCTET_STRING

           cmp.checkAfter  checkAfter
               Signed 32-bit integer
               cmp.INTEGER

           cmp.ckuann  ckuann
               No value
               cmp.CAKeyUpdAnnContent

           cmp.cp  cp
               No value
               cmp.CertRepMessage

           cmp.cr  cr
               Unsigned 32-bit integer
               crmf.CertReqMessages

           cmp.crlDetails  crlDetails
               Unsigned 32-bit integer
               pkix1explicit.Extensions

           cmp.crlEntryDetails  crlEntryDetails
               Unsigned 32-bit integer
               pkix1explicit.Extensions

           cmp.crlann  crlann
               Unsigned 32-bit integer
               cmp.CRLAnnContent

           cmp.crls  crls
               Unsigned 32-bit integer
               cmp.SEQUENCE_SIZE_1_MAX_OF_CertificateList

           cmp.duplicateCertReq  duplicateCertReq
               Boolean

           cmp.encryptedCert  encryptedCert
               No value
               crmf.EncryptedValue

           cmp.error  error
               No value
               cmp.ErrorMsgContent

           cmp.errorCode  errorCode
               Signed 32-bit integer
               cmp.INTEGER

           cmp.errorDetails  errorDetails
               Unsigned 32-bit integer
               cmp.PKIFreeText

           cmp.extraCerts  extraCerts
               Unsigned 32-bit integer
               cmp.SEQUENCE_SIZE_1_MAX_OF_CMPCertificate

           cmp.failInfo  failInfo
               Byte array
               cmp.PKIFailureInfo

           cmp.freeText  freeText
               Unsigned 32-bit integer
               cmp.PKIFreeText

           cmp.generalInfo  generalInfo
               Unsigned 32-bit integer
               cmp.SEQUENCE_SIZE_1_MAX_OF_InfoTypeAndValue

           cmp.genm  genm
               Unsigned 32-bit integer
               cmp.GenMsgContent

           cmp.genp  genp
               Unsigned 32-bit integer
               cmp.GenRepContent

           cmp.hashAlg  hashAlg
               No value
               pkix1explicit.AlgorithmIdentifier

           cmp.hashVal  hashVal
               Byte array
               cmp.BIT_STRING

           cmp.header  header
               No value
               cmp.PKIHeader

           cmp.incorrectData  incorrectData
               Boolean

           cmp.infoType  infoType
               Object Identifier
               cmp.T_infoType

           cmp.infoValue  infoValue
               No value
               cmp.T_infoValue

           cmp.ip  ip
               No value
               cmp.CertRepMessage

           cmp.ir  ir
               Unsigned 32-bit integer
               crmf.CertReqMessages

           cmp.iterationCount  iterationCount
               Signed 32-bit integer
               cmp.INTEGER

           cmp.keyPairHist  keyPairHist
               Unsigned 32-bit integer
               cmp.SEQUENCE_SIZE_1_MAX_OF_CertifiedKeyPair

           cmp.krp  krp
               No value
               cmp.KeyRecRepContent

           cmp.krr  krr
               Unsigned 32-bit integer
               crmf.CertReqMessages

           cmp.kup  kup
               No value
               cmp.CertRepMessage

           cmp.kur  kur
               Unsigned 32-bit integer
               crmf.CertReqMessages

           cmp.mac  mac
               No value
               pkix1explicit.AlgorithmIdentifier

           cmp.messageTime  messageTime
               String
               cmp.GeneralizedTime

           cmp.missingTimeStamp  missingTimeStamp
               Boolean

           cmp.nested  nested
               Unsigned 32-bit integer
               cmp.NestedMessageContent

           cmp.newSigCert  newSigCert
               Unsigned 32-bit integer
               cmp.CMPCertificate

           cmp.newWithNew  newWithNew
               Unsigned 32-bit integer
               cmp.CMPCertificate

           cmp.newWithOld  newWithOld
               Unsigned 32-bit integer
               cmp.CMPCertificate

           cmp.notAuthorized  notAuthorized
               Boolean

           cmp.oldWithNew  oldWithNew
               Unsigned 32-bit integer
               cmp.CMPCertificate

           cmp.owf  owf
               No value
               pkix1explicit.AlgorithmIdentifier

           cmp.p10cr  p10cr
               No value
               cmp.NULL

           cmp.pKIStatusInfo  pKIStatusInfo
               No value
               cmp.PKIStatusInfo

           cmp.pkiconf  pkiconf
               No value
               cmp.PKIConfirmContent

           cmp.pollRep  pollRep
               Unsigned 32-bit integer
               cmp.PollRepContent

           cmp.pollReq  pollReq
               Unsigned 32-bit integer
               cmp.PollReqContent

           cmp.popdecc  popdecc
               Unsigned 32-bit integer
               cmp.POPODecKeyChallContent

           cmp.popdecr  popdecr
               Unsigned 32-bit integer
               cmp.POPODecKeyRespContent

           cmp.privateKey  privateKey
               No value
               crmf.EncryptedValue

           cmp.protection  protection
               Byte array
               cmp.PKIProtection

           cmp.protectionAlg  protectionAlg
               No value
               pkix1explicit.AlgorithmIdentifier

           cmp.publicationInfo  publicationInfo
               No value
               crmf.PKIPublicationInfo

           cmp.pvno  pvno
               Signed 32-bit integer
               cmp.T_pvno

           cmp.rann  rann
               No value
               cmp.RevAnnContent

           cmp.reason  reason
               Unsigned 32-bit integer
               cmp.PKIFreeText

           cmp.recipKID  recipKID
               Byte array
               pkix1implicit.KeyIdentifier

           cmp.recipNonce  recipNonce
               Byte array
               cmp.OCTET_STRING

           cmp.recipient  recipient
               Unsigned 32-bit integer
               pkix1implicit.GeneralName

           cmp.response  response
               Unsigned 32-bit integer
               cmp.SEQUENCE_OF_CertResponse

           cmp.revCerts  revCerts
               Unsigned 32-bit integer
               cmp.SEQUENCE_SIZE_1_MAX_OF_CertId

           cmp.rp  rp
               No value
               cmp.RevRepContent

           cmp.rr  rr
               Unsigned 32-bit integer
               cmp.RevReqContent

           cmp.rspInfo  rspInfo
               Byte array
               cmp.OCTET_STRING

           cmp.salt  salt
               Byte array
               cmp.OCTET_STRING

           cmp.sender  sender
               Unsigned 32-bit integer
               pkix1implicit.GeneralName

           cmp.senderKID  senderKID
               Byte array
               pkix1implicit.KeyIdentifier

           cmp.senderNonce  senderNonce
               Byte array
               cmp.OCTET_STRING

           cmp.signerNotTrusted  signerNotTrusted
               Boolean

           cmp.status  status
               Signed 32-bit integer
               cmp.PKIStatus

           cmp.statusInfo  statusInfo
               No value
               cmp.PKIStatusInfo

           cmp.statusString  statusString
               Unsigned 32-bit integer
               cmp.PKIFreeText

           cmp.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
               cmp.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
               cmp.GeneralizedTime

           cmp.witness  witness
               Byte array
               cmp.OCTET_STRING

           cmp.wrongAuthority  wrongAuthority
               Boolean

           cmp.wrongIntegrity  wrongIntegrity
               Boolean

           cmp.x509v3PKCert  x509v3PKCert
               No value
               pkix1explicit.Certificate

   Certificate Request Message Format (crmf)
           crmf.Attribute  Attribute
               No value
               pkix1explicit.Attribute

           crmf.AttributeTypeAndValue  AttributeTypeAndValue
               No value
               crmf.AttributeTypeAndValue

           crmf.CertId  CertId
               No value
               crmf.CertId

           crmf.CertReqMsg  CertReqMsg
               No value
               crmf.CertReqMsg

           crmf.CertRequest  CertRequest
               No value
               crmf.CertRequest

           crmf.EncKeyWithID  EncKeyWithID
               No value
               crmf.EncKeyWithID

           crmf.PBMParameter  PBMParameter
               No value
               crmf.PBMParameter

           crmf.ProtocolEncrKey  ProtocolEncrKey
               No value
               crmf.ProtocolEncrKey

           crmf.SinglePubInfo  SinglePubInfo
               No value
               crmf.SinglePubInfo

           crmf.UTF8Pairs  UTF8Pairs
               String
               crmf.UTF8Pairs

           crmf.action  action
               Signed 32-bit integer
               crmf.T_action

           crmf.agreeMAC  agreeMAC
               No value
               crmf.PKMACValue

           crmf.algId  algId
               No value
               pkix1explicit.AlgorithmIdentifier

           crmf.algorithmIdentifier  algorithmIdentifier
               No value
               pkix1explicit.AlgorithmIdentifier

           crmf.archiveRemGenPrivKey  archiveRemGenPrivKey
               Boolean
               crmf.BOOLEAN

           crmf.attributes  attributes
               Unsigned 32-bit integer
               crmf.Attributes

           crmf.authInfo  authInfo
               Unsigned 32-bit integer
               crmf.T_authInfo

           crmf.certReq  certReq
               No value
               crmf.CertRequest

           crmf.certReqId  certReqId
               Signed 32-bit integer
               crmf.INTEGER

           crmf.certTemplate  certTemplate
               No value
               crmf.CertTemplate

           crmf.controls  controls
               Unsigned 32-bit integer
               crmf.Controls

           crmf.dhMAC  dhMAC
               Byte array
               crmf.BIT_STRING

           crmf.encSymmKey  encSymmKey
               Byte array
               crmf.BIT_STRING

           crmf.encValue  encValue
               Byte array
               crmf.BIT_STRING

           crmf.encryptedKey  encryptedKey
               No value
               cms.EnvelopedData

           crmf.encryptedPrivKey  encryptedPrivKey
               Unsigned 32-bit integer
               crmf.EncryptedKey

           crmf.encryptedValue  encryptedValue
               No value
               crmf.EncryptedValue

           crmf.envelopedData  envelopedData
               No value
               cms.EnvelopedData

           crmf.extensions  extensions
               Unsigned 32-bit integer
               pkix1explicit.Extensions

           crmf.generalName  generalName
               Unsigned 32-bit integer
               pkix1implicit.GeneralName

           crmf.identifier  identifier
               Unsigned 32-bit integer
               crmf.T_identifier

           crmf.intendedAlg  intendedAlg
               No value
               pkix1explicit.AlgorithmIdentifier

           crmf.issuer  issuer
               Unsigned 32-bit integer
               pkix1explicit.Name

           crmf.issuerUID  issuerUID
               Byte array
               pkix1explicit.UniqueIdentifier

           crmf.iterationCount  iterationCount
               Signed 32-bit integer
               crmf.INTEGER

           crmf.keyAgreement  keyAgreement
               Unsigned 32-bit integer
               crmf.POPOPrivKey

           crmf.keyAlg  keyAlg
               No value
               pkix1explicit.AlgorithmIdentifier

           crmf.keyEncipherment  keyEncipherment
               Unsigned 32-bit integer
               crmf.POPOPrivKey

           crmf.keyGenParameters  keyGenParameters
               Byte array
               crmf.KeyGenParameters

           crmf.mac  mac
               No value
               pkix1explicit.AlgorithmIdentifier

           crmf.notAfter  notAfter
               Unsigned 32-bit integer
               pkix1explicit.Time

           crmf.notBefore  notBefore
               Unsigned 32-bit integer
               pkix1explicit.Time

           crmf.owf  owf
               No value
               pkix1explicit.AlgorithmIdentifier

           crmf.popo  popo
               Unsigned 32-bit integer
               crmf.ProofOfPossession

           crmf.poposkInput  poposkInput
               No value
               crmf.POPOSigningKeyInput

           crmf.privateKey  privateKey
               No value
               crmf.PrivateKeyInfo

           crmf.privateKeyAlgorithm  privateKeyAlgorithm
               No value
               pkix1explicit.AlgorithmIdentifier

           crmf.pubInfos  pubInfos
               Unsigned 32-bit integer
               crmf.SEQUENCE_SIZE_1_MAX_OF_SinglePubInfo

           crmf.pubLocation  pubLocation
               Unsigned 32-bit integer
               pkix1implicit.GeneralName

           crmf.pubMethod  pubMethod
               Signed 32-bit integer
               crmf.T_pubMethod

           crmf.publicKey  publicKey
               No value
               pkix1explicit.SubjectPublicKeyInfo

           crmf.publicKeyMAC  publicKeyMAC
               No value
               crmf.PKMACValue

           crmf.raVerified  raVerified
               No value
               crmf.NULL

           crmf.regInfo  regInfo
               Unsigned 32-bit integer
               crmf.SEQUENCE_SIZE_1_MAX_OF_AttributeTypeAndValue

           crmf.salt  salt
               Byte array
               crmf.OCTET_STRING

           crmf.sender  sender
               Unsigned 32-bit integer
               pkix1implicit.GeneralName

           crmf.serialNumber  serialNumber
               Signed 32-bit integer
               crmf.INTEGER

           crmf.signature  signature
               No value
               crmf.POPOSigningKey

           crmf.signingAlg  signingAlg
               No value
               pkix1explicit.AlgorithmIdentifier

           crmf.string  string
               String
               crmf.UTF8String

           crmf.subject  subject
               Unsigned 32-bit integer
               pkix1explicit.Name

           crmf.subjectUID  subjectUID
               Byte array
               pkix1explicit.UniqueIdentifier

           crmf.subsequentMessage  subsequentMessage
               Signed 32-bit integer
               crmf.SubsequentMessage

           crmf.symmAlg  symmAlg
               No value
               pkix1explicit.AlgorithmIdentifier

           crmf.thisMessage  thisMessage
               Byte array
               crmf.BIT_STRING

           crmf.type  type
               Object Identifier
               crmf.T_type

           crmf.type.oid  Type
               String
               Type of AttributeTypeAndValue

           crmf.validity  validity
               No value
               crmf.OptionalValidity

           crmf.value  value
               No value
               crmf.T_value

           crmf.valueHint  valueHint
               Byte array
               crmf.OCTET_STRING

           crmf.version  version
               Signed 32-bit integer
               pkix1explicit.Version

   Charging ASE (chargingase)
           charging_ase.ChargingMessageType  ChargingMessageType
               Unsigned 32-bit integer
               charging_ase.ChargingMessageType

           charging_ase.CommunicationChargeCurrency  CommunicationChargeCurrency
               No value
               charging_ase.CommunicationChargeCurrency

           charging_ase.CommunicationChargePulse  CommunicationChargePulse
               No value
               charging_ase.CommunicationChargePulse

           charging_ase.ExtensionField  ExtensionField
               No value
               charging_ase.ExtensionField

           charging_ase.NetworkIdentification  NetworkIdentification
               Object Identifier
               charging_ase.NetworkIdentification

           charging_ase.accepted  accepted
               Boolean

           charging_ase.acknowledgementIndicators  acknowledgementIndicators
               Byte array
               charging_ase.T_acknowledgementIndicators

           charging_ase.addOnChargeCurrency  addOnChargeCurrency
               No value
               charging_ase.CurrencyFactorScale

           charging_ase.addOnChargePulse  addOnChargePulse
               Byte array
               charging_ase.PulseUnits

           charging_ase.addOncharge  addOncharge
               Unsigned 32-bit integer
               charging_ase.T_addOncharge

           charging_ase.aocrg  aocrg
               No value
               charging_ase.AddOnChargingInformation

           charging_ase.callAttemptChargeCurrency  callAttemptChargeCurrency
               No value
               charging_ase.CurrencyFactorScale

           charging_ase.callAttemptChargePulse  callAttemptChargePulse
               Byte array
               charging_ase.PulseUnits

           charging_ase.callAttemptChargesApplicable  callAttemptChargesApplicable
               Boolean

           charging_ase.callSetupChargeCurrency  callSetupChargeCurrency
               No value
               charging_ase.CurrencyFactorScale

           charging_ase.callSetupChargePulse  callSetupChargePulse
               Byte array
               charging_ase.PulseUnits

           charging_ase.chargeUnitTimeInterval  chargeUnitTimeInterval
               Byte array
               charging_ase.ChargeUnitTimeInterval

           charging_ase.chargingControlIndicators  chargingControlIndicators
               Byte array
               charging_ase.ChargingControlIndicators

           charging_ase.chargingTariff  chargingTariff
               Unsigned 32-bit integer
               charging_ase.T_chargingTariff

           charging_ase.communicationChargeSequenceCurrency  communicationChargeSequenceCurrency
               Unsigned 32-bit integer
               charging_ase.SEQUENCE_SIZE_minCommunicationTariffNum_maxCommunicationTariffNum_OF_CommunicationChargeCurrency

           charging_ase.communicationChargeSequencePulse  communicationChargeSequencePulse
               Unsigned 32-bit integer
               charging_ase.SEQUENCE_SIZE_minCommunicationTariffNum_maxCommunicationTariffNum_OF_CommunicationChargePulse

           charging_ase.crga  crga
               No value
               charging_ase.ChargingAcknowledgementInformation

           charging_ase.crgt  crgt
               No value
               charging_ase.ChargingTariffInformation

           charging_ase.criticality  criticality
               Unsigned 32-bit integer
               charging_ase.CriticalityType

           charging_ase.currency  currency
               Unsigned 32-bit integer
               charging_ase.Currency

           charging_ase.currencyFactor  currencyFactor
               Unsigned 32-bit integer
               charging_ase.CurrencyFactor

           charging_ase.currencyFactorScale  currencyFactorScale
               No value
               charging_ase.CurrencyFactorScale

           charging_ase.currencyScale  currencyScale
               Signed 32-bit integer
               charging_ase.CurrencyScale

           charging_ase.currentTariffCurrency  currentTariffCurrency
               No value
               charging_ase.TariffCurrencyFormat

           charging_ase.currentTariffPulse  currentTariffPulse
               No value
               charging_ase.TariffPulseFormat

           charging_ase.delayUntilStart  delayUntilStart
               Boolean

           charging_ase.destinationIdentification  destinationIdentification
               No value
               charging_ase.ChargingReferenceIdentification

           charging_ase.extensions  extensions
               Unsigned 32-bit integer
               charging_ase.SEQUENCE_SIZE_1_numOfExtensions_OF_ExtensionField

           charging_ase.global  global
               Object Identifier
               charging_ase.OBJECT_IDENTIFIER

           charging_ase.immediateChangeOfActuallyAppliedTariff  immediateChangeOfActuallyAppliedTariff
               Boolean

           charging_ase.local  local
               Signed 32-bit integer
               charging_ase.INTEGER

           charging_ase.networkIdentification  networkIdentification
               Object Identifier
               charging_ase.NetworkIdentification

           charging_ase.networkOperators  networkOperators
               Unsigned 32-bit integer
               charging_ase.SEQUENCE_SIZE_1_maxNetworkOperators_OF_NetworkIdentification

           charging_ase.nextTariffCurrency  nextTariffCurrency
               No value
               charging_ase.TariffCurrencyFormat

           charging_ase.nextTariffPulse  nextTariffPulse
               No value
               charging_ase.TariffPulseFormat

           charging_ase.non-cyclicTariff  non-cyclicTariff
               Boolean

           charging_ase.oneTimeCharge  oneTimeCharge
               Boolean

           charging_ase.originationIdentification  originationIdentification
               No value
               charging_ase.ChargingReferenceIdentification

           charging_ase.pulseUnits  pulseUnits
               Byte array
               charging_ase.PulseUnits

           charging_ase.referenceID  referenceID
               Unsigned 32-bit integer
               charging_ase.ReferenceID

           charging_ase.start  start
               No value
               charging_ase.StartCharging

           charging_ase.stop  stop
               No value
               charging_ase.StopCharging

           charging_ase.stopIndicators  stopIndicators
               Byte array
               charging_ase.T_stopIndicators

           charging_ase.subTariffControl  subTariffControl
               Byte array
               charging_ase.SubTariffControl

           charging_ase.subscriberCharge  subscriberCharge
               Boolean

           charging_ase.tariffControlIndicators  tariffControlIndicators
               Byte array
               charging_ase.T_tariffControlIndicators

           charging_ase.tariffCurrency  tariffCurrency
               No value
               charging_ase.TariffCurrency

           charging_ase.tariffDuration  tariffDuration
               Unsigned 32-bit integer
               charging_ase.TariffDuration

           charging_ase.tariffPulse  tariffPulse
               No value
               charging_ase.TariffPulse

           charging_ase.tariffSwitchCurrency  tariffSwitchCurrency
               No value
               charging_ase.TariffSwitchCurrency

           charging_ase.tariffSwitchPulse  tariffSwitchPulse
               No value
               charging_ase.TariffSwitchPulse

           charging_ase.tariffSwitchoverTime  tariffSwitchoverTime
               Byte array
               charging_ase.TariffSwitchoverTime

           charging_ase.type  type
               Unsigned 32-bit integer
               charging_ase.Code

           charging_ase.value  value
               No value
               charging_ase.T_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
               Chain Position

           fw1.direction  Direction
               String
               Direction

           fw1.interface  Interface
               String
               Interface

           fw1.type  Type
               Unsigned 16-bit integer

           fw1.uuid  UUID
               Unsigned 32-bit integer
               UUID

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

           cmpp.Msg_Content  Message Content
               String
               Message Content

           cmpp.Msg_Fmt  Message Format
               Unsigned 8-bit integer
               Message Format

           cmpp.Msg_Id  Msg_Id
               Unsigned 64-bit integer
               Message ID

           cmpp.Msg_Id.ismg_code  ISMG Code
               Unsigned 32-bit integer
               ISMG Code, bit 38 ~ 17

           cmpp.Msg_Id.sequence_id  Msg_Id sequence Id
               Unsigned 16-bit integer
               Msg_Id sequence Id, bit 16 ~ 1

           cmpp.Msg_Id.timestamp  Timestamp
               String
               Timestamp MM/DD HH:MM:SS Bit 64 ~ 39

           cmpp.Msg_Length  Message length
               Unsigned 8-bit integer
               SMS Message length, ASCII must be <= 160 bytes, other must be <= 140 bytes

           cmpp.Report.SMSC_sequence  SMSC_sequence
               Unsigned 32-bit integer
               Sequence number

           cmpp.Sequence_Id  Sequence Id
               Unsigned 32-bit integer
               Sequence Id of the CMPP messages

           cmpp.Servicd_Id  Service ID
               String
               Service ID, a mix of characters, numbers and symbol

           cmpp.TP_pId  TP pId
               Unsigned 8-bit integer
               GSM TP pId Field

           cmpp.TP_udhi  TP udhi
               Unsigned 8-bit integer
               GSM TP udhi field

           cmpp.Total_Length  Total Length
               Unsigned 32-bit integer
               Total length of the CMPP PDU.

           cmpp.Version  Version
               String
               CMPP Version

           cmpp.connect.AuthenticatorSource  Authenticator Source
               String
               Authenticator source, MD5(Source_addr + 9 zero + shared secret + timestamp)

           cmpp.connect.Source_Addr  Source Addr
               String
               Source Address, the SP_Id

           cmpp.connect.Timestamp  Timestamp
               String
               Timestamp MM/DD HH:MM:SS

           cmpp.connect_resp.AuthenticatorISMG  SIMG Authenticate result
               String
               Authenticator result, MD5(Status + AuthenticatorSource + shared secret)

           cmpp.connect_resp.Status  Connect Response Status
               Unsigned 32-bit integer
               Response Status, Value higher then 4 means other error

           cmpp.deliver.Dest_Id  Destination ID
               String
               SP Service ID or server number

           cmpp.deliver.Registered_Delivery  Deliver Report
               Boolean
               The message is a deliver report if this value = 1

           cmpp.deliver.Report  Detail Deliver Report
               No value
               The detail report

           cmpp.deliver.Report.Done_time  Done_time
               String
               Format YYMMDDHHMM

           cmpp.deliver.Report.Status  Deliver Status
               String
               Deliver Status

           cmpp.deliver.Report.Submit_time  Submit_time
               String
               Format YYMMDDHHMM

           cmpp.deliver.Src_terminal_Id  Src_terminal_Id
               String
               Source MSISDN number, if it is deliver report, this will be the CMPP_SUBMIT destination number

           cmpp.deliver.Src_terminal_type  Fake source terminal type
               Boolean
               Type of the source terminal, can be 0 (real) or 1 (fake)

           cmpp.deliver_resp.Result  Result
               Unsigned 32-bit integer
               Deliver Result

           cmpp.submit.At_time  Send time
               String
               Message send time, format following SMPP 3.3

           cmpp.submit.DestUsr_tl  Destination Address Count
               Unsigned 8-bit integer
               Number of destination address, must smaller then 100

           cmpp.submit.Dest_terminal_type  Fake Destination Terminal
               Boolean
               destination terminal type, 0 is real, 1 is fake

           cmpp.submit.FeeCode  Fee Code
               String
               Fee Code

           cmpp.submit.FeeType  Fee Type
               String
               Fee Type

           cmpp.submit.Fee_UserType  Charging Informations
               Unsigned 8-bit integer
               Charging Informations, if value is 3, this field will not be used

           cmpp.submit.Fee_terminal_Id  Fee Terminal ID
               String
               Fee Terminal ID, Valid only when Fee_UserType is 3

           cmpp.submit.Fee_terminal_type  Fake Fee Terminal
               Boolean
               Fee terminal type, 0 is real, 1 is fake

           cmpp.submit.Msg_level  Message Level
               Unsigned 8-bit integer
               Message Level

           cmpp.submit.Msg_src  Message Source SP_Id
               String
               Message source SP ID

           cmpp.submit.Pk_number  Part Number
               Unsigned 8-bit integer
               Part number of the message with the same Msg_Id, start from 1

           cmpp.submit.Pk_total  Number of Part
               Unsigned 8-bit integer
               Total number of parts of the message with the same Msg_Id, start from 1

           cmpp.submit.Registered_Delivery  Registered Delivery
               Boolean
               Registered Delivery flag

           cmpp.submit.Src_Id  Source ID
               String
               This value matches SMPP submit_sm source_addr field

           cmpp.submit.Valld_Time  Valid time
               String
               Message Valid Time, format follow SMPP 3.3

           cmpp.submit_resp.Result  Result
               Unsigned 32-bit integer
               Submit Result

   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.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
               Group Destination Address

           cgmp.type  Type
               Unsigned 8-bit integer

           cgmp.usa  Unicast Source Address
               6-byte Hardware (MAC) Address
               Unicast Source Address

           cgmp.version  Version
               Unsigned 8-bit integer

   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
               Reserved

           hsrp.state  State
               Unsigned 8-bit integer
               The current state of the router sending the message

           hsrp.version  Version
               Unsigned 8-bit integer
               The version of the HSRP messages

           hsrp.virt_ip  Virtual IP Address
               IPv4 address
               The virtual IP address used by this group

           hsrp2._md5_algorithm  MD5 Algorithm
               Unsigned 8-bit integer
               Hash Algorithm used by this group

           hsrp2._md5_flags  MD5 Flags
               Unsigned 8-bit integer
               Undefined

           hsrp2.active_groups  Active Groups
               Unsigned 16-bit integer
               Active group number which becomes the active router myself

           hsrp2.auth_data  Authentication Data
               String
               Contains a clear-text 8 character reused password

           hsrp2.group  Group
               Unsigned 16-bit integer
               This field identifies the standby group

           hsrp2.group_state_tlv  Group State TLV
               Unsigned 8-bit integer
               Group State TLV

           hsrp2.hellotime  Hellotime
               Unsigned 32-bit integer
               The approximate period between the Hello messages that the router sends

           hsrp2.holdtime  Holdtime
               Unsigned 32-bit integer
               Time that the current Hello message should be considered valid

           hsrp2.identifier  Identifier
               6-byte Hardware (MAC) Address
               BIA value of a sender interafce

           hsrp2.interface_state_tlv  Interface State TLV
               Unsigned 8-bit integer
               Interface State TLV

           hsrp2.ipversion  IP Ver.
               Unsigned 8-bit integer
               The IP protocol version used in this hsrp message

           hsrp2.md5_auth_data  MD5 Authentication Data
               Unsigned 32-bit integer
               MD5 digest string is contained.

           hsrp2.md5_auth_tlv  MD5 Authentication TLV
               Unsigned 8-bit integer
               MD5 Authentication TLV

           hsrp2.md5_key_id  MD5 Key ID
               Unsigned 32-bit integer
               This field contains Key chain ID

           hsrp2.opcode  Op Code
               Unsigned 8-bit integer
               The type of message contained in this packet

           hsrp2.passive_groups  Passive Groups
               Unsigned 16-bit integer
               Standby group number which doesn't become the 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
               Text Authentication TLV

           hsrp2.version  Version
               Unsigned 8-bit integer
               The version of the HSRP messages

           hsrp2.virt_ip  Virtual IP Address
               IPv4 address
               The virtual IP address used by this group

           hsrp2.virt_ip_v6  Virtual IPv6 Address
               IPv6 address
               The virtual IPv6 address used by this group

   Cisco ISL (isl)
           isl.addr  Source or Destination Address
               6-byte Hardware (MAC) Address
               Source or Destination Hardware Address

           isl.bpdu  BPDU
               Boolean
               BPDU indicator

           isl.crc  CRC
               Unsigned 32-bit integer
               CRC field of encapsulated frame

           isl.dst  Destination
               Byte array
               Destination Address

           isl.dst_route_desc  Destination route descriptor
               Unsigned 16-bit integer
               Route descriptor to be used for forwarding

           isl.esize  Esize
               Unsigned 8-bit integer
               Frame size for frames less than 64 bytes

           isl.explorer  Explorer
               Boolean
               Explorer

           isl.fcs_not_incl  FCS Not Included
               Boolean
               FCS not included

           isl.hsa  HSA
               Unsigned 24-bit integer
               High bits of source address

           isl.index  Index
               Unsigned 16-bit integer
               Port index of packet source

           isl.len  Length
               Unsigned 16-bit integer

           isl.src  Source
               6-byte Hardware (MAC) Address
               Source Hardware Address

           isl.src_route_desc  Source-route descriptor
               Unsigned 16-bit integer
               Route descriptor to be used for source learning

           isl.src_vlan_id  Source VLAN ID
               Unsigned 16-bit integer
               Source Virtual LAN ID

           isl.trailer  Trailer
               Byte array
               Ethernet Trailer or Checksum

           isl.type  Type
               Unsigned 8-bit integer
               Type

           isl.user  User
               Unsigned 8-bit integer
               User-defined bits

           isl.user_eth  User
               Unsigned 8-bit integer
               Priority (for Ethernet)

           isl.vlan_id  VLAN ID
               Unsigned 16-bit integer
               Virtual LAN ID

   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.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.bgpnexthop  BGPNextHop
               IPv4 address
               BGP Router Nexthop

           cflow.bgpnexthopv6  BGPNextHop
               IPv6 address
               BGP Router Nexthop

           cflow.biflow_direction  Biflow Direction
               Unsigned 8-bit integer
               Biflow Direction

           cflow.collector_addr  CollectorAddr
               IPv4 address
               Flow Collector Address

           cflow.collector_addr_v6  CollectorAddr
               IPv6 address
               Flow Collector Address

           cflow.collector_port  CollectorPort
               Unsigned 16-bit integer
               Flow Collector Port

           cflow.common_properties_id  Common Properties Id
               Unsigned 64-bit integer
               Common Properties Id

           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.direction  Direction
               Unsigned 8-bit integer
               Direction

           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
               Destination 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.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.export_interface  ExportInterface
               Unsigned 32-bit integer
               Export Interface

           cflow.export_protocol_version  ExportProtocolVersion
               Unsigned 8-bit integer
               Export Protocol Version

           cflow.exporter_addr  ExporterAddr
               IPv4 address
               Flow Exporter Address

           cflow.exporter_addr_v6  ExporterAddr
               IPv6 address
               Flow Exporter Address

           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.flags  Export Flags
               Unsigned 8-bit integer
               CFlow Flags

           cflow.flow_active_timeout  Flow active timeout
               Unsigned 16-bit integer
               Flow active timeout

           cflow.flow_class  FlowClass
               Unsigned 8-bit integer
               Flow Class

           cflow.flow_end_reason  Flow End Reason
               Unsigned 8-bit integer
               Flow End Reason

           cflow.flow_exporter  FlowExporter
               Byte array
               Flow Exporter

           cflow.flow_id  Flow Id
               Unsigned 64-bit integer
               Flow Id

           cflow.flow_inactive_timeout  Flow inactive timeout
               Unsigned 16-bit integer
               Flow inactive timeout

           cflow.flows  Flows
               Unsigned 32-bit integer
               Flows Aggregated in PDU

           cflow.flowset_id  FlowSet Id
               Unsigned 16-bit integer
               FlowSet Id

           cflow.flowset_length  FlowSet Length
               Unsigned 16-bit integer
               FlowSet length

           cflow.flowsexp  FlowsExp
               Unsigned 32-bit integer
               Flows exported

           cflow.forwarding_code  ForwdCode
               Unsigned 8-bit integer
               Forwarding Code

           cflow.forwarding_status  ForwdStat
               Unsigned 8-bit integer
               Forwarding Status

           cflow.fragment_offset  Fragment Offset
               Unsigned 16-bit integer
               Fragment Offset

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

           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
               IPv6 Extension Headers

           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.mp_id  Metering Process Id
               Unsigned 32-bit integer
               Metering Process Id

           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_top_label_exp  MPLS Top Label Exp
               Unsigned 8-bit integer
               MPLS top label exp

           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.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
               Observation Point Id

           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.option_length  Option Length
               Unsigned 16-bit integer
               Option length

           cflow.option_map  OptionMap
               Byte array
               Option Map

           cflow.option_scope_length  Option Scope Length
               Unsigned 16-bit integer
               Option scope length

           cflow.options_flowset_id  Options FlowSet
               Unsigned 16-bit integer
               Options FlowSet

           cflow.outputint  OutputInt
               Unsigned 16-bit integer
               Flow Output Interface

           cflow.packets  Packets
               Unsigned 32-bit integer
               Count of packets

           cflow.packets64  Packets
               Unsigned 64-bit integer
               Count of packets

           cflow.packetsexp  PacketsExp
               Unsigned 32-bit integer
               Packets exported

           cflow.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
               Port Id

           cflow.post_dstmac  Post Destination Mac Address
               6-byte Hardware (MAC) Address
               Post Destination Mac Address

           cflow.post_key  floKeyIndicator
               Boolean
               Flow Key Indicator

           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
               Post Source 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
               Post Vlan Id

           cflow.protocol  Protocol
               Unsigned 8-bit integer
               IP Protocol

           cflow.routersc  Router Shortcut
               IPv4 address
               Router shortcut by switch

           cflow.sampler_mode  SamplerMode
               Unsigned 8-bit integer
               Flow Sampler Mode

           cflow.sampler_name  SamplerName
               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
               Sampling algorithm

           cflow.sampling_interval  Sampling interval
               Unsigned 32-bit integer
               Sampling interval

           cflow.samplingmode  SamplingMode
               Unsigned 16-bit integer
               Sampling Mode of exporter

           cflow.scope  Scope Unknown
               Byte array
               Option Scope Unknown

           cflow.scope_cache  ScopeCache
               Byte array
               Option Scope Cache

           cflow.scope_field_length  Scope Field Length
               Unsigned 16-bit integer
               Scope field length

           cflow.scope_field_type  Scope Type
               Unsigned 16-bit integer
               Scope field type

           cflow.scope_interface  ScopeInterface
               Unsigned 32-bit integer
               Option Scope Interface

           cflow.scope_linecard  ScopeLinecard
               Byte array
               Option Scope Linecard

           cflow.scope_system  ScopeSystem
               IPv4 address
               Option Scope System

           cflow.scope_template  ScopeTemplate
               Byte array
               Option Scope Template

           cflow.section_header  SectionHeader
               Byte array
               Header of Packet

           cflow.section_payload  SectionPayload
               Byte array
               Payload of Packet

           cflow.sequence  FlowSequence
               Unsigned 32-bit integer
               Sequence number of flows seen

           cflow.source_id  SourceId
               Unsigned 32-bit integer
               Identifier for export device

           cflow.srcaddr  SrcAddr
               IPv4 address
               Flow Source Address

           cflow.srcaddrv6  SrcAddr
               IPv6 address
               Flow Source Address

           cflow.srcas  SrcAS
               Unsigned 16-bit integer
               Source AS

           cflow.srcmac  Source Mac Address
               6-byte Hardware (MAC) Address
               Source 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
               TCP Sequence Number

           cflow.tcp_urg_ptr  TCP Urgent Pointer
               Unsigned 32-bit integer
               TCP Urgent Pointer

           cflow.tcp_windows_size  TCP Windows Size
               Unsigned 16-bit integer
               TCP Windows size

           cflow.tcpflags  TCP Flags
               Unsigned 8-bit integer
               TCP Flags

           cflow.template_field_count  Field Count
               Unsigned 16-bit integer
               Template field count

           cflow.template_field_length  Length
               Unsigned 16-bit integer
               Template field length

           cflow.template_field_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
               Template FlowSet

           cflow.template_id  Template Id
               Unsigned 16-bit integer
               Template Id

           cflow.timedelta  Duration
               Time duration
               Duration of flow sample (end - start)

           cflow.timeend  EndTime
               Time duration
               Uptime at end of flow

           cflow.timestamp  Timestamp
               Date/Time stamp
               Current seconds since epoch

           cflow.timestart  StartTime
               Time duration
               Uptime at start of flow

           cflow.toplabeladdr  TopLabelAddr
               IPv4 address
               Top MPLS label PE address

           cflow.toplabeltype  TopLabelType
               Unsigned 8-bit integer
               Top MPLS label Type

           cflow.tos  IP ToS
               Unsigned 8-bit integer
               IP Type of Service

           cflow.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.version  Version
               Unsigned 16-bit integer
               NetFlow Version

           cflow.vlanid  Vlan Id
               Unsigned 16-bit integer
               Vlan Id

           cflow.wlan_channel_id  Wireless LAN Channel Id
               Unsigned 8-bit integer
               Wireless LAN Channel Id

           cflow.wlan_ssid  Wireless LAN SSId
               String
               Wireless LAN SSId

   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
               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
               802.11 Capabilities Flags

           wlccp.80211_cf_poll_req_flag  CF Poll Request flag
               Unsigned 16-bit integer
               CF Poll Request Flag

           wlccp.80211_cf_pollable_flag  CF Pollable flag
               Unsigned 16-bit integer
               CF Pollable Flag

           wlccp.80211_chan_agility_flag  Channel Agility flag
               Unsigned 16-bit integer
               Channel Agility Flag

           wlccp.80211_ess_flag  ESS flag
               Unsigned 16-bit integer
               Set on by APs in Beacon or Probe Response

           wlccp.80211_ibss_flag  IBSS flag
               Unsigned 16-bit integer
               Set on by STAs in Beacon or Probe Response

           wlccp.80211_pbcc_flag  PBCC flag
               Unsigned 16-bit integer
               PBCC Flag

           wlccp.80211_qos_flag  QOS flag
               Unsigned 16-bit integer
               QOS Flag

           wlccp.80211_reserved  Reserved
               Unsigned 16-bit integer
               Reserved

           wlccp.80211_short_preamble_flag  Short Preamble flag
               Unsigned 16-bit integer
               Short Preamble Flag

           wlccp.80211_short_time_slot_flag  Short Time Slot flag
               Unsigned 16-bit integer
               Short Time Slot Flag

           wlccp.80211_spectrum_mgmt_flag  Spectrum Management flag
               Unsigned 16-bit integer
               Spectrum Management Flag

           wlccp.aaa_auth_type  AAA Authentication Type
               Unsigned 8-bit integer
               AAA Authentication Type

           wlccp.aaa_keymgmt_type  AAA Key Management Type
               Unsigned 8-bit integer
               AAA Key Management Type

           wlccp.aaa_msg_type  AAA Message Type
               Unsigned 8-bit integer
               AAA Message Type

           wlccp.ack_required_flag  Ack Required flag
               Unsigned 16-bit integer
               Set on to require an acknowledgement

           wlccp.age  Age
               Unsigned 32-bit integer
               Time since AP became a WDS master

           wlccp.apnodeid  AP Node ID
               No value
               AP Node ID

           wlccp.apnodeidaddress  AP Node Address
               6-byte Hardware (MAC) Address
               AP Node Address

           wlccp.apnodetype  AP Node Type
               Unsigned 16-bit integer
               AP Node Type

           wlccp.apregstatus  Registration Status
               Unsigned 8-bit integer
               AP Registration Status

           wlccp.auth_type  Authentication Type
               Unsigned 8-bit integer
               Authentication Type

           wlccp.base_message_type  Base message type
               Unsigned 8-bit integer
               Base message type

           wlccp.beacon_interval  Beacon Interval
               Unsigned 16-bit integer
               Beacon Interval

           wlccp.bssid  BSS ID
               6-byte Hardware (MAC) Address
               Basic Service Set ID

           wlccp.cca_busy  CCA Busy
               Unsigned 8-bit integer
               CCA Busy

           wlccp.channel  Channel
               Unsigned 8-bit integer
               Channel

           wlccp.cisco_acctg_msg  Cisco Accounting Message
               Byte array
               Cisco Accounting Message

           wlccp.client_mac  Client MAC
               6-byte Hardware (MAC) Address
               Client MAC

           wlccp.dest_node_id  Destination node ID
               6-byte Hardware (MAC) Address
               Destination node ID

           wlccp.dest_node_type  Destination node type
               Unsigned 16-bit integer
               Destination node type

           wlccp.destination_node_type  Destination node type
               Unsigned 16-bit integer
               Node type of the hop destination

           wlccp.dsss_dlyd_block_ack_flag  Delayed Block Ack Flag
               Unsigned 16-bit integer
               Delayed Block Ack Flag

           wlccp.dsss_imm_block_ack_flag  Immediate Block Ack Flag
               Unsigned 16-bit integer
               Immediate Block Ack Flag

           wlccp.dsss_ofdm_flag  DSSS-OFDM Flag
               Unsigned 16-bit integer
               DSSS-OFDM Flag

           wlccp.dstmac  Dst MAC
               6-byte Hardware (MAC) Address
               Destination MAC address

           wlccp.duration  Duration
               Unsigned 16-bit integer
               Duration

           wlccp.eap_msg  EAP Message
               Byte array
               EAP Message

           wlccp.eap_pkt_length  EAP Packet Length
               Unsigned 16-bit integer
               EAPOL Type

           wlccp.eapol_msg  EAPOL Message
               No value
               EAPOL Message

           wlccp.eapol_type  EAPOL Type
               Unsigned 8-bit integer
               EAPOL Type

           wlccp.eapol_version  EAPOL Version
               Unsigned 8-bit integer
               EAPOL Version

           wlccp.element_count  Element Count
               Unsigned 8-bit integer
               Element Count

           wlccp.flags  Flags
               Unsigned 16-bit integer
               Flags

           wlccp.framereport_elements  Frame Report Elements
               No value
               Frame Report Elements

           wlccp.hops  Hops
               Unsigned 8-bit integer
               Number of WLCCP hops

           wlccp.hopwise_routing_flag  Hopwise-routing flag
               Unsigned 16-bit integer
               On to force intermediate access points to process the message also

           wlccp.hostname  Hostname
               String
               Hostname of device

           wlccp.inbound_flag  Inbound flag
               Unsigned 16-bit integer
               Message is inbound to the top of the topology tree

           wlccp.interval  Interval
               Unsigned 16-bit integer
               Interval

           wlccp.ipv4_address  IPv4 Address
               IPv4 address
               IPv4 address

           wlccp.key_mgmt_type  Key Management type
               Unsigned 8-bit integer
               Key Management type

           wlccp.key_seq_count  Key Sequence Count
               Unsigned 32-bit integer
               Key Sequence Count

           wlccp.length  Length
               Unsigned 16-bit integer
               Length of WLCCP payload (bytes)

           wlccp.mfp_capability  MFP Capability
               Unsigned 16-bit integer
               MFP Capability

           wlccp.mfp_config  MFP Config
               Unsigned 16-bit integer
               MFP Config

           wlccp.mfp_flags  MFP Flags
               Unsigned 16-bit integer
               MFP Flags

           wlccp.mic_flag  MIC flag
               Unsigned 16-bit integer
               On in a message that must be authenticated and has an authentication TLV

           wlccp.mic_length  MIC Length
               Unsigned 16-bit integer
               MIC Length

           wlccp.mic_msg_seq_count  MIC Message Sequence Count
               Unsigned 64-bit integer
               MIC Message Sequence Count

           wlccp.mic_value  MIC Value
               Byte array
               MIC Value

           wlccp.mode  Mode
               Unsigned 8-bit integer
               Mode

           wlccp.msg_id  Message ID
               Unsigned 16-bit integer
               Sequence number used to match request/reply pairs

           wlccp.nm_capability  NM Capability
               Unsigned 8-bit integer
               NM Capability

           wlccp.nm_version  NM Version
               Unsigned 8-bit integer
               NM Version

           wlccp.nmconfig  NM Config
               Unsigned 8-bit integer
               NM Config

           wlccp.nonce_value  Nonce Value
               Byte array
               Nonce Value

           wlccp.numframes  Number of frames
               Unsigned 8-bit integer
               Number of Frames

           wlccp.originator  Originator
               6-byte Hardware (MAC) Address
               Originating device's MAC address

           wlccp.originator_node_type  Originator node type
               Unsigned 16-bit integer
               Originating device's node type

           wlccp.outbound_flag  Outbound flag
               Unsigned 16-bit integer
               Message is outbound from the top of the topology tree

           wlccp.parent_ap_mac  Parent AP MAC
               6-byte Hardware (MAC) Address
               Parent AP MAC

           wlccp.parenttsf  Parent TSF
               Unsigned 32-bit integer
               Parent TSF

           wlccp.path_init_reserved  Reserved
               Unsigned 8-bit integer
               Reserved

           wlccp.path_length  Path Length
               Unsigned 8-bit integer
               Path Length

           wlccp.period  Period
               Unsigned 8-bit integer
               Interval between announcements (seconds)

           wlccp.phy_type  PHY Type
               Unsigned 8-bit integer
               PHY Type

           wlccp.priority  WDS priority
               Unsigned 8-bit integer
               WDS priority of this access point

           wlccp.radius_username  RADIUS Username
               String
               RADIUS Username

           wlccp.refresh_request_id  Refresh Request ID
               Unsigned 32-bit integer
               Refresh Request ID

           wlccp.reg_lifetime  Reg. LifeTime
               Unsigned 8-bit integer
               Reg. LifeTime

           wlccp.relay_flag  Relay flag
               Unsigned 16-bit integer
               Signifies that this header is immediately followed by a relay node field

           wlccp.relay_node_id  Relay node ID
               6-byte Hardware (MAC) Address
               Node which relayed this message

           wlccp.relay_node_type  Relay node type
               Unsigned 16-bit integer
               Type of node which relayed this message

           wlccp.requ_node_type  Requestor node type
               Unsigned 16-bit integer
               Requesting device's node type

           wlccp.request_reply_flag  Request Reply flag
               Unsigned 8-bit integer
               Set on to request a reply

           wlccp.requestor  Requestor
               6-byte Hardware (MAC) Address
               Requestor device's MAC address

           wlccp.responder  Responder
               6-byte Hardware (MAC) Address
               Responding device's MAC address

           wlccp.responder_node_type  Responder node type
               Unsigned 16-bit integer
               Responding device's node type

           wlccp.response_request_flag  Response request flag
               Unsigned 16-bit integer
               Set on to request a reply

           wlccp.retry_flag  Retry flag
               Unsigned 16-bit integer
               Set on for retransmissions

           wlccp.rm_flags  RM Flags
               Unsigned 8-bit integer
               RM Flags

           wlccp.root_cm_flag  Root context manager flag
               Unsigned 16-bit integer
               Set to on to send message to the root context manager of the topology tree

           wlccp.rpi_denisty  RPI Density
               Byte array
               RPI Density

           wlccp.rss  RSS
               Signed 8-bit integer
               Received Signal Strength

           wlccp.sap  SAP
               Unsigned 8-bit integer
               Service Access Point

           wlccp.sap_id  SAP ID
               Unsigned 8-bit integer
               Service Access Point ID

           wlccp.sap_version  SAP Version
               Unsigned 8-bit integer
               Service Access Point Version

           wlccp.scan_mode  Scan Mode
               Unsigned 8-bit integer
               Scan Mode

           wlccp.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
               Bridge Priority flags

           wlccp.scm_election_group  SCM Election Group
               Unsigned 8-bit integer
               SCM Election Group

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

           wlccp.scm_priority_flags  SCM Priority flags
               Unsigned 8-bit integer
               SCM Priority flags

           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
               SCM Attach State

           wlccp.scmstate_change  SCM State Change
               Unsigned 8-bit integer
               SCM State Change

           wlccp.scmstate_change_reason  SCM State Change Reason
               Unsigned 8-bit integer
               SCM State Change Reason

           wlccp.session_timeout  Session Timeout
               Unsigned 32-bit integer
               Session Timeout

           wlccp.source_node_id  Source node ID
               6-byte Hardware (MAC) Address
               Source node ID

           wlccp.source_node_type  Source node type
               Unsigned 16-bit integer
               Source node type

           wlccp.srcidx  Source Index
               Unsigned 8-bit integer
               Source Index

           wlccp.srcmac  Src MAC
               6-byte Hardware (MAC) Address
               Source MAC address

           wlccp.station_mac  Station MAC
               6-byte Hardware (MAC) Address
               Station MAC

           wlccp.station_type  Station Type
               Unsigned 8-bit integer
               Station Type

           wlccp.status  Status
               Unsigned 8-bit integer
               Status

           wlccp.subtype  Subtype
               Unsigned 8-bit integer
               Message Subtype

           wlccp.supp_node_id  Supporting node ID
               6-byte Hardware (MAC) Address
               Supporting node ID

           wlccp.supp_node_type  Destination node type
               Unsigned 16-bit integer
               Destination node type

           wlccp.targettsf  Target TSF
               Unsigned 64-bit integer
               Target TSF

           wlccp.time_elapsed  Elapsed Time
               Unsigned 16-bit integer
               Elapsed Time

           wlccp.timestamp  Timestamp
               Unsigned 64-bit integer
               Registration Timestamp

           wlccp.tlv  WLCCP TLV
               No value
               WLCCP TLV

           wlccp.tlv80211  802.11 TLV Value
               Byte array
               802.11 TLV Value

           wlccp.tlv_container_flag  TLV Container Flag
               Unsigned 16-bit integer
               Set on if the TLV is a container

           wlccp.tlv_encrypted_flag  TLV Encrypted Flag
               Unsigned 16-bit integer
               Set on if the TLV is encrypted

           wlccp.tlv_flag  TLV flag
               Unsigned 16-bit integer
               Set to indicate that optional TLVs follow the fixed fields

           wlccp.tlv_flags  TLV Flags
               Unsigned 16-bit integer
               TLV Flags, Group and Type

           wlccp.tlv_length  TLV Length
               Unsigned 16-bit integer
               TLV Length

           wlccp.tlv_request_flag  TLV Request Flag
               Unsigned 16-bit integer
               Set on if the TLV is a request

           wlccp.tlv_reserved_bit  Reserved bits
               Unsigned 16-bit integer
               Reserved

           wlccp.tlv_unknown_value  Unknown TLV Contents
               Byte array
               Unknown TLV Contents

           wlccp.token  Token
               Unsigned 8-bit integer
               Token

           wlccp.token2  2 Byte Token
               Unsigned 16-bit integer
               2 Byte Token

           wlccp.type  Message Type
               Unsigned 8-bit integer
               Message Type

           wlccp.version  Version
               Unsigned 8-bit integer
               Protocol ID/Version

           wlccp.wds_reason  Reason Code
               Unsigned 8-bit integer
               Reason Code

           wlccp.wids_msg_type  WIDS Message Type
               Unsigned 8-bit integer
               WIDS Message Type

           wlccp.wlccp_null_tlv  NULL TLV
               Byte array
               NULL TLV

           wlccp.wlccp_tlv_group  TLV Group
               Unsigned 16-bit integer
               TLV Group ID

           wlccp.wlccp_tlv_type  TLV Type
               Unsigned 16-bit integer
               TLV Type ID

   Clearcase NFS (clearcase)
           clearcase.procedure_v3  V3 Procedure
               Unsigned 32-bit integer
               V3 Procedure

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

           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.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
               Source or Destination Port

           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 Frane Number
               Unsigned 32-bit integer
               Contains the value of the Host Frame parameter in the last IG Control packet received from the Host.

           cigi.sof.time_tag  Timing Value (microseconds)
               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
               Source Port

           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
               Attribute

           cip.class  Class
               Unsigned 8-bit integer
               Class

           cip.connpoint  Connection Point
               Unsigned 8-bit integer
               Connection Point

           cip.data  Data
               Byte array
               Data

           cip.devtype  Device Type
               Unsigned 16-bit integer
               Device Type

           cip.epath  EPath
               Byte array
               EPath

           cip.fwo.cmp  Compatibility
               Unsigned 8-bit integer
               Fwd Open: Compatibility bit

           cip.fwo.consize  Connection Size
               Unsigned 16-bit integer
               Fwd Open: Connection size

           cip.fwo.dir  Direction
               Unsigned 8-bit integer
               Fwd Open: Direction

           cip.fwo.f_v  Connection Size Type
               Unsigned 16-bit integer
               Fwd Open: Fixed or variable connection size

           cip.fwo.major  Major Revision
               Unsigned 8-bit integer
               Fwd Open: Major Revision

           cip.fwo.owner  Owner
               Unsigned 16-bit integer
               Fwd Open: Redundant owner bit

           cip.fwo.prio  Priority
               Unsigned 16-bit integer
               Fwd Open: Connection priority

           cip.fwo.transport  Class
               Unsigned 8-bit integer
               Fwd Open: Transport Class

           cip.fwo.trigger  Trigger
               Unsigned 8-bit integer
               Fwd Open: Production trigger

           cip.fwo.type  Connection Type
               Unsigned 16-bit integer
               Fwd Open: Connection type

           cip.genstat  General Status
               Unsigned 8-bit integer
               General Status

           cip.instance  Instance
               Unsigned 8-bit integer
               Instance

           cip.linkaddress  Link Address
               Unsigned 8-bit integer
               Link Address

           cip.port  Port
               Unsigned 8-bit integer
               Port Identifier

           cip.rr  Request/Response
               Unsigned 8-bit integer
               Request or Response message

           cip.sc  Service
               Unsigned 8-bit integer
               Service Code

           cip.symbol  Symbol
               String
               ANSI Extended Symbol Segment

           cip.vendor  Vendor ID
               Unsigned 16-bit integer
               Vendor ID

   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
               Count

           cops.pc_algorithm  Algorithm
               Unsigned 16-bit integer
               Algorithm

           cops.pc_bcid  Billing Correlation ID
               Unsigned 32-bit integer
               Billing Correlation ID

           cops.pc_bcid_ev  BDID Event Counter
               Unsigned 32-bit integer
               BCID Event Counter

           cops.pc_bcid_ts  BDID Timestamp
               Unsigned 32-bit integer
               BCID Timestamp

           cops.pc_close_subcode  Reason Sub Code
               Unsigned 16-bit integer
               Reason Sub Code

           cops.pc_cmts_ip  CMTS IP Address
               IPv4 address
               CMTS IP Address

           cops.pc_cmts_ip_port  CMTS IP Port
               Unsigned 16-bit integer
               CMTS IP Port

           cops.pc_delete_subcode  Reason Sub Code
               Unsigned 16-bit integer
               Reason Sub Code

           cops.pc_dest_ip  Destination IP Address
               IPv4 address
               Destination IP Address

           cops.pc_dest_port  Destination IP Port
               Unsigned 16-bit integer
               Destination IP Port

           cops.pc_dfccc_id  CCC ID
               Unsigned 32-bit integer
               CCC ID

           cops.pc_dfccc_ip  DF IP Address CCC
               IPv4 address
               DF IP Address CCC

           cops.pc_dfccc_ip_port  DF IP Port CCC
               Unsigned 16-bit integer
               DF IP Port CCC

           cops.pc_dfcdc_ip  DF IP Address CDC
               IPv4 address
               DF IP Address CDC

           cops.pc_dfcdc_ip_port  DF IP Port CDC
               Unsigned 16-bit integer
               DF IP Port CDC

           cops.pc_direction  Direction
               Unsigned 8-bit integer
               Direction

           cops.pc_ds_field  DS Field (DSCP or TOS)
               Unsigned 8-bit integer
               DS Field (DSCP or TOS)

           cops.pc_gate_command_type  Gate Command Type
               Unsigned 16-bit integer
               Gate Command Type

           cops.pc_gate_id  Gate Identifier
               Unsigned 32-bit integer
               Gate Identifier

           cops.pc_gate_spec_flags  Flags
               Unsigned 8-bit integer
               Flags

           cops.pc_key  Security Key
               Unsigned 32-bit integer
               Security Key

           cops.pc_max_packet_size  Maximum Packet Size
               Unsigned 32-bit integer
               Maximum Packet Size

           cops.pc_min_policed_unit  Minimum Policed Unit
               Unsigned 32-bit integer
               Minimum Policed Unit

           cops.pc_mm_amid_am_tag  AMID Application Manager Tag
               Unsigned 32-bit integer
               PacketCable Multimedia AMID Application Manager Tag

           cops.pc_mm_amid_application_type  AMID Application Type
               Unsigned 32-bit integer
               PacketCable Multimedia AMID Application Type

           cops.pc_mm_amrtrps  Assumed Minimum Reserved Traffic Rate Packet Size
               Unsigned 16-bit integer
               PacketCable Multimedia Committed Envelope Assumed Minimum Reserved Traffic Rate Packet Size

           cops.pc_mm_classifier_action  Priority
               Unsigned 8-bit integer
               PacketCable Multimedia Classifier Action

           cops.pc_mm_classifier_activation_state  Priority
               Unsigned 8-bit integer
               PacketCable Multimedia Classifier Activation State

           cops.pc_mm_classifier_dscp  DSCP/TOS Field
               Unsigned 8-bit integer
               PacketCable Multimedia Classifier DSCP/TOS Field

           cops.pc_mm_classifier_dscp_mask  DSCP/TOS Mask
               Unsigned 8-bit integer
               PacketCable Multimedia 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_mask  Destination address
               IPv4 address
               PacketCable Multimedia Classifier Destination Mask

           cops.pc_mm_classifier_dst_port  Destination Port
               Unsigned 16-bit integer
               PacketCable Multimedia Classifier Source Port

           cops.pc_mm_classifier_dst_port_end  Destination Port
               Unsigned 16-bit integer
               PacketCable Multimedia Classifier Source Port End

           cops.pc_mm_classifier_id  Priority
               Unsigned 16-bit integer
               PacketCable Multimedia Classifier ID

           cops.pc_mm_classifier_priority  Priority
               Unsigned 8-bit integer
               PacketCable Multimedia Classifier Priority

           cops.pc_mm_classifier_proto_id  Protocol ID
               Unsigned 16-bit integer
               PacketCable Multimedia Classifier Protocol ID

           cops.pc_mm_classifier_src_addr  Source address
               IPv4 address
               PacketCable Multimedia Classifier Source IP Address

           cops.pc_mm_classifier_src_mask  Source mask
               IPv4 address
               PacketCable Multimedia Classifier Source Mask

           cops.pc_mm_classifier_src_port  Source Port
               Unsigned 16-bit integer
               PacketCable Multimedia Classifier Source Port

           cops.pc_mm_classifier_src_port_end  Source Port End
               Unsigned 16-bit integer
               PacketCable Multimedia Classifier Source Port End

           cops.pc_mm_docsis_scn  Service Class Name
               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_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
               Error Code

           cops.pc_packetcable_sub_code  Error Sub Code
               Unsigned 16-bit integer
               Error Sub Code

           cops.pc_peak_data_rate  Peak Data Rate
               Single-precision floating point
               Peak Data Rate

           cops.pc_prks_ip  PRKS IP Address
               IPv4 address
               PRKS IP Address

           cops.pc_prks_ip_port  PRKS IP Port
               Unsigned 16-bit integer
               PRKS IP Port

           cops.pc_protocol_id  Protocol ID
               Unsigned 8-bit integer
               Protocol ID

           cops.pc_reason_code  Reason Code
               Unsigned 16-bit integer
               Reason Code

           cops.pc_remote_flags  Flags
               Unsigned 16-bit integer
               Flags

           cops.pc_remote_gate_id  Remote Gate ID
               Unsigned 32-bit integer
               Remote Gate ID

           cops.pc_reserved  Reserved
               Unsigned 32-bit integer
               Reserved

           cops.pc_session_class  Session Class
               Unsigned 8-bit integer
               Session Class

           cops.pc_slack_term  Slack Term
               Unsigned 32-bit integer
               Slack Term

           cops.pc_spec_rate  Rate
               Single-precision floating point
               Rate

           cops.pc_src_ip  Source IP Address
               IPv4 address
               Source IP Address

           cops.pc_src_port  Source IP Port
               Unsigned 16-bit integer
               Source IP Port

           cops.pc_srks_ip  SRKS IP Address
               IPv4 address
               SRKS IP Address

           cops.pc_srks_ip_port  SRKS IP Port
               Unsigned 16-bit integer
               SRKS IP Port

           cops.pc_subscriber_id4  Subscriber Identifier (IPv4)
               IPv4 address
               Subscriber Identifier (IPv4)

           cops.pc_subscriber_id6  Subscriber Identifier (IPv6)
               IPv6 address
               Subscriber Identifier (IPv6)

           cops.pc_subtree  Object Subtree
               No value
               Object Subtree

           cops.pc_t1_value  Timer T1 Value (sec)
               Unsigned 16-bit integer
               Timer T1 Value (sec)

           cops.pc_t7_value  Timer T7 Value (sec)
               Unsigned 16-bit integer
               Timer T7 Value (sec)

           cops.pc_t8_value  Timer T8 Value (sec)
               Unsigned 16-bit integer
               Timer T8 Value (sec)

           cops.pc_token_bucket_rate  Token Bucket Rate
               Single-precision floating point
               Token Bucket Rate

           cops.pc_token_bucket_size  Token Bucket Size
               Single-precision floating point
               Token Bucket Size

           cops.pc_transaction_id  Transaction Identifier
               Unsigned 16-bit integer
               Transaction Identifier

           cops.pdp.tcp_port  TCP Port Number
               Unsigned 32-bit integer
               TCP Port Number of PDP in PDPRedirAddr/LastPDPAddr object

           cops.pdprediraddr.ipv4  IPv4 address
               IPv4 address
               IPv4 address in COPS PDPRedirAddr object

           cops.pdprediraddr.ipv6  IPv6 address
               IPv6 address
               IPv6 address in COPS PDPRedirAddr object

           cops.pepid.id  Contents: PEP Id
               String
               PEP Id in PEPID object

           cops.pprid.prefix_id  Prefix Identifier
               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.CompressedData

           cdt.algorithmID_OID  algorithmID-OID
               Object Identifier
               cdt.OBJECT_IDENTIFIER

           cdt.algorithmID_ShortForm  algorithmID-ShortForm
               Signed 32-bit integer
               cdt.AlgorithmID_ShortForm

           cdt.compressedContent  compressedContent
               Byte array
               cdt.CompressedContent

           cdt.compressedContentInfo  compressedContentInfo
               No value
               cdt.CompressedContentInfo

           cdt.compressionAlgorithm  compressionAlgorithm
               Unsigned 32-bit integer
               cdt.CompressionAlgorithmIdentifier

           cdt.contentType  contentType
               Unsigned 32-bit integer
               cdt.T_contentType

           cdt.contentType_OID  contentType-OID
               Object Identifier
               cdt.T_contentType_OID

           cdt.contentType_ShortForm  contentType-ShortForm
               Signed 32-bit integer
               cdt.ContentType_ShortForm

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

           image-gif.screen.width  Screen width
               Unsigned 16-bit integer
               Screen width

           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)
   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.Attribute

           cms.AttributeValue  AttributeValue
               No value
               cms.AttributeValue

           cms.AuthenticatedData  AuthenticatedData
               No value
               cms.AuthenticatedData

           cms.CertificateChoices  CertificateChoices
               Unsigned 32-bit integer
               cms.CertificateChoices

           cms.CertificateList  CertificateList
               No value
               x509af.CertificateList

           cms.ContentInfo  ContentInfo
               No value
               cms.ContentInfo

           cms.ContentType  ContentType
               Object Identifier
               cms.ContentType

           cms.Countersignature  Countersignature
               No value
               cms.Countersignature

           cms.DigestAlgorithmIdentifier  DigestAlgorithmIdentifier
               No value
               cms.DigestAlgorithmIdentifier

           cms.DigestedData  DigestedData
               No value
               cms.DigestedData

           cms.EncryptedData  EncryptedData
               No value
               cms.EncryptedData

           cms.EnvelopedData  EnvelopedData
               No value
               cms.EnvelopedData

           cms.IssuerAndSerialNumber  IssuerAndSerialNumber
               No value
               cms.IssuerAndSerialNumber

           cms.MessageDigest  MessageDigest
               Byte array
               cms.MessageDigest

           cms.RC2CBCParameters  RC2CBCParameters
               Unsigned 32-bit integer
               cms.RC2CBCParameters

           cms.RC2WrapParameter  RC2WrapParameter
               Signed 32-bit integer
               cms.RC2WrapParameter

           cms.RecipientEncryptedKey  RecipientEncryptedKey
               No value
               cms.RecipientEncryptedKey

           cms.RecipientInfo  RecipientInfo
               Unsigned 32-bit integer
               cms.RecipientInfo

           cms.SMIMECapabilities  SMIMECapabilities
               Unsigned 32-bit integer
               cms.SMIMECapabilities

           cms.SMIMECapability  SMIMECapability
               No value
               cms.SMIMECapability

           cms.SMIMEEncryptionKeyPreference  SMIMEEncryptionKeyPreference
               Unsigned 32-bit integer
               cms.SMIMEEncryptionKeyPreference

           cms.SignedData  SignedData
               No value
               cms.SignedData

           cms.SignerInfo  SignerInfo
               No value
               cms.SignerInfo

           cms.SigningTime  SigningTime
               Unsigned 32-bit integer
               cms.SigningTime

           cms.algorithm  algorithm
               No value
               x509af.AlgorithmIdentifier

           cms.attrCert  attrCert
               No value
               x509af.AttributeCertificate

           cms.attrType  attrType
               Object Identifier
               cms.T_attrType

           cms.attrValues  attrValues
               Unsigned 32-bit integer
               cms.SET_OF_AttributeValue

           cms.attributes  attributes
               Unsigned 32-bit integer
               cms.UnauthAttributes

           cms.authenticatedAttributes  authenticatedAttributes
               Unsigned 32-bit integer
               cms.AuthAttributes

           cms.capability  capability
               Object Identifier
               cms.T_capability

           cms.certificate  certificate
               No value
               x509af.Certificate

           cms.certificates  certificates
               Unsigned 32-bit integer
               cms.CertificateSet

           cms.certs  certs
               Unsigned 32-bit integer
               cms.CertificateSet

           cms.content  content
               No value
               cms.T_content

           cms.contentEncryptionAlgorithm  contentEncryptionAlgorithm
               No value
               cms.ContentEncryptionAlgorithmIdentifier

           cms.contentInfo.contentType  contentType
               Object Identifier
               ContentType

           cms.contentType  contentType
               Object Identifier
               cms.ContentType

           cms.crls  crls
               Unsigned 32-bit integer
               cms.CertificateRevocationLists

           cms.date  date
               String
               cms.GeneralizedTime

           cms.digest  digest
               Byte array
               cms.Digest

           cms.digestAlgorithm  digestAlgorithm
               No value
               cms.DigestAlgorithmIdentifier

           cms.digestAlgorithms  digestAlgorithms
               Unsigned 32-bit integer
               cms.DigestAlgorithmIdentifiers

           cms.eContent  eContent
               Byte array
               cms.T_eContent

           cms.eContentType  eContentType
               Object Identifier
               cms.ContentType

           cms.encapContentInfo  encapContentInfo
               No value
               cms.EncapsulatedContentInfo

           cms.encryptedContent  encryptedContent
               Byte array
               cms.EncryptedContent

           cms.encryptedContentInfo  encryptedContentInfo
               No value
               cms.EncryptedContentInfo

           cms.encryptedKey  encryptedKey
               Byte array
               cms.EncryptedKey

           cms.extendedCertificate  extendedCertificate
               No value
               cms.ExtendedCertificate

           cms.extendedCertificateInfo  extendedCertificateInfo
               No value
               cms.ExtendedCertificateInfo

           cms.generalTime  generalTime
               String
               cms.GeneralizedTime

           cms.issuer  issuer
               Unsigned 32-bit integer
               x509if.Name

           cms.issuerAndSerialNumber  issuerAndSerialNumber
               No value
               cms.IssuerAndSerialNumber

           cms.iv  iv
               Byte array
               cms.OCTET_STRING

           cms.kari  kari
               No value
               cms.KeyAgreeRecipientInfo

           cms.kekid  kekid
               No value
               cms.KEKIdentifier

           cms.kekri  kekri
               No value
               cms.KEKRecipientInfo

           cms.keyAttr  keyAttr
               No value
               cms.T_keyAttr

           cms.keyAttrId  keyAttrId
               Object Identifier
               cms.T_keyAttrId

           cms.keyEncryptionAlgorithm  keyEncryptionAlgorithm
               No value
               cms.KeyEncryptionAlgorithmIdentifier

           cms.keyIdentifier  keyIdentifier
               Byte array
               cms.OCTET_STRING

           cms.ktri  ktri
               No value
               cms.KeyTransRecipientInfo

           cms.mac  mac
               Byte array
               cms.MessageAuthenticationCode

           cms.macAlgorithm  macAlgorithm
               No value
               cms.MessageAuthenticationCodeAlgorithm

           cms.originator  originator
               Unsigned 32-bit integer
               cms.OriginatorIdentifierOrKey

           cms.originatorInfo  originatorInfo
               No value
               cms.OriginatorInfo

           cms.originatorKey  originatorKey
               No value
               cms.OriginatorPublicKey

           cms.other  other
               No value
               cms.OtherKeyAttribute

           cms.parameters  parameters
               No value
               cms.T_parameters

           cms.publicKey  publicKey
               Byte array
               cms.BIT_STRING

           cms.rKeyId  rKeyId
               No value
               cms.RecipientKeyIdentifier

           cms.rc2CBCParameter  rc2CBCParameter
               No value
               cms.RC2CBCParameter

           cms.rc2ParameterVersion  rc2ParameterVersion
               Signed 32-bit integer
               cms.INTEGER

           cms.rc2WrapParameter  rc2WrapParameter
               Signed 32-bit integer
               cms.RC2WrapParameter

           cms.recipientEncryptedKeys  recipientEncryptedKeys
               Unsigned 32-bit integer
               cms.RecipientEncryptedKeys

           cms.recipientInfos  recipientInfos
               Unsigned 32-bit integer
               cms.RecipientInfos

           cms.recipientKeyId  recipientKeyId
               No value
               cms.RecipientKeyIdentifier

           cms.rid  rid
               Unsigned 32-bit integer
               cms.RecipientIdentifier

           cms.serialNumber  serialNumber
               Signed 32-bit integer
               x509af.CertificateSerialNumber

           cms.sid  sid
               Unsigned 32-bit integer
               cms.SignerIdentifier

           cms.signature  signature
               Byte array
               cms.SignatureValue

           cms.signatureAlgorithm  signatureAlgorithm
               No value
               cms.SignatureAlgorithmIdentifier

           cms.signedAttrs  signedAttrs
               Unsigned 32-bit integer
               cms.SignedAttributes

           cms.signerInfos  signerInfos
               Unsigned 32-bit integer
               cms.SignerInfos

           cms.subjectAltKeyIdentifier  subjectAltKeyIdentifier
               Byte array
               cms.SubjectKeyIdentifier

           cms.subjectKeyIdentifier  subjectKeyIdentifier
               Byte array
               cms.SubjectKeyIdentifier

           cms.ukm  ukm
               Byte array
               cms.UserKeyingMaterial

           cms.unauthenticatedAttributes  unauthenticatedAttributes
               Unsigned 32-bit integer
               cms.UnauthAttributes

           cms.unprotectedAttrs  unprotectedAttrs
               Unsigned 32-bit integer
               cms.UnprotectedAttributes

           cms.unsignedAttrs  unsignedAttrs
               Unsigned 32-bit integer
               cms.UnsignedAttributes

           cms.utcTime  utcTime
               String
               cms.UTCTime

           cms.version  version
               Signed 32-bit integer
               cms.CMSVersion

   DCE DFS Basic Overseer Server (bossvr)
           bossvr.opnum  Operation
               Unsigned 16-bit integer
               Operation

   DCE DFS FLDB UBIK TRANSFER (ubikdisk)
           ubikdisk.opnum  Operation
               Unsigned 16-bit integer
               Operation

   DCE DFS FLDB UBIKVOTE (ubikvote)
           ubikvote.opnum  Operation
               Unsigned 16-bit integer
               Operation

   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
               Operation

           fileexp.owner  fileexp.owner
               Unsigned 32-bit integer

           fileexp.parentunique  fileexp.parentunique
               Unsigned 32-bit integer

           fileexp.parentvnode  fileexp.parentvnode
               Unsigned 32-bit integer

           fileexp.pathconfspare  fileexp.pathconfspare
               Unsigned 32-bit integer

           fileexp.position_high  Position High
               Unsigned 32-bit integer

           fileexp.position_low  Position Low
               Unsigned 32-bit integer

           fileexp.principalName_size  Principal Name Size
               Unsigned 32-bit integer

           fileexp.principalName_size2  Principal Name Size2
               Unsigned 32-bit integer

           fileexp.readdir.size  Readdir Size
               Unsigned 32-bit integer

           fileexp.returntokenidp_high  return token idp high
               Unsigned 32-bit integer

           fileexp.returntokenidp_low  return token idp low
               Unsigned 32-bit integer

           fileexp.servermodtime_msec  fileexp.servermodtime_msec
               Unsigned 32-bit integer

           fileexp.servermodtime_sec  fileexp.servermodtime_sec
               Unsigned 32-bit integer

           fileexp.setcontext.parm7  Parm7:
               Unsigned 32-bit integer

           fileexp.setcontext_clientsizesattrs  ClientSizeAttrs:
               Unsigned 32-bit integer

           fileexp.setcontext_rqst_epochtime  EpochTime:
               Date/Time stamp

           fileexp.setcontext_secobjextid  SetObjectid:
               String
               UUID

           fileexp.spare4  fileexp.spare4
               Unsigned 32-bit integer

           fileexp.spare5  fileexp.spare5
               Unsigned 32-bit integer

           fileexp.spare6  fileexp.spare6
               Unsigned 32-bit integer

           fileexp.st  AFS4Int Error Status Code
               Unsigned 32-bit integer

           fileexp.storestatus_accesstime_sec  fileexp.storestatus_accesstime_sec
               Unsigned 32-bit integer

           fileexp.storestatus_accesstime_usec  fileexp.storestatus_accesstime_usec
               Unsigned 32-bit integer

           fileexp.storestatus_changetime_sec  fileexp.storestatus_changetime_sec
               Unsigned 32-bit integer

           fileexp.storestatus_changetime_usec  fileexp.storestatus_changetime_usec
               Unsigned 32-bit integer

           fileexp.storestatus_clientspare1  fileexp.storestatus_clientspare1
               Unsigned 32-bit integer

           fileexp.storestatus_cmask  fileexp.storestatus_cmask
               Unsigned 32-bit integer

           fileexp.storestatus_devicenumber  fileexp.storestatus_devicenumber
               Unsigned 32-bit integer

           fileexp.storestatus_devicenumberhighbits  fileexp.storestatus_devicenumberhighbits
               Unsigned 32-bit integer

           fileexp.storestatus_devicetype  fileexp.storestatus_devicetype
               Unsigned 32-bit integer

           fileexp.storestatus_group  fileexp.storestatus_group
               Unsigned 32-bit integer

           fileexp.storestatus_length_high  fileexp.storestatus_length_high
               Unsigned 32-bit integer

           fileexp.storestatus_length_low  fileexp.storestatus_length_low
               Unsigned 32-bit integer

           fileexp.storestatus_mask  fileexp.storestatus_mask
               Unsigned 32-bit integer

           fileexp.storestatus_mode  fileexp.storestatus_mode
               Unsigned 32-bit integer

           fileexp.storestatus_modtime_sec  fileexp.storestatus_modtime_sec
               Unsigned 32-bit integer

           fileexp.storestatus_modtime_usec  fileexp.storestatus_modtime_usec
               Unsigned 32-bit integer

           fileexp.storestatus_owner  fileexp.storestatus_owner
               Unsigned 32-bit integer

           fileexp.storestatus_spare1  fileexp.storestatus_spare1
               Unsigned 32-bit integer

           fileexp.storestatus_spare2  fileexp.storestatus_spare2
               Unsigned 32-bit integer

           fileexp.storestatus_spare3  fileexp.storestatus_spare3
               Unsigned 32-bit integer

           fileexp.storestatus_spare4  fileexp.storestatus_spare4
               Unsigned 32-bit integer

           fileexp.storestatus_spare5  fileexp.storestatus_spare5
               Unsigned 32-bit integer

           fileexp.storestatus_spare6  fileexp.storestatus_spare6
               Unsigned 32-bit integer

           fileexp.storestatus_trunc_high  fileexp.storestatus_trunc_high
               Unsigned 32-bit integer

           fileexp.storestatus_trunc_low  fileexp.storestatus_trunc_low
               Unsigned 32-bit integer

           fileexp.storestatus_typeuuid  fileexp.storestatus_typeuuid
               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
               Operation

           fldb.principalName_size  Principal Name Size
               Unsigned 32-bit integer

           fldb.principalName_size2  Principal Name Size2
               Unsigned 32-bit integer

           fldb.releaselock_rqst_fsid_high  FSID releaselock Hi
               Unsigned 32-bit integer

           fldb.releaselock_rqst_fsid_low  FSID releaselock Low
               Unsigned 32-bit integer

           fldb.releaselock_rqst_voloper  voloper
               Unsigned 32-bit integer

           fldb.releaselock_rqst_voltype  voltype
               Unsigned 32-bit integer

           fldb.replaceentry_resp_st  Error
               Unsigned 32-bit integer

           fldb.replaceentry_resp_st2  Error
               Unsigned 32-bit integer

           fldb.replaceentry_rqst_fsid_high  FSID replaceentry Hi
               Unsigned 32-bit integer

           fldb.replaceentry_rqst_fsid_low  FSID  replaceentry Low
               Unsigned 32-bit integer

           fldb.replaceentry_rqst_key_size  Key Size
               Unsigned 32-bit integer

           fldb.replaceentry_rqst_key_t  Key
               String

           fldb.replaceentry_rqst_voltype  voltype
               Unsigned 32-bit integer

           fldb.setlock_resp_st  Error
               Unsigned 32-bit integer

           fldb.setlock_resp_st2  Error
               Unsigned 32-bit integer

           fldb.setlock_rqst_fsid_high  FSID setlock Hi
               Unsigned 32-bit integer

           fldb.setlock_rqst_fsid_low  FSID setlock Low
               Unsigned 32-bit integer

           fldb.setlock_rqst_voloper  voloper
               Unsigned 32-bit integer

           fldb.setlock_rqst_voltype  voltype
               Unsigned 32-bit integer

           fldb.spare2  spare2
               Unsigned 32-bit integer

           fldb.spare3  spare3
               Unsigned 32-bit integer

           fldb.spare4  spare4
               Unsigned 32-bit integer

           fldb.spare5  spare5
               Unsigned 32-bit integer

           fldb.uuid_objid  objid
               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
               Operation

   DCE DFS Replication Server (rep_proc)
           rep_proc.opnum  Operation
               Unsigned 16-bit integer
               Operation

   DCE DFS Token Server (tkn4int)
           tkn4int.opnum  Operation
               Unsigned 16-bit integer
               Operation

   DCE Distributed Time Service Local Server (dtsstime_req)
           dtsstime_req.opnum  Operation
               Unsigned 16-bit integer
               Operation

   DCE Distributed Time Service Provider (dtsprovider)
           dtsprovider.opnum  Operation
               Unsigned 16-bit integer
               Operation

           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
               Operation

   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
               DCE/RPC Fragment

           dcerpc.fragment.error  Defragmentation error
               Frame number
               Defragmentation error due to illegal fragments

           dcerpc.fragment.multipletails  Multiple tail fragments found
               Boolean
               Several tails were found when defragmenting the packet

           dcerpc.fragment.overlap  Fragment overlap
               Boolean
               Fragment overlaps with other fragments

           dcerpc.fragment.overlap.conflict  Conflicting data in fragment overlap
               Boolean
               Overlapping fragments contained conflicting data

           dcerpc.fragment.toolongfragment  Fragment too long
               Boolean
               Fragment contained data past end of packet

           dcerpc.fragments  Reassembled DCE/RPC Fragments
               No value
               DCE/RPC Fragments

           dcerpc.krb5_av.auth_verifier  Authentication Verifier
               Byte array

           dcerpc.krb5_av.key_vers_num  Key Version Number
               Unsigned 8-bit integer

           dcerpc.krb5_av.prot_level  Protection Level
               Unsigned 8-bit integer

           dcerpc.nt.acb.autolock  Account is autolocked
               Boolean
               If this account has been autolocked

           dcerpc.nt.acb.disabled  Account disabled
               Boolean
               If this account is enabled or disabled

           dcerpc.nt.acb.domtrust  Interdomain trust account
               Boolean
               Interdomain trust account

           dcerpc.nt.acb.homedirreq  Home dir required
               Boolean
               Is homedirs required for this account?

           dcerpc.nt.acb.mns  MNS logon user account
               Boolean
               MNS logon user account

           dcerpc.nt.acb.normal  Normal user account
               Boolean
               If this is a normal user account

           dcerpc.nt.acb.pwnoexp  Password expires
               Boolean
               If this account expires or not

           dcerpc.nt.acb.pwnotreq  Password required
               Boolean
               If a password is required for this account?

           dcerpc.nt.acb.svrtrust  Server trust account
               Boolean
               Server trust account

           dcerpc.nt.acb.tempdup  Temporary duplicate account
               Boolean
               If this is a temporary duplicate account

           dcerpc.nt.acb.wstrust  Workstation trust account
               Boolean
               Workstation trust account

           dcerpc.nt.acct_ctrl  Acct Ctrl
               Unsigned 32-bit integer
               Acct CTRL

           dcerpc.nt.attr  Attributes
               Unsigned 32-bit integer

           dcerpc.nt.close_frame  Frame handle closed
               Frame number
               Frame handle closed

           dcerpc.nt.count  Count
               Unsigned 32-bit integer
               Number of elements in following array

           dcerpc.nt.domain_sid  Domain SID
               String
               The Domain SID

           dcerpc.nt.guid  GUID
               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
               Frame handle opened

           dcerpc.nt.str.len  Length
               Unsigned 16-bit integer
               Length of string in short integers

           dcerpc.nt.str.size  Size
               Unsigned 16-bit integer
               Size of string in short integers

           dcerpc.nt.unknown.char  Unknown char
               Unsigned 8-bit integer
               Unknown char. If you know what this is, contact wireshark developers.

           dcerpc.obj_id  Object
               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_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
               Operation

   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
               Operation

   DCE/RPC Conversation Manager (conv)
           conv.opnum  Operation
               Unsigned 16-bit integer
               Operation

           conv.status  Status
               Unsigned 32-bit integer

           conv.who_are_you2_resp_casuuid  Client's address space UUID
               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
               Operation

   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
               Annotation

           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
               Operation

           epm.proto.http_port  TCP Port
               Unsigned 16-bit integer
               TCP Port where this service can be found

           epm.proto.ip  IP
               IPv4 address
               IP address where service is located

           epm.proto.named_pipe  Named Pipe
               String
               Name of the named pipe for this service

           epm.proto.netbios_name  NetBIOS Name
               String
               NetBIOS name where this service can be found

           epm.proto.tcp_port  TCP Port
               Unsigned 16-bit integer
               TCP Port where this service can be found

           epm.proto.udp_port  UDP Port
               Unsigned 16-bit integer
               UDP Port where this service can be found

           epm.rc  Return code
               Unsigned 32-bit integer
               EPM return value

           epm.replace  Replace
               Unsigned 8-bit integer
               Replace existing objects?

           epm.tower  Tower
               Byte array
               Tower data

           epm.tower.len  Length
               Unsigned 32-bit integer
               Length of tower data

           epm.tower.lhs.len  LHS Length
               Unsigned 16-bit integer
               Length of LHS data

           epm.tower.num_floors  Number of floors
               Unsigned 16-bit integer
               Number of floors in tower

           epm.tower.proto_id  Protocol
               Unsigned 8-bit integer
               Protocol identifier

           epm.tower.rhs.len  RHS Length
               Unsigned 16-bit integer
               Length of RHS data

           epm.uuid  UUID
               Globally Unique Identifier
               UUID

           epm.ver_maj  Version Major
               Unsigned 16-bit integer

           epm.ver_min  Version Minor
               Unsigned 16-bit integer

           epm.ver_opt  Version Option
               Unsigned 32-bit integer

   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
               Operation

   DCE/RPC Operations between registry server replicas (rs_repmgr)
           rs_repmgr.opnum  Operation
               Unsigned 16-bit integer
               Operation

   DCE/RPC Prop Attr (rs_prop_attr)
           rs_prop_attr.opnum  Operation
               Unsigned 16-bit integer
               Operation

   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
               Operation

           rs_lookup.get_rqst_key_t  Key
               String

   DCE/RPC RS_BIND (rs_bind)
           rs_bind.opnum  Operation
               Unsigned 16-bit integer
               Operation

   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
               Operation

   DCE/RPC RS_PROP_ACCT  (rs_prop_acct)
           rs_prop_acct.opnum  Operation
               Unsigned 16-bit integer
               Operation

   DCE/RPC RS_UNIX (rs_unix)
           rs_unix.opnum  Operation
               Unsigned 16-bit integer
               Operation

   DCE/RPC Registry Password Management  (rs_pwd_mgmt)
           rs_pwd_mgmt.opnum  Operation
               Unsigned 16-bit integer
               Operation

   DCE/RPC Registry Server Attributes Schema (rs_attr_schema)
           rs_attr_schema.opnum  Operation
               Unsigned 16-bit integer
               Operation

   DCE/RPC Registry server propagation interface - ACLs.  (rs_prop_acl)
           rs_prop_acl.opnum  Operation
               Unsigned 16-bit integer
               Operation

   DCE/RPC Registry server propagation interface - PGO items (rs_prop_pgo)
           rs_prop_pgo.opnum  Operation
               Unsigned 16-bit integer
               Operation

   DCE/RPC Registry server propagation interface - properties and policies
       (rs_prop_plcy)
           rs_prop_plcy.opnum  Operation
               Unsigned 16-bit integer
               Operation

   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
               Operation

   DCE/RPC UpServer (dce_update)
           dce_update.opnum  Operation
               Unsigned 16-bit integer
               Operation

   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
               Operation

           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
               Operation

           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
               CRC

           dcp-af.crc_ok  CRC OK
               Boolean
               AF CRC OK

           dcp-af.crcflag  crc flag
               Boolean
               Frame is protected by CRC

           dcp-af.len  length
               Unsigned 32-bit integer
               length in bytes of the payload

           dcp-af.maj  Major Revision
               Unsigned 8-bit integer
               Major Protocol Revision

           dcp-af.min  Minor Revision
               Unsigned 8-bit integer
               Minor Protocol Revision

           dcp-af.pt  Payload Type
               String
               T means Tag Packets, all other values reserved

           dcp-af.seq  frame count
               Unsigned 16-bit integer
               Logical Frame Number

   DCP 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
               Frame number

           dcp-pft.rs_corrected  RS Symbols Corrected
               Signed 16-bit integer
               Number of symbols corrected by RS decode or -1 for failure

           dcp-pft.rs_ok  RS decode OK
               Boolean
               successfully decoded RS blocks

           dcp-pft.rsk  RSk
               Unsigned 8-bit integer
               The length of the Reed Solomon data word

           dcp-pft.rsz  RSz
               Unsigned 8-bit integer
               The number of padding bytes in the last Reed Solomon block

           dcp-pft.rxmin  Rx min
               Unsigned 16-bit integer
               Minimum number of fragments needed for RS decode

           dcp-pft.seq  Sequence No
               Unsigned 16-bit integer
               PFT Sequence No

           dcp-pft.source  source addr
               Unsigned 16-bit integer
               PFT source identifier

   DCP 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
               Block size

           dec_dna.ctl.elist  List of router states
               No value
               Router states

           dec_dna.ctl.ename  Ethernet name
               Byte array
               Ethernet name

           dec_dna.ctl.fcnval  Verification message function value
               Byte array
               Routing Verification function

           dec_dna.ctl.id  Transmitting system ID
               6-byte Hardware (MAC) Address
               Transmitting system ID

           dec_dna.ctl.iinfo.blkreq  Blocking requested
               Boolean
               Blocking requested?

           dec_dna.ctl.iinfo.mta  Accepts multicast traffic
               Boolean
               Accepts multicast traffic?

           dec_dna.ctl.iinfo.node_type  Node type
               Unsigned 8-bit integer
               Node type

           dec_dna.ctl.iinfo.rej  Rejected
               Boolean
               Rejected message

           dec_dna.ctl.iinfo.verf  Verification failed
               Boolean
               Verification failed?

           dec_dna.ctl.iinfo.vrf  Verification required
               Boolean
               Verification required?

           dec_dna.ctl.prio  Routing priority
               Unsigned 8-bit integer
               Routing priority

           dec_dna.ctl.reserved  Reserved
               Byte array
               Reserved

           dec_dna.ctl.router_id  Router ID
               6-byte Hardware (MAC) Address
               Router ID

           dec_dna.ctl.router_prio  Router priority
               Unsigned 8-bit integer
               Router priority

           dec_dna.ctl.router_state  Router state
               String
               Router state

           dec_dna.ctl.seed  Verification seed
               Byte array
               Verification seed

           dec_dna.ctl.segment  Segment
               No value
               Routing Segment

           dec_dna.ctl.test_data  Test message data
               Byte array
               Routing Test message data

           dec_dna.ctl.tiinfo  Routing information
               Unsigned 8-bit integer
               Routing information

           dec_dna.ctl.timer  Hello timer(seconds)
               Unsigned 16-bit integer
               Hello timer in seconds

           dec_dna.ctl.version  Version
               No value
               Control protocol version

           dec_dna.ctl_neighbor  Neighbor
               6-byte Hardware (MAC) Address
               Neighbour ID

           dec_dna.dst.address  Destination Address
               6-byte Hardware (MAC) Address
               Destination address

           dec_dna.dst_node  Destination node
               Unsigned 16-bit integer
               Destination node

           dec_dna.flags  Routing flags
               Unsigned 8-bit integer
               DNA routing flag

           dec_dna.flags.RQR  Return to Sender Request
               Boolean
               Return to Sender

           dec_dna.flags.RTS  Packet on return trip
               Boolean
               Packet on return trip

           dec_dna.flags.control  Control packet
               Boolean
               Control packet

           dec_dna.flags.discard  Discarded packet
               Boolean
               Discarded packet

           dec_dna.flags.intra_eth  Intra-ethernet packet
               Boolean
               Intra-ethernet packet

           dec_dna.flags.msglen  Long data packet format
               Unsigned 8-bit integer
               Long message indicator

           dec_dna.nl2  Next level 2 router
               Unsigned 8-bit integer
               reserved

           dec_dna.nsp.delay  Delayed ACK allowed
               Boolean
               Delayed ACK allowed?

           dec_dna.nsp.disc_reason  Reason for disconnect
               Unsigned 16-bit integer
               Disconnect reason

           dec_dna.nsp.fc_val  Flow control
               No value
               Flow control

           dec_dna.nsp.flow_control  Flow control
               Unsigned 8-bit integer
               Flow control(stop, go)

           dec_dna.nsp.info  Version info
               Unsigned 8-bit integer
               Version info

           dec_dna.nsp.msg_type  DNA NSP message
               Unsigned 8-bit integer
               NSP message

           dec_dna.nsp.segnum  Message number
               Unsigned 16-bit integer
               Segment number

           dec_dna.nsp.segsize  Maximum data segment size
               Unsigned 16-bit integer
               Max. segment size

           dec_dna.nsp.services  Requested services
               Unsigned 8-bit integer
               Services requested

           dec_dna.proto_type  Protocol type
               Unsigned 8-bit integer
               reserved

           dec_dna.rt.msg_type  Routing control message
               Unsigned 8-bit integer
               Routing control

           dec_dna.sess.conn  Session connect data
               No value
               Session connect data

           dec_dna.sess.dst_name  Session Destination end user
               String
               Session Destination end user

           dec_dna.sess.grp_code  Session Group code
               Unsigned 16-bit integer
               Session group code

           dec_dna.sess.menu_ver  Session Menu version
               String
               Session menu version

           dec_dna.sess.obj_type  Session Object type
               Unsigned 8-bit integer
               Session object type

           dec_dna.sess.rqstr_id  Session Requestor ID
               String
               Session requestor ID

           dec_dna.sess.src_name  Session Source end user
               String
               Session Source end user

           dec_dna.sess.usr_code  Session User code
               Unsigned 16-bit integer
               Session User code

           dec_dna.src.addr  Source Address
               6-byte Hardware (MAC) Address
               Source address

           dec_dna.src_node  Source node
               Unsigned 16-bit integer
               Source node

           dec_dna.svc_cls  Service class
               Unsigned 8-bit integer
               reserved

           dec_dna.visit_cnt  Visit count
               Unsigned 8-bit integer
               Visit count

           dec_dna.vst_node  Nodes visited ty this package
               Unsigned 8-bit integer
               Nodes visited

   DEC 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
               Unsigned 8-bit integer

           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.fmid  Mh/FMID
               Unsigned 16-bit integer

           dect.afield.tail.Mt.Mh.pmid  Mh/PMID
               Unsigned 24-bit integer

           dect.afield.tail.Nt  Nt/RFPI
               Byte array
               A-Field Tail: Nt/RFPI

           dect.afield.tail.Pt.CN  CN
               Unsigned 8-bit integer

           dect.afield.tail.Pt.ExtFlag  ExtFlag
               Unsigned 8-bit integer

           dect.afield.tail.Pt.InfoType  InfoType
               Unsigned 8-bit integer

           dect.afield.tail.Pt.InfoType.FillBits  FillBits
               Unsigned 8-bit integer

           dect.afield.tail.Pt.SDU  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.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  Spr
               Unsigned 8-bit integer

           dect.afield.tail.Qt.Spr2  Spr
               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
               Byte array

           dect.bfield.framenumber  B-Field
               No value

           dect.bfield.xcrc  B-Field X-CRC
               Unsigned 8-bit integer

           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.msgtype  Message type
               Unsigned 8-bit integer

           dhcpv6.msgtype.n  N
               Boolean

           dhcpv6.msgtype.o  O
               Boolean

           dhcpv6.msgtype.reserved  Reserved
               Unsigned 8-bit integer

           dhcpv6.msgtype.s  S
               Boolean

   DICOM (dicom)
           dicom.actx  Application Context
               String

           dicom.assoc.item.len  Item Length
               Unsigned 16-bit integer

           dicom.assoc.item.type  Item Type
               Unsigned 8-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.len  PDV Length
               Unsigned 32-bit integer

           dicom.tag  Tag
               Unsigned 32-bit integer

           dicom.tag.value.16  Value
               Unsigned 16-bit integer

           dicom.tag.value.32  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
               Operation

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

           docsis.ehdr.keyseq  Key Sequence
               Unsigned 8-bit integer
               Key Sequence

           docsis.ehdr.len  Length
               Unsigned 8-bit integer
               TLV Len

           docsis.ehdr.minislots  MiniSlots
               Unsigned 8-bit integer
               Mini Slots Requested

           docsis.ehdr.phsi  Payload Header Suppression Index
               Unsigned 8-bit integer
               Payload Header Suppression Index

           docsis.ehdr.qind  Queue Indicator
               Boolean
               Queue Indicator

           docsis.ehdr.rsvd  Reserved
               Unsigned 8-bit integer
               Reserved Byte

           docsis.ehdr.said  SAID
               Unsigned 16-bit integer
               Security Association Identifier

           docsis.ehdr.sid  SID
               Unsigned 16-bit integer
               Service Identifier

           docsis.ehdr.type  Type
               Unsigned 8-bit integer
               TLV Type

           docsis.ehdr.value  Value
               Byte array
               TLV Value

           docsis.ehdr.ver  Version
               Unsigned 8-bit integer
               Version

           docsis.ehdron  EHDRON
               Boolean
               Extended Header Presence

           docsis.fcparm  FCParm
               Unsigned 8-bit integer
               Parameter Field

           docsis.fctype  FCType
               Unsigned 8-bit integer
               Frame Control Type

           docsis.frag_first  First Frame
               Boolean
               First Frame

           docsis.frag_last  Last Frame
               Boolean
               Last Frame

           docsis.frag_rsvd  Reserved
               Unsigned 8-bit integer
               Reserved

           docsis.frag_seq  Fragmentation Sequence #
               Unsigned 8-bit integer
               Fragmentation Sequence Number

           docsis.hcs  Header check sequence
               Unsigned 16-bit integer
               Header check sequence

           docsis.lensid  Length after HCS (bytes)
               Unsigned 16-bit integer
               Length or SID

           docsis.macparm  MacParm
               Unsigned 8-bit integer
               Mac Parameter Field

           docsis.toggle_bit  Toggle
               Boolean
               Toggle

   DOCSIS 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
               4 COS Encodings

           docsis_tlv.cos.id  .1 Class ID
               Unsigned 8-bit integer
               Class ID

           docsis_tlv.cos.maxdown  .2 Max Downstream Rate (bps)
               Unsigned 32-bit integer
               Max Downstream Rate

           docsis_tlv.cos.maxup  .3 Max Upstream Rate (bps)
               Unsigned 32-bit integer
               Max Upstream Rate

           docsis_tlv.cos.maxupburst  .6 Maximum Upstream Burst
               Unsigned 16-bit integer
               Maximum Upstream Burst

           docsis_tlv.cos.mingrntdup  .5 Guaranteed Upstream Rate
               Unsigned 32-bit integer
               Guaranteed Minimum Upstream Data Rate

           docsis_tlv.cos.privacy_enable  .7 COS Privacy Enable
               Boolean
               Class of Service Privacy Enable

           docsis_tlv.cos.sid  .2 Service ID
               Unsigned 16-bit integer
               Service ID

           docsis_tlv.cos.upchnlpri  .4 Upstream Channel Priority
               Unsigned 8-bit integer
               Upstream Channel Priority

           docsis_tlv.cosign_cvc  33 Co-Signer CVC
               Byte array
               Co-Signer CVC

           docsis_tlv.cpe_ether  14 CPE Ethernet Addr
               6-byte Hardware (MAC) Address
               CPE Ethernet Addr

           docsis_tlv.downclsfr  23 Downstream Classifier
               Byte array
               23 Downstream Classifier

           docsis_tlv.downfreq  1 Downstream Frequency
               Unsigned 32-bit integer
               Downstream Frequency

           docsis_tlv.downsflow  25 Downstream Service Flow
               Byte array
               25 Downstream Service Flow

           docsis_tlv.hmac_digest  27 HMAC Digest
               Byte array
               HMAC Digest

           docsis_tlv.key_seq  31 Key Sequence Number
               Byte array
               Key Sequence Number

           docsis_tlv.map.docsver  .2 Docsis Version
               Unsigned 8-bit integer
               DOCSIS Version

           docsis_tlv.maxclass  28 Max # of Classifiers
               Unsigned 16-bit integer
               Max # of Classifiers

           docsis_tlv.maxcpe  18 Max # of CPE's
               Unsigned 8-bit integer
               Max Number of CPE's

           docsis_tlv.mcap  5 Modem Capabilities
               Byte array
               Modem Capabilities

           docsis_tlv.mcap.concat  .1 Concatenation Support
               Boolean
               Concatenation Support

           docsis_tlv.mcap.dcc  .12 DCC Support
               Boolean
               DCC Support

           docsis_tlv.mcap.dot1pfiltering  .9 802.1P Filtering Support
               Unsigned 8-bit integer
               802.1P Filtering Support

           docsis_tlv.mcap.dot1qfilt  .9 802.1Q Filtering Support
               Unsigned 8-bit integer
               802.1Q Filtering Support

           docsis_tlv.mcap.downsaid  .7 # Downstream SAIDs Supported
               Unsigned 8-bit integer
               Downstream Said Support

           docsis_tlv.mcap.frag  .3 Fragmentation Support
               Boolean
               Fragmentation Support

           docsis_tlv.mcap.igmp  .5 IGMP Support
               Boolean
               IGMP Support

           docsis_tlv.mcap.numtaps  .11 # Xmit Equalizer Taps
               Unsigned 8-bit integer
               Number of Transmit Equalizer Taps

           docsis_tlv.mcap.phs  .4 PHS Support
               Boolean
               PHS Support

           docsis_tlv.mcap.privacy  .6 Privacy Support
               Boolean
               Privacy Support

           docsis_tlv.mcap.tapspersym  .10 Xmit Equalizer Taps/Sym
               Unsigned 8-bit integer
               Transmit Equalizer Taps per Symbol

           docsis_tlv.mcap.upsid  .8 # Upstream SAIDs Supported
               Unsigned 8-bit integer
               Upstream SID Support

           docsis_tlv.mfgr_cvc  32 Manufacturer CVC
               Byte array
               Manufacturer CVC

           docsis_tlv.modemaddr  12 Modem IP Address
               IPv4 address
               Modem IP Address

           docsis_tlv.netaccess  3 Network Access
               Boolean
               Network Access TLV

           docsis_tlv.phs  26 PHS Rules
               Byte array
               PHS Rules

           docsis_tlv.phs.classid  .2 Classifier Id
               Unsigned 16-bit integer
               Classifier Id

           docsis_tlv.phs.classref  .1 Classifier Reference
               Unsigned 8-bit integer
               Classifier Reference

           docsis_tlv.phs.dscaction  .5 DSC Action
               Unsigned 8-bit integer
               Dynamic Service Change Action

           docsis_tlv.phs.err  .6 Error Encodings
               Byte array
               Error Encodings

           docsis_tlv.phs.err.code  ..2 Error Code
               Unsigned 8-bit integer
               Error Code

           docsis_tlv.phs.err.msg  ..3 Error Message
               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
               Ranging Technique

           docsis_tlv.sflow.act_timeout  .12 Timeout for Active Params (secs)
               Unsigned 16-bit integer
               Timeout for Active Params (secs)

           docsis_tlv.sflow.adm_timeout  .13 Timeout for Admitted Params (secs)
               Unsigned 16-bit integer
               Timeout for Admitted Params (secs)

           docsis_tlv.sflow.assumed_min_pkt_size  .11 Assumed Min Reserved Packet Size
               Unsigned 16-bit integer
               Assumed Minimum Reserved Packet Size

           docsis_tlv.sflow.cname  .4 Service Class Name
               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
               Subscriber Management CPE IP Entry

           docsis_tlv.subsiptable  36 Subscriber Management CPE IP Table
               Byte array
               Subscriber Management CPE IP Table

           docsis_tlv.subsmgmtctrl  35 Subscriber Management Control
               Byte array
               Subscriber Management Control

           docsis_tlv.svcunavail  13 Service Not Available Response
               Byte array
               Service Not Available Response

           docsis_tlv.svcunavail.classid  Service Not Available: (Class ID)
               Unsigned 8-bit integer
               Service Not Available (Class ID)

           docsis_tlv.svcunavail.code  Service Not Available (Code)
               Unsigned 8-bit integer
               Service Not Available (Code)

           docsis_tlv.svcunavail.type  Service Not Available (Type)
               Unsigned 8-bit integer
               Service Not Available (Type)

           docsis_tlv.sw_upg_file  9 Software Upgrade File
               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
               22 Upstream Classifier

           docsis_tlv.upsflow  24 Upstream Service Flow
               Byte array
               24 Upstream Service Flow

           docsis_tlv.vendorid  8 Vendor ID
               Byte array
               Vendor Identifier

           docsis_tlv.vendorspec  43 Vendor Specific Encodings
               Byte array
               Vendor Specific Encodings

   DOCSIS 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
               BPKM Identifier

           docsis_bpkmreq.length  BPKM Length
               Unsigned 16-bit integer
               BPKM Length

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

           docsis_bpkmrsp.length  BPKM Length
               Unsigned 16-bit integer
               BPKM Length

   DOCSIS Downstream Channel Change Acknowledge  (docsis_dccack)
           docsis_dccack.hmac_digest  HMAC-DigestNumber
               Byte array
               HMAC-DigestNumber

           docsis_dccack.key_seq_num  Auth Key Sequence Number
               Unsigned 8-bit integer
               Auth Key Sequence Number

           docsis_dccack.tran_id  Transaction ID
               Unsigned 16-bit integer
               Transaction ID

   DOCSIS Downstream Channel Change Request  (docsis_dccreq)
           docsis_dccreq.cmts_mac_addr  CMTS Mac Address
               6-byte Hardware (MAC) Address
               CMTS Mac Address

           docsis_dccreq.ds_chan_id  Downstream Channel ID
               Unsigned 8-bit integer
               Downstream Channel ID

           docsis_dccreq.ds_freq  Frequency
               Unsigned 32-bit integer
               Frequency

           docsis_dccreq.ds_intlv_depth_i  Interleaver Depth I Value
               Unsigned 8-bit integer
               Interleaver Depth I Value

           docsis_dccreq.ds_intlv_depth_j  Interleaver Depth J Value
               Unsigned 8-bit integer
               Interleaver Depth J Value

           docsis_dccreq.ds_mod_type  Modulation Type
               Unsigned 8-bit integer
               Modulation Type

           docsis_dccreq.ds_sym_rate  Symbol Rate
               Unsigned 8-bit integer
               Symbol Rate

           docsis_dccreq.ds_sync_sub  SYNC Substitution
               Unsigned 8-bit integer
               SYNC Substitution

           docsis_dccreq.hmac_digest  HMAC-DigestNumber
               Byte array
               HMAC-DigestNumber

           docsis_dccreq.init_tech  Initialization Technique
               Unsigned 8-bit integer
               Initialization Technique

           docsis_dccreq.key_seq_num  Auth Key Sequence Number
               Unsigned 8-bit integer
               Auth Key Sequence Number

           docsis_dccreq.said_sub_cur  SAID Sub - Current Value
               Unsigned 16-bit integer
               SAID Sub - Current Value

           docsis_dccreq.said_sub_new  SAID Sub - New Value
               Unsigned 16-bit integer
               SAID Sub - New Value

           docsis_dccreq.sf_sfid_cur  SF Sub - SFID Current Value
               Unsigned 32-bit integer
               SF Sub - SFID Current Value

           docsis_dccreq.sf_sfid_new  SF Sub - SFID New Value
               Unsigned 32-bit integer
               SF Sub - SFID New Value

           docsis_dccreq.sf_sid_cur  SF Sub - SID Current Value
               Unsigned 16-bit integer
               SF Sub - SID Current Value

           docsis_dccreq.sf_sid_new  SF Sub - SID New Value
               Unsigned 16-bit integer
               SF Sub - SID New Value

           docsis_dccreq.sf_unsol_grant_tref  SF Sub - Unsolicited Grant Time Reference
               Unsigned 32-bit integer
               SF Sub - Unsolicited Grant Time Reference

           docsis_dccreq.tran_id  Transaction ID
               Unsigned 16-bit integer
               Transaction ID

           docsis_dccreq.ucd_sub  UCD Substitution
               Byte array
               UCD Substitution

           docsis_dccreq.up_chan_id  Up Channel ID
               Unsigned 8-bit integer
               Up Channel ID

   DOCSIS Downstream Channel Change Response  (docsis_dccrsp)
           docsis_dccrsp.cm_jump_time_length  Jump Time Length
               Unsigned 32-bit integer
               Jump Time Length

           docsis_dccrsp.cm_jump_time_start  Jump Time Start
               Unsigned 64-bit integer
               Jump Time Start

           docsis_dccrsp.conf_code  Confirmation Code
               Unsigned 8-bit integer
               Confirmation Code

           docsis_dccrsp.hmac_digest  HMAC-DigestNumber
               Byte array
               HMAC-DigestNumber

           docsis_dccrsp.key_seq_num  Auth Key Sequence Number
               Unsigned 8-bit integer
               Auth Key Sequence Number

           docsis_dccrsp.tran_id  Transaction ID
               Unsigned 16-bit integer
               Transaction ID

   DOCSIS Downstream Channel Descriptor  (docsis_dcd)
           docsis_dcd.cfg_chan  DSG Configuration Channel
               Unsigned 32-bit integer
               DSG Configuration Channel

           docsis_dcd.cfg_tdsg1  DSG Initialization Timeout (Tdsg1)
               Unsigned 16-bit integer
               DSG Initialization Timeout (Tdsg1)

           docsis_dcd.cfg_tdsg2  DSG Operational Timeout (Tdsg2)
               Unsigned 16-bit integer
               DSG Operational Timeout (Tdsg2)

           docsis_dcd.cfg_tdsg3  DSG Two-Way Retry Timer (Tdsg3)
               Unsigned 16-bit integer
               DSG Two-Way Retry Timer (Tdsg3)

           docsis_dcd.cfg_tdsg4  DSG One-Way Retry Timer (Tdsg4)
               Unsigned 16-bit integer
               DSG One-Way Retry Timer (Tdsg4)

           docsis_dcd.cfg_vendor_spec  DSG Configuration Vendor Specific Parameters
               Byte array
               DSG Configuration Vendor Specific Parameters

           docsis_dcd.cfr_id  Downstream Classifier Id
               Unsigned 16-bit integer
               Downstream Classifier Id

           docsis_dcd.cfr_ip_dest_addr  Downstream Classifier IP Destination Address
               IPv4 address
               Downstream Classifier IP Destination Address

           docsis_dcd.cfr_ip_dest_mask  Downstream Classifier IP Destination Mask
               IPv4 address
               Downstream Classifier IP Destination Address

           docsis_dcd.cfr_ip_source_addr  Downstream Classifier IP Source Address
               IPv4 address
               Downstream Classifier IP Source Address

           docsis_dcd.cfr_ip_source_mask  Downstream Classifier IP Source Mask
               IPv4 address
               Downstream Classifier IP Source Mask

           docsis_dcd.cfr_ip_tcpudp_dstport_end  Downstream Classifier IP TCP/UDP Destination Port End
               Unsigned 16-bit integer
               Downstream Classifier IP TCP/UDP Destination Port End

           docsis_dcd.cfr_ip_tcpudp_dstport_start  Downstream Classifier IP TCP/UDP Destination Port Start
               Unsigned 16-bit integer
               Downstream Classifier IP TCP/UDP Destination Port Start

           docsis_dcd.cfr_ip_tcpudp_srcport_end  Downstream Classifier IP TCP/UDP Source Port End
               Unsigned 16-bit integer
               Downstream Classifier IP TCP/UDP Source Port End

           docsis_dcd.cfr_ip_tcpudp_srcport_start  Downstream Classifier IP TCP/UDP Source Port Start
               Unsigned 16-bit integer
               Downstream Classifier IP TCP/UDP Source Port Start

           docsis_dcd.cfr_rule_pri  Downstream Classifier Rule Priority
               Unsigned 8-bit integer
               Downstream Classifier Rule Priority

           docsis_dcd.clid_app_id  DSG Rule Client ID Application ID
               Unsigned 16-bit integer
               DSG Rule Client ID Application ID

           docsis_dcd.clid_ca_sys_id  DSG Rule Client ID CA System ID
               Unsigned 16-bit integer
               DSG Rule Client ID CA System ID

           docsis_dcd.clid_known_mac_addr  DSG Rule Client ID Known MAC Address
               6-byte Hardware (MAC) Address
               DSG Rule Client ID Known MAC Address

           docsis_dcd.config_ch_cnt  Configuration Change Count
               Unsigned 8-bit integer
               Configuration Change Count

           docsis_dcd.frag_sequence_num  Fragment Sequence Number
               Unsigned 8-bit integer
               Fragment Sequence Number

           docsis_dcd.num_of_frag  Number of Fragments
               Unsigned 8-bit integer
               Number of Fragments

           docsis_dcd.rule_cfr_id  DSG Rule Classifier ID
               Unsigned 16-bit integer
               DSG Rule Classifier ID

           docsis_dcd.rule_id  DSG Rule Id
               Unsigned 8-bit integer
               DSG Rule Id

           docsis_dcd.rule_pri  DSG Rule Priority
               Unsigned 8-bit integer
               DSG Rule Priority

           docsis_dcd.rule_tunl_addr  DSG Rule Tunnel MAC Address
               6-byte Hardware (MAC) Address
               DSG Rule Tunnel MAC Address

           docsis_dcd.rule_ucid_list  DSG Rule UCID Range
               Byte array
               DSG Rule UCID Range

           docsis_dcd.rule_vendor_spec  DSG Rule Vendor Specific Parameters
               Byte array
               DSG Rule Vendor Specific Parameters

   DOCSIS Dynamic Service Addition Acknowledge (docsis_dsaack)
           docsis_dsaack.confcode  Confirmation Code
               Unsigned 8-bit integer
               Confirmation Code

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

   DOCSIS Dynamic Service Addition Response (docsis_dsarsp)
           docsis_dsarsp.confcode  Confirmation Code
               Unsigned 8-bit integer
               Confirmation Code

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

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

   DOCSIS Dynamic Service Change Response (docsis_dscrsp)
           docsis_dscrsp.confcode  Confirmation Code
               Unsigned 8-bit integer
               Confirmation Code

           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
               Reserved

           docsis_dsdreq.sfid  Service Flow ID
               Unsigned 32-bit integer
               Service Flow Id

           docsis_dsdreq.tranid  Transaction Id
               Unsigned 16-bit integer
               Transaction Id

   DOCSIS Dynamic Service Delete Response (docsis_dsdrsp)
           docsis_dsdrsp.confcode  Confirmation Code
               Unsigned 8-bit integer
               Confirmation Code

           docsis_dsdrsp.rsvd  Reserved
               Unsigned 8-bit integer
               Reserved

           docsis_dsdrsp.tranid  Transaction Id
               Unsigned 16-bit integer
               Transaction Id

   DOCSIS Initial Ranging Message (docsis_intrngreq)
           docsis_intrngreq.downchid  Downstream Channel ID
               Unsigned 8-bit integer
               Downstream Channel ID

           docsis_intrngreq.sid  Service Identifier
               Unsigned 16-bit integer
               Service Identifier

           docsis_intrngreq.upchid  Upstream Channel ID
               Unsigned 8-bit integer
               Upstream Channel ID

   DOCSIS 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
               Destination Address

           docsis_mgmt.msglen  Message Length - DSAP to End (Bytes)
               Unsigned 16-bit integer
               Message Length

           docsis_mgmt.rsvd  Reserved [0x00]
               Unsigned 8-bit integer
               Reserved

           docsis_mgmt.src  Source Address
               6-byte Hardware (MAC) Address
               Source Address

           docsis_mgmt.ssap  SSAP [0x00]
               Unsigned 8-bit integer
               Source SAP

           docsis_mgmt.type  Type
               Unsigned 8-bit integer
               Type

           docsis_mgmt.version  Version
               Unsigned 8-bit integer
               Version

   DOCSIS Range Request Message (docsis_rngreq)
           docsis_rngreq.downchid  Downstream Channel ID
               Unsigned 8-bit integer
               Downstream Channel ID

           docsis_rngreq.pendcomp  Pending Till Complete
               Unsigned 8-bit integer
               Upstream Channel ID

           docsis_rngreq.sid  Service Identifier
               Unsigned 16-bit integer
               Service Identifier

   DOCSIS Ranging Response (docsis_rngrsp)
           docsis_rngrsp.chid_override  Upstream Channel ID Override
               Unsigned 8-bit integer
               Upstream Channel ID Override

           docsis_rngrsp.freq_over  Downstream Frequency Override (Hz)
               Unsigned 32-bit integer
               Downstream Frequency Override

           docsis_rngrsp.freqadj  Offset Freq Adjust (Hz)
               Signed 16-bit integer
               Frequency Adjust

           docsis_rngrsp.poweradj  Power Level Adjust (0.25dB units)
               Signed 8-bit integer
               Power Level Adjust

           docsis_rngrsp.rng_stat  Ranging Status
               Unsigned 8-bit integer
               Ranging Status

           docsis_rngrsp.sid  Service Identifier
               Unsigned 16-bit integer
               Service Identifier

           docsis_rngrsp.timingadj  Timing Adjust (6.25us/64)
               Signed 32-bit integer
               Timing Adjust

           docsis_rngrsp.upchid  Upstream Channel ID
               Unsigned 8-bit integer
               Upstream Channel ID

           docsis_rngrsp.xmit_eq_adj  Transmit Equalisation Adjust
               Byte array
               Timing Equalisation Adjust

   DOCSIS Registration Acknowledge (docsis_regack)
           docsis_regack.respnse  Response Code
               Unsigned 8-bit integer
               Response Code

           docsis_regack.sid  Service Identifier
               Unsigned 16-bit integer
               Service Identifier

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

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

           docsis_regrsp.sid  Service Identifier
               Unsigned 16-bit integer
               Service Identifier

   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
               Alloc Start Time (minislots)

           docsis_map.data_end  Data Backoff End
               Unsigned 8-bit integer
               Data Backoff End

           docsis_map.data_start  Data Backoff Start
               Unsigned 8-bit integer
               Data Backoff Start

           docsis_map.ie  Information Element
               Unsigned 32-bit integer
               Information Element

           docsis_map.iuc  Interval Usage Code
               Unsigned 32-bit integer
               Interval Usage Code

           docsis_map.numie  Number of IE's
               Unsigned 8-bit integer
               Number of Information Elements

           docsis_map.offset  Offset
               Unsigned 32-bit integer
               Offset

           docsis_map.rng_end  Ranging Backoff End
               Unsigned 8-bit integer
               Ranging Backoff End

           docsis_map.rng_start  Ranging Backoff Start
               Unsigned 8-bit integer
               Ranging Backoff Start

           docsis_map.rsvd  Reserved [0x00]
               Unsigned 8-bit integer
               Reserved Byte

           docsis_map.sid  Service Identifier
               Unsigned 32-bit integer
               Service Identifier

           docsis_map.ucdcount  UCD Count
               Unsigned 8-bit integer
               Map UCD Count

           docsis_map.upchid  Upstream Channel ID
               Unsigned 8-bit integer
               Upstream Channel ID

   DOCSIS Upstream Channel Change Request (docsis_uccreq)
           docsis_uccreq.upchid  Upstream Channel Id
               Unsigned 8-bit integer
               Upstream Channel Id

   DOCSIS Upstream Channel Change Response (docsis_uccrsp)
           docsis_uccrsp.upchid  Upstream Channel Id
               Unsigned 8-bit integer
               Upstream Channel Id

   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
               Interval Usage Code

           docsis_ucd.length  TLV Length
               Unsigned 8-bit integer
               Channel TLV length

           docsis_ucd.mslotsize  Mini Slot Size (6.25us TimeTicks)
               Unsigned 8-bit integer
               Mini Slot Size (6.25us TimeTicks)

           docsis_ucd.preamble  Preamble Pattern
               Byte array
               Preamble Superstring

           docsis_ucd.symrate  Symbol Rate (ksym/sec)
               Unsigned 8-bit integer
               Symbol Rate

           docsis_ucd.type  TLV Type
               Unsigned 8-bit integer
               Channel TLV type

           docsis_ucd.upchid  Upstream Channel ID
               Unsigned 8-bit integer
               Upstream Channel ID

   DOCSIS 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
               Interval Usage Code

           docsis_type29ucd.maintainpowerspectraldensity  15 Maintain power spectral density
               Byte array
               Maintain power spectral density

           docsis_type29ucd.mslotsize  Mini Slot Size (6.25us TimeTicks)
               Unsigned 8-bit integer
               Mini Slot Size (6.25us TimeTicks)

           docsis_type29ucd.preamble  3 Preamble Pattern
               Byte array
               Preamble Superstring

           docsis_type29ucd.rangingrequired  16 Ranging Required
               Byte array
               Ranging Required

           docsis_type29ucd.scdmaactivecodes  10 SCDMA Active Codes
               Byte array
               SCDMA Active Codes

           docsis_type29ucd.scdmacodehoppingseed  11 SCDMA Code Hopping Seed
               Byte array
               SCDMA Code Hopping Seed

           docsis_type29ucd.scdmacodesperminislot  9 SCDMA Codes per mini slot
               Byte array
               SCDMA Codes per mini slot

           docsis_type29ucd.scdmaenable  7 SCDMA Mode Enable
               Byte array
               SCDMA Mode Enable

           docsis_type29ucd.scdmaspreadinginterval  8 SCDMA Spreading Interval
               Byte array
               SCDMA Spreading Interval

           docsis_type29ucd.scdmatimestamp  14 SCDMA Timestamp Snapshot
               Byte array
               SCDMA Timestamp Snapshot

           docsis_type29ucd.scdmausratiodenom  13 SCDMA US Ratio Denominator
               Byte array
               SCDMA US Ratio Denominator

           docsis_type29ucd.scdmausrationum  12 SCDMA US Ratio Numerator
               Byte array
               SCDMA US Ratio Numerator

           docsis_type29ucd.symrate  1 Symbol Rate (ksym/sec)
               Unsigned 8-bit integer
               Symbol Rate

           docsis_type29ucd.upchid  Upstream Channel ID
               Unsigned 8-bit integer
               Upstream Channel ID

   DOCSIS Vendor Specific Encodings (docsis_vsif)
           docsis_vsif.cisco.iosfile  IOS Config File
               String
               IOS Config File

           docsis_vsif.cisco.ipprec  IP Precedence Encodings
               Byte array
               IP Precedence Encodings

           docsis_vsif.cisco.ipprec.bw  IP Precedence Bandwidth
               Unsigned 8-bit integer
               IP Precedence Bandwidth

           docsis_vsif.cisco.ipprec.value  IP Precedence Value
               Unsigned 8-bit integer
               IP Precedence Value

           docsis_vsif.cisco.numphones  Number of phone lines
               Unsigned 8-bit integer
               Number of phone lines

           docsis_vsif.unknown  VSIF Encodings
               Byte array
               Unknown Vendor

           docsis_vsif.vendorid  Vendor Id
               Unsigned 24-bit integer
               Vendor Identifier

   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

   Data (data)
           data.data  Data
               Byte array

           data.len  Length
               Signed 32-bit integer

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

           dsi.error_code  Error code
               Signed 32-bit integer
               Error code

           dsi.flags  Flags
               Unsigned 8-bit integer
               Indicates request or reply.

           dsi.length  Length
               Unsigned 32-bit integer
               Total length of the data that follows the DSI header.

           dsi.open_len  Length
               Unsigned 8-bit integer
               Open session option len

           dsi.open_option  Option
               Byte array
               Open session options (undecoded)

           dsi.open_quantum  Quantum
               Unsigned 32-bit integer
               Server/Attention quantum

           dsi.open_type  Flags
               Unsigned 8-bit integer
               Open session option type.

           dsi.requestid  Request ID
               Unsigned 16-bit integer
               Keeps track of which request this is.  Replies must match a Request.  IDs must be generated in sequential order.

           dsi.reserved  Reserved
               Unsigned 32-bit integer
               Reserved for future use.  Should be set to zero.

           dsi.server_addr.len  Length
               Unsigned 8-bit integer
               Address length.

           dsi.server_addr.type  Type
               Unsigned 8-bit integer
               Address type.

           dsi.server_addr.value  Value
               Byte array
               Address value

           dsi.server_directory  Directory service
               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.fast_copy  Support fast copy
               Boolean
               Server support fast copy

           dsi.server_flag.no_save_passwd  Don't allow save password
               Boolean
               Don't allow save password

           dsi.server_flag.notify  Support server notifications
               Boolean
               Server support notifications

           dsi.server_flag.passwd  Support change password
               Boolean
               Server support change password

           dsi.server_flag.reconnect  Support server reconnect
               Boolean
               Server support reconnect

           dsi.server_flag.srv_msg  Support server message
               Boolean
               Support server message

           dsi.server_flag.srv_sig  Support server signature
               Boolean
               Support server signature

           dsi.server_flag.tcpip  Support TCP/IP
               Boolean
               Server support TCP/IP

           dsi.server_flag.utf8_name  Support UTF8 server name
               Boolean
               Server support UTF8 server name

           dsi.server_flag.uuids  Support UUIDs
               Boolean
               Server supports UUIDs

           dsi.server_icon  Icon bitmap
               Byte array
               Server icon bitmap

           dsi.server_name  Server name
               Length string pair
               Server name

           dsi.server_signature  Server signature
               Byte array
               Server signature

           dsi.server_type  Server type
               Length string pair
               Server type

           dsi.server_uams  UAM
               Length string pair
               UAM

           dsi.server_vers  AFP version
               Length string pair
               AFP version

           dsi.utf8_server_name  UTF8 Server name
               String
               UTF8 Server name

           dsi.utf8_server_name_len  Length
               Unsigned 16-bit integer
               UTF8 server name length.

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

           dtls.handshake.cert_types  Certificate types
               No value
               List of certificate types

           dtls.handshake.cert_types_count  Certificate types count
               Unsigned 8-bit integer
               Count of certificate types

           dtls.handshake.certificate  Certificate
               Byte array
               Certificate

           dtls.handshake.certificate_length  Certificate Length
               Unsigned 24-bit integer
               Length of certificate

           dtls.handshake.certificates  Certificates
               No value
               List of certificates

           dtls.handshake.certificates_length  Certificates Length
               Unsigned 24-bit integer
               Length of certificates field

           dtls.handshake.cipher_suites_length  Cipher Suites Length
               Unsigned 16-bit integer
               Length of cipher suites field

           dtls.handshake.ciphersuite  Cipher Suite
               Unsigned 16-bit integer
               Cipher suite

           dtls.handshake.ciphersuites  Cipher Suites
               No value
               List of cipher suites supported by client

           dtls.handshake.comp_method  Compression Method
               Unsigned 8-bit integer
               Compression Method

           dtls.handshake.comp_methods  Compression Methods
               No value
               List of compression methods supported by client

           dtls.handshake.comp_methods_length  Compression Methods Length
               Unsigned 8-bit integer
               Length of compression methods field

           dtls.handshake.cookie  Cookie
               Byte array
               Cookie

           dtls.handshake.cookie_length  Cookie Length
               Unsigned 8-bit integer
               Length of the cookie field

           dtls.handshake.dname  Distinguished Name
               Byte array
               Distinguished name of a CA that server trusts

           dtls.handshake.dname_len  Distinguished Name Length
               Unsigned 16-bit integer
               Length of distinguished name

           dtls.handshake.dnames  Distinguished Names
               No value
               List of CAs that server trusts

           dtls.handshake.dnames_len  Distinguished Names Length
               Unsigned 16-bit integer
               Length of list of CAs that server trusts

           dtls.handshake.extension.data  Data
               Byte array
               Hello Extension data

           dtls.handshake.extension.len  Length
               Unsigned 16-bit integer
               Length of a hello extension

           dtls.handshake.extension.type  Type
               Unsigned 16-bit integer
               Hello extension type

           dtls.handshake.extensions_length  Extensions Length
               Unsigned 16-bit integer
               Length of hello extensions

           dtls.handshake.fragment_length  Fragment Length
               Unsigned 24-bit integer
               Fragment length of handshake message

           dtls.handshake.fragment_offset  Fragment Offset
               Unsigned 24-bit integer
               Fragment offset of handshake message

           dtls.handshake.length  Length
               Unsigned 24-bit integer
               Length of handshake message

           dtls.handshake.md5_hash  MD5 Hash
               No value
               Hash of messages, master_secret, etc.

           dtls.handshake.message_seq  Message Sequence
               Unsigned 16-bit integer
               Message sequence of handshake message

           dtls.handshake.random  Random.bytes
               No value
               Random challenge used to authenticate server

           dtls.handshake.random_time  Random.gmt_unix_time
               Date/Time stamp
               Unix time field of random structure

           dtls.handshake.session_id  Session ID
               Byte array
               Identifies the DTLS session, allowing later resumption

           dtls.handshake.session_id_length  Session ID Length
               Unsigned 8-bit integer
               Length of session ID field

           dtls.handshake.sha_hash  SHA-1 Hash
               No value
               Hash of messages, master_secret, etc.

           dtls.handshake.type  Handshake Type
               Unsigned 8-bit integer
               Type of handshake message

           dtls.handshake.verify_data  Verify Data
               No value
               Opaque verification data

           dtls.handshake.version  Version
               Unsigned 16-bit integer
               Maximum version supported by client

           dtls.reassembled.in  Reassembled in
               Frame number

           dtls.record  Record Layer
               No value
               Record layer

           dtls.record.content_type  Content Type
               Unsigned 8-bit integer
               Content type

           dtls.record.epoch  Epoch
               Unsigned 16-bit integer
               Epoch

           dtls.record.length  Length
               Unsigned 16-bit integer
               Length of DTLS record data

           dtls.record.sequence_number  Sequence Number
               Double-precision floating point
               Sequence Number

           dtls.record.version  Version
               Unsigned 16-bit integer
               Record layer version.

   Daytime 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
               Buffer Size

           dtpt.comment  Comment
               NULL terminated string
               Comment

           dtpt.context  Context
               NULL terminated string
               Context

           dtpt.cs_addr.local  Local Address
               Unsigned 32-bit integer
               Local Address

           dtpt.cs_addr.local_length  Local Address Length
               Unsigned 32-bit integer
               Local Address Pointer

           dtpt.cs_addr.local_pointer  Local Address Pointer
               Unsigned 32-bit integer
               Local Address Pointer

           dtpt.cs_addr.remote  Remote Address
               Unsigned 32-bit integer
               Remote Address

           dtpt.cs_addr.remote_length  Remote Address Length
               Unsigned 32-bit integer
               Remote Address Pointer

           dtpt.cs_addr.remote_pointer  Remote Address Pointer
               Unsigned 32-bit integer
               Remote Address Pointer

           dtpt.cs_addrs.length1  Length of CS Addresses Part 1
               Unsigned 32-bit integer
               Length of CS Addresses Part 1

           dtpt.cs_addrs.number  Number of CS Addresses
               Unsigned 32-bit integer
               Number of CS Addresses

           dtpt.cs_addrs.protocol  Protocol
               Unsigned 32-bit integer
               Protocol

           dtpt.cs_addrs.socket_type  Socket Type
               Unsigned 32-bit integer
               Socket Type

           dtpt.data_size  Data Size
               Unsigned 32-bit integer
               Data Size

           dtpt.error  Last Error
               Unsigned 32-bit integer
               Last Error

           dtpt.flags  ControlFlags
               Unsigned 32-bit integer
               ControlFlags as documented for WSALookupServiceBegin

           dtpt.flags.containers  CONTAINERS
               Boolean
               CONTAINERS

           dtpt.flags.deep  DEEP
               Boolean
               DEEP

           dtpt.flags.flushcache  FLUSHCACHE
               Boolean
               FLUSHCACHE

           dtpt.flags.flushprevious  FLUSHPREVIOUS
               Boolean
               FLUSHPREVIOUS

           dtpt.flags.nearest  NEAREST
               Boolean
               NEAREST

           dtpt.flags.nocontainers  NOCONTAINERS
               Boolean
               NOCONTAINERS

           dtpt.flags.res_service  RES_SERVICE
               Boolean
               RES_SERVICE

           dtpt.flags.return_addr  RETURN_ADDR
               Boolean
               RETURN_ADDR

           dtpt.flags.return_aliases  RETURN_ALIASES
               Boolean
               RETURN_ALIASES

           dtpt.flags.return_blob  RETURN_BLOB
               Boolean
               RETURN_BLOB

           dtpt.flags.return_comment  RETURN_COMMENT
               Boolean
               RETURN_COMMENT

           dtpt.flags.return_name  RETURN_NAME
               Boolean
               RETURN_NAME

           dtpt.flags.return_query_string  RETURN_QUERY_STRING
               Boolean
               RETURN_QUERY_STRING

           dtpt.flags.return_type  RETURN_TYPE
               Boolean
               RETURN_TYPE

           dtpt.flags.return_version  RETURN_VERSION
               Boolean
               RETURN_VERSION

           dtpt.guid.data  Data
               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
               NS Provider ID

           dtpt.payload_size  Payload Size
               Unsigned 32-bit integer
               Payload Size of the following packet containing a serialized WSAQUERYSET

           dtpt.protocol.family  Family
               Unsigned 32-bit integer
               Protocol Family

           dtpt.protocol.protocol  Protocol
               Unsigned 32-bit integer
               Protocol Protocol

           dtpt.protocols.length  Length of Protocols
               Unsigned 32-bit integer
               Length of Protocols

           dtpt.protocols.number  Number of Protocols
               Unsigned 32-bit integer
               Number of Protocols

           dtpt.query_string  Query String
               NULL terminated string
               Query String

           dtpt.queryset.dwNameSpace  dwNameSpace
               Unsigned 32-bit integer
               dwNameSpace field in WSAQUERYSE

           dtpt.queryset.dwNumberOfCsAddrs  dwNumberOfCsAddrs
               Unsigned 32-bit integer
               dwNumberOfCsAddrs field in WSAQUERYSET

           dtpt.queryset.dwNumberOfProtocols  dwNumberOfProtocols
               Unsigned 32-bit integer
               dwNumberOfProtocols field in WSAQUERYSET

           dtpt.queryset.dwOutputFlags  dwOutputFlags
               Unsigned 32-bit integer
               dwOutputFlags field in WSAQUERYSET

           dtpt.queryset.dwSize  dwSize
               Unsigned 32-bit integer
               dwSize field in WSAQUERYSET

           dtpt.queryset.lpBlob  lpBlob
               Unsigned 32-bit integer
               lpBlob field in WSAQUERYSET

           dtpt.queryset.lpNSProviderId  lpNSProviderId
               Unsigned 32-bit integer
               lpNSProviderId field in WSAQUERYSET

           dtpt.queryset.lpServiceClassId  lpServiceClassId
               Unsigned 32-bit integer
               lpServiceClassId in the WSAQUERYSET

           dtpt.queryset.lpVersion  lpVersion
               Unsigned 32-bit integer
               lpVersion in WSAQUERYSET

           dtpt.queryset.lpafpProtocols  lpafpProtocols
               Unsigned 32-bit integer
               lpafpProtocols field in WSAQUERYSET

           dtpt.queryset.lpcsaBuffer  lpcsaBuffer
               Unsigned 32-bit integer
               lpcsaBuffer field in WSAQUERYSET

           dtpt.queryset.lpszContext  lpszContext
               Unsigned 32-bit integer
               lpszContext field in WSAQUERYSET

           dtpt.queryset.lpszQueryString  lpszQueryString
               Unsigned 32-bit integer
               lpszQueryString field in WSAQUERYSET

           dtpt.queryset.lpszServiceInstanceName  lpszServiceInstanceName
               Unsigned 32-bit integer
               lpszServiceInstanceName field in WSAQUERYSET

           dtpt.queryset_size  QuerySet Size
               Unsigned 32-bit integer
               Size of the binary WSAQUERYSET

           dtpt.service_class_id  Service Class ID
               Globally Unique Identifier
               Service Class ID

           dtpt.service_instance_name  Service Instance Name
               NULL terminated string
               Service Instance Name

           dtpt.sockaddr.address  Address
               IPv4 address
               Socket Address Address

           dtpt.sockaddr.family  Family
               Unsigned 16-bit integer
               Socket Address Family

           dtpt.sockaddr.length  Length
               Unsigned 16-bit integer
               Socket Address Length

           dtpt.sockaddr.port  Port
               Unsigned 16-bit integer
               Socket Address Port

           dtpt.version  Version
               Unsigned 8-bit integer
               Protocol Version

           dtpt.wstring.data  Data
               String
               String Data

           dtpt.wstring.length  Length
               Unsigned 32-bit integer
               String Length

   Diameter 3GPP (diameter3gpp)
           diameter.3gpp.ipaddr  IPv4 Address
               IPv4 address
               IPv4 Address

           diameter.3gpp.mbms_required_qos_prio  Allocation/Retention Priority
               Unsigned 8-bit integer
               Allocation/Retention Priority

           diameter.3gpp.mbms_service_id  MBMS Service ID
               Unsigned 24-bit integer
               MBMS Service ID

           diameter.3gpp.msisdn  MSISDN
               Byte array
               MSISDN

           diameter.3gpp.tmgi  TMGI
               Byte array
               TMGI

   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
               Unsigned 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
               Unsigned 32-bit integer
               code=72

           diameter.AUTN  AUTN
               Byte array
               vendor=10415 code=1449

           diameter.Abort-Cause  Abort-Cause
               Unsigned 32-bit integer
               vendor=10415 code=500

           diameter.Acc-Service-Type  Acc-Service-Type
               Unsigned 32-bit integer
               vendor=193 code=261

           diameter.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
               Unsigned 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
               Unsigned 32-bit integer
               code=480

           diameter.Accounting-Session-Id  Accounting-Session-Id
               Unsigned 32-bit integer
               code=44

           diameter.Accounting-Sub-Session-Id  Accounting-Sub-Session-Id
               Unsigned 64-bit integer
               code=287

           diameter.Acct-Application-Id  Acct-Application-Id
               Signed 32-bit integer
               code=259

           diameter.Acct-Authentic  Acct-Authentic
               Unsigned 32-bit integer
               code=45

           diameter.Acct-Delay-Time  Acct-Delay-Time
               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-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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=899

           diameter.Addressee-Type  Addressee-Type
               Unsigned 32-bit integer
               vendor=10415 code=1208

           diameter.Aggregation-Network-Type  Aggregation-Network-Type
               Unsigned 32-bit integer
               vendor=13019 code=307

           diameter.Alert-Reason  Alert-Reason
               Unsigned 32-bit integer
               vendor=10415 code=1434

           diameter.All-APN-Configurations-Included-Indicator  All-APN-Configurations-Included-Indicator
               Unsigned 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
               Unsigned 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
               Unsigned 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.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
               Unsigned 32-bit integer
               vendor=10415 code=1023

           diameter.Bearer-Identifier  Bearer-Identifier
               Byte array
               vendor=10415 code=1020

           diameter.Bearer-Operation  Bearer-Operation
               Unsigned 32-bit integer
               vendor=10415 code=1021

           diameter.Bearer-Service  Bearer-Service
               Byte array
               vendor=10415 code=854

           diameter.Bearer-Usage  Bearer-Usage
               Unsigned 32-bit integer
               vendor=10415 code=1000

           diameter.Billing-Information  Billing-Information
               String
               vendor=10415 code=1115

           diameter.Binding-Input-List  Binding-Input-List
               Byte array
               vendor=13019 code=451

           diameter.Binding-Output-List  Binding-Output-List
               Byte array
               vendor=13019 code=452

           diameter.Binding-information  Binding-information
               Byte array
               vendor=13019 code=450

           diameter.BootstrapInfoCreationTime  BootstrapInfoCreationTime
               Unsigned 32-bit integer
               vendor=10415 code=408

           diameter.CC-Correlation-Id  CC-Correlation-Id
               Byte array
               code=411

           diameter.CC-Input-Octets  CC-Input-Octets
               Unsigned 64-bit integer
               code=412

           diameter.CC-Money  CC-Money
               Byte array
               code=413

           diameter.CC-Output-Octets  CC-Output-Octets
               Unsigned 64-bit integer
               code=414

           diameter.CC-Request-Number  CC-Request-Number
               Unsigned 32-bit integer
               code=415

           diameter.CC-Request-Type  CC-Request-Type
               Unsigned 32-bit integer
               code=416

           diameter.CC-Service-Specific-Units  CC-Service-Specific-Units
               Unsigned 64-bit integer
               code=417

           diameter.CC-Session-Failover  CC-Session-Failover
               Unsigned 32-bit integer
               code=418

           diameter.CC-Sub-Session-Id  CC-Sub-Session-Id
               Unsigned 64-bit integer
               code=419

           diameter.CC-Time  CC-Time
               Unsigned 32-bit integer
               code=420

           diameter.CC-Total-Octets  CC-Total-Octets
               Unsigned 64-bit integer
               code=421

           diameter.CC-Unit-Type  CC-Unit-Type
               Unsigned 32-bit integer
               code=454

           diameter.CHAP-Algorithm  CHAP-Algorithm
               Unsigned 32-bit integer
               code=403

           diameter.CHAP-Auth  CHAP-Auth
               Byte array
               code=402

           diameter.CHAP-Challenge  CHAP-Challenge
               Byte array
               code=60

           diameter.CHAP-Ident  CHAP-Ident
               Byte array
               code=404

           diameter.CHAP-Password  CHAP-Password
               Byte array
               code=3

           diameter.CHAP-Response  CHAP-Response
               Byte array
               code=405

           diameter.CN-IP-Multicast-Distribution  CN-IP-Multicast-Distribution
               Unsigned 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
               Unsigned 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.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
               Unsigned 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
               Unsigned 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
               Unsigned 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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1214

           diameter.Client-Address  Client-Address
               Byte array
               vendor=10415 code=2018

           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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1220

           diameter.Content-Disposition  Content-Disposition
               String
               vendor=10415 code=828

           diameter.Content-Length  Content-Length
               Unsigned 32-bit integer
               vendor=10415 code=827

           diameter.Content-Size  Content-Size
               Unsigned 32-bit integer
               vendor=10415 code=1206

           diameter.Content-Type  Content-Type
               String
               vendor=10415 code=826

           diameter.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
               Unsigned 32-bit integer
               code=426

           diameter.Credit-Control-Failure-Handling  Credit-Control-Failure-Handling
               Unsigned 32-bit integer
               code=427

           diameter.Currency-Code  Currency-Code
               Unsigned 32-bit integer
               code=425

           diameter.Current-Location  Current-Location
               Unsigned 32-bit integer
               vendor=10415 code=707

           diameter.Current-Tariff  Current-Tariff
               Byte array
               vendor=10415 code=2056

           diameter.DRM-Content  DRM-Content
               Unsigned 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.Delivery-Report  Delivery-Report
               Unsigned 32-bit integer
               vendor=10415 code=1111

           diameter.Delivery-Report-Requested  Delivery-Report-Requested
               Unsigned 32-bit integer
               vendor=10415 code=1216

           diameter.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
               Unsigned 32-bit integer
               code=428

           diameter.Disconnect-Cause  Disconnect-Cause
               Unsigned 32-bit integer
               code=273

           diameter.Domain-Name  Domain-Name
               String
               vendor=10415 code=1200

           diameter.Dynamic-Address-Flag  Dynamic-Address-Flag
               Unsigned 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.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
               Unsigned 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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1006

           diameter.Event-Type  Event-Type
               Byte array
               vendor=10415 code=823

           diameter.Experimental-Result  Experimental-Result
               Byte array
               code=297

           diameter.Experimental-Result-Code  Experimental-Result-Code
               Unsigned 32-bit integer
               code=298

           diameter.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
               Unsigned 32-bit integer
               vendor=10415 code=1224

           diameter.Filter-Id  Filter-Id
               String
               code=11

           diameter.Final-Unit-Action  Final-Unit-Action
               Unsigned 32-bit integer
               code=449

           diameter.Final-Unit-Indication  Final-Unit-Indication
               Byte array
               code=430

           diameter.Firmware-Revision  Firmware-Revision
               Unsigned 32-bit integer
               code=267

           diameter.Flow-Description  Flow-Description
               String
               vendor=10415 code=507

           diameter.Flow-Grouping  Flow-Grouping
               Byte array
               vendor=10415 code=508

           diameter.Flow-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
               Unsigned 32-bit integer
               vendor=10415 code=511

           diameter.Flow-Usage  Flow-Usage
               Unsigned 32-bit integer
               vendor=10415 code=512

           diameter.Flows  Flows
               Byte array
               vendor=10415 code=510

           diameter.Framed-AppleTalk-Link  Framed-AppleTalk-Link
               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
               Unsigned 32-bit integer
               code=13

           diameter.Framed-IP-Address  Framed-IP-Address
               Byte array
               code=8

           diameter.Framed-IP-Address.addr_family  Framed-IP-Address Address Family
               Unsigned 16-bit integer

           diameter.Framed-IP-Netmask  Framed-IP-Netmask
               Byte array
               code=9

           diameter.Framed-IP-Netmask.addr_family  Framed-IP-Netmask Address Family
               Unsigned 16-bit integer

           diameter.Framed-IPX-Network  Framed-IPX-Network
               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-Pool  Framed-Pool
               Byte array
               code=88

           diameter.Framed-Protocol  Framed-Protocol
               Unsigned 32-bit integer
               code=7

           diameter.Framed-Route  Framed-Route
               String
               code=22

           diameter.Framed-Routing  Framed-Routing
               Unsigned 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-Type  GBA-Type
               Unsigned 32-bit integer
               vendor=10415 code=410

           diameter.GBA-UserSecSettings  GBA-UserSecSettings
               Byte array
               vendor=10415 code=400

           diameter.GBA_U-Awareness-Indicator  GBA_U-Awareness-Indicator
               Unsigned 32-bit integer
               vendor=10415 code=407

           diameter.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
               Unsigned 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.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
               Unsigned 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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1492

           diameter.IMSI-Unauthenticated-Flag  IMSI-Unauthenticated-Flag
               Unsigned 32-bit integer
               vendor=10415 code=2308

           diameter.IP-CAN-Type  IP-CAN-Type
               Unsigned 32-bit integer
               vendor=10415 code=1027

           diameter.IP-Connectivity-Status  IP-Connectivity-Status
               Unsigned 32-bit integer
               vendor=13019 code=305

           diameter.Identity-Set  Identity-Set
               Unsigned 32-bit integer
               vendor=10415 code=708

           diameter.Idle-Timeout  Idle-Timeout
               Unsigned 32-bit integer
               code=28

           diameter.Immediate-Response-Preferred  Immediate-Response-Preferred
               Unsigned 32-bit integer
               vendor=10415 code=1412

           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.Initial-Gate-Setting  Initial-Gate-Setting
               Byte array
               vendor=13019 code=303

           diameter.Initial-Recipient-Address  Initial-Recipient-Address
               Byte array
               vendor=10415 code=1105

           diameter.Integrity-Key  Integrity-Key
               Byte array
               vendor=10415 code=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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1241

           diameter.LCS-Data-Coding-Scheme  LCS-Data-Coding-Scheme
               String
               vendor=10415 code=1236

           diameter.LCS-Format-Indicator  LCS-Format-Indicator
               Unsigned 32-bit integer
               vendor=10415 code=1237

           diameter.LCS-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-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
               Unsigned 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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=638

           diameter.Low-Balance-Indication  Low-Balance-Indication
               Unsigned 32-bit integer
               vendor=10415 code=2020

           diameter.MBMS-2G-3G-Indicator  MBMS-2G-3G-Indicator
               Unsigned 32-bit integer
               vendor=10415 code=907

           diameter.MBMS-BMSC-SSM-IP-Address  MBMS-BMSC-SSM-IP-Address
               Byte array
               vendor=10415 code=918

           diameter.MBMS-BMSC-SSM-IPv6-Address  MBMS-BMSC-SSM-IPv6-Address
               Byte array
               vendor=10415 code=919

           diameter.MBMS-Counting-Information  MBMS-Counting-Information
               Unsigned 32-bit integer
               vendor=10415 code=914

           diameter.MBMS-Flow-Identifier  MBMS-Flow-Identifier
               Byte array
               vendor=10415 code=920

           diameter.MBMS-GGSN-Address  MBMS-GGSN-Address
               Byte array
               vendor=10415 code=916

           diameter.MBMS-GGSN-IPv6-Address  MBMS-GGSN-IPv6-Address
               Byte array
               vendor=10415 code=917

           diameter.MBMS-GW-Address  MBMS-GW-Address
               Byte array
               vendor=10415 code=2307

           diameter.MBMS-HC-Indicator  MBMS-HC-Indicator
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=906

           diameter.MBMS-Session-Duration  MBMS-Session-Duration
               Byte array
               vendor=10415 code=904

           diameter.MBMS-Session-Identity  MBMS-Session-Identity
               Byte array
               vendor=10415 code=908

           diameter.MBMS-Session-Repetition-Number  MBMS-Session-Repetition-Number
               Byte array
               vendor=10415 code=912

           diameter.MBMS-StartStop-Indication  MBMS-StartStop-Indication
               Unsigned 32-bit integer
               vendor=10415 code=902

           diameter.MBMS-Time-To-Data-Transfer  MBMS-Time-To-Data-Transfer
               Byte array
               vendor=10415 code=911

           diameter.MBMS-User-Data-Mode-Indication  MBMS-User-Data-Mode-Indication
               Unsigned 32-bit integer
               vendor=10415 code=915

           diameter.MBMS-User-Service-Type  MBMS-User-Service-Type
               Unsigned 32-bit integer
               vendor=10415 code=1225

           diameter.ME-Key-Material  ME-Key-Material
               Byte array
               vendor=10415 code=405

           diameter.MIP-Algorithm-Type  MIP-Algorithm-Type
               Unsigned 32-bit integer
               code=345

           diameter.MIP-Auth-Input-Data-Length  MIP-Auth-Input-Data-Length
               Unsigned 32-bit integer
               code=338

           diameter.MIP-Authenticator  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
               Unsigned 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
               Unsigned 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.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.Media-Component-Description  Media-Component-Description
               Byte array
               vendor=10415 code=517

           diameter.Media-Component-Number  Media-Component-Number
               Unsigned 32-bit integer
               vendor=10415 code=518

           diameter.Media-Initiator-Flag  Media-Initiator-Flag
               Unsigned 32-bit integer
               vendor=10415 code=882

           diameter.Media-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
               Unsigned 32-bit integer
               vendor=10415 code=520

           diameter.Message-Body  Message-Body
               Byte array
               vendor=10415 code=889

           diameter.Message-Class  Message-Class
               Byte array
               vendor=10415 code=1213

           diameter.Message-ID  Message-ID
               String
               vendor=10415 code=1210

           diameter.Message-Size  Message-Size
               Unsigned 32-bit integer
               vendor=10415 code=1212

           diameter.Message-Type  Message-Type
               Unsigned 32-bit integer
               vendor=10415 code=1211

           diameter.Metering-Method  Metering-Method
               Unsigned 32-bit integer
               vendor=10415 code=1007

           diameter.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
               Unsigned 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
               Unsigned 32-bit integer
               code=455

           diameter.NAF-Hostname  NAF-Hostname
               Byte array
               vendor=10415 code=402

           diameter.NAS-Filter-Rule  NAS-Filter-Rule
               String
               code=400

           diameter.NAS-IP-Address  NAS-IP-Address
               Byte array
               code=4

           diameter.NAS-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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1417

           diameter.Network-Request-Support  Network-Request-Support
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1501

           diameter.Non-3GPP-IP-Access-APN  Non-3GPP-IP-Access-APN
               Unsigned 32-bit integer
               vendor=10415 code=1502

           diameter.Non-3GPP-User-Data  Non-3GPP-User-Data
               Byte array
               vendor=10415 code=1500

           diameter.Notification-To-UE-User  Notification-To-UE-User
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1008

           diameter.Offline-Charging  Offline-Charging
               Byte array
               vendor=10415 code=1278

           diameter.Online  Online
               Unsigned 32-bit integer
               vendor=10415 code=1009

           diameter.Online-Charging-Flag  Online-Charging-Flag
               Unsigned 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
               Unsigned 32-bit integer
               code=408

           diameter.Origin-Host  Origin-Host
               String
               code=264

           diameter.Origin-Realm  Origin-Realm
               String
               code=296

           diameter.Origin-State-Id  Origin-State-Id
               Unsigned 32-bit integer
               code=278

           diameter.Originating-IOI  Originating-IOI
               String
               vendor=10415 code=839

           diameter.Originating-Interface  Originating-Interface
               Unsigned 32-bit integer
               vendor=10415 code=1110

           diameter.Originating-Line-Info  Originating-Line-Info
               Byte array
               code=94

           diameter.Originating-Request  Originating-Request
               Unsigned 32-bit integer
               vendor=10415 code=633

           diameter.Originating-SCCP-Address  Originating-SCCP-Address
               Byte array
               vendor=10415 code=2008

           diameter.Originator  Originator
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1438

           diameter.PDN-Type  PDN-Type
               Unsigned 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
               Unsigned 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.PLMN-Client  PLMN-Client
               Unsigned 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.PS-Append-Free-Format-Data  PS-Append-Free-Format-Data
               Unsigned 32-bit integer
               vendor=10415 code=867

           diameter.PS-Free-Format-Data  PS-Free-Format-Data
               Byte array
               vendor=10415 code=866

           diameter.PS-Furnish-Charging-Information  PS-Furnish-Charging-Information
               Byte array
               vendor=10415 code=865

           diameter.PS-Information  PS-Information
               Byte array
               vendor=10415 code=874

           diameter.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
               Unsigned 32-bit integer
               vendor=10415 code=1062

           diameter.Participant-Access-Priority  Participant-Access-Priority
               Unsigned 32-bit integer
               vendor=10415 code=1259

           diameter.Participant-Action-Type  Participant-Action-Type
               Unsigned 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.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
               Unsigned 32-bit integer
               vendor=10415 code=1261

           diameter.PoC-Change-Time  PoC-Change-Time
               Unsigned 32-bit integer
               vendor=10415 code=1262

           diameter.PoC-Controlling-Address  PoC-Controlling-Address
               String
               vendor=10415 code=858

           diameter.PoC-Event-Type  PoC-Event-Type
               Unsigned 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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1277

           diameter.PoC-Session-Type  PoC-Session-Type
               Unsigned 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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1047

           diameter.Pre-emption-Vulnerability  Pre-emption-Vulnerability
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1209

           diameter.Priority-Level  Priority-Level
               Unsigned 32-bit integer
               vendor=10415 code=1046

           diameter.Product-Name  Product-Name
               String
               code=269

           diameter.Prompt  Prompt
               Unsigned 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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1029

           diameter.QoS-Profile  QoS-Profile
               Byte array
               vendor=13019 code=304

           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
               Unsigned 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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1112

           diameter.Read-Reply-Report-Requested  Read-Reply-Report-Requested
               Unsigned 32-bit integer
               vendor=10415 code=1222

           diameter.Real-Time-Tariff-Information  Real-Time-Tariff-Information
               Byte array
               vendor=10415 code=2305

           diameter.Reason-Code  Reason-Code
               Unsigned 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.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
               Unsigned 32-bit integer
               code=433

           diameter.Redirect-Host  Redirect-Host
               String
               code=292

           diameter.Redirect-Host-Usage  Redirect-Host-Usage
               Unsigned 32-bit integer
               code=261

           diameter.Redirect-Max-Cache-Time  Redirect-Max-Cache-Time
               Unsigned 32-bit integer
               code=262

           diameter.Redirect-Server  Redirect-Server
               Byte array
               code=434

           diameter.Redirect-Server-Address  Redirect-Server-Address
               String
               code=435

           diameter.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
               Unsigned 32-bit integer
               vendor=10415 code=2011

           diameter.Reporting-Level  Reporting-Level
               Unsigned 32-bit integer
               vendor=10415 code=1011

           diameter.Reporting-Reason  Reporting-Reason
               Unsigned 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
               Unsigned 32-bit integer
               vendor=13019 code=353

           diameter.Requested-Party-Address  Requested-Party-Address
               String
               vendor=10415 code=1251

           diameter.Requested-Service-Unit  Requested-Service-Unit
               Byte array
               code=437

           diameter.Requested-UTRAN-GERAN-Authentication-Info  Requested-UTRAN-GERAN-Authentication-Info
               Byte array
               vendor=10415 code=1409

           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
               Unsigned 32-bit integer
               vendor=13019 code=458

           diameter.Resource-Allocation-Notification  Resource-Allocation-Notification
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1457

           diameter.Role-Of-Node  Role-Of-Node
               Unsigned 32-bit integer
               vendor=10415 code=829

           diameter.Route-Record  Route-Record
               String
               code=282

           diameter.Routeing-Address  Routeing-Address
               String
               vendor=10415 code=1109

           diameter.Routeing-Address-Resolution  Routeing-Address-Resolution
               Unsigned 32-bit integer
               vendor=10415 code=1119

           diameter.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
               Unsigned 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
               Unsigned 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
               Unsigned 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
               Unsigned 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
               Unsigned 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
               Unsigned 32-bit integer
               code=375

           diameter.SIP-Server-Capabilities  SIP-Server-Capabilities
               Byte array
               code=372

           diameter.SIP-Server-URI  SIP-Server-URI
               String
               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
               Unsigned 32-bit integer
               code=387

           diameter.SIP-User-Data  SIP-User-Data
               Byte array
               code=389

           diameter.SIP-User-Data-Already-Available  SIP-User-Data-Already-Available
               Unsigned 32-bit integer
               code=392

           diameter.SIP-User-Data-Contents  SIP-User-Data-Contents
               Byte array
               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
               Unsigned 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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=2016

           diameter.SMSC-Address  SMSC-Address
               Byte array
               vendor=10415 code=2017

           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-Parameter-Index  Security-Parameter-Index
               Byte array
               vendor=10415 code=1056

           diameter.Send-Data-Indication  Send-Data-Indication
               Unsigned 32-bit integer
               vendor=10415 code=710

           diameter.Sender-Address  Sender-Address
               String
               vendor=10415 code=1104

           diameter.Sender-Visibility  Sender-Visibility
               Unsigned 32-bit integer
               vendor=10415 code=1113

           diameter.Sequence-Number  Sequence-Number
               Unsigned 32-bit integer
               vendor=10415 code=1107

           diameter.Served-Party-IP-Address  Served-Party-IP-Address
               Byte array
               vendor=10415 code=848

           diameter.Served-Party-IP-Address.addr_family  Served-Party-IP-Address Address Family
               Unsigned 16-bit integer

           diameter.Served-User-Identity  Served-User-Identity
               Byte array
               vendor=10415 code=1100

           diameter.Server-Assignment-Type  Server-Assignment-Type
               Unsigned 32-bit integer
               vendor=10415 code=614

           diameter.Server-Capabilities  Server-Capabilities
               Byte array
               vendor=10415 code=603

           diameter.Server-Name  Server-Name
               String
               vendor=10415 code=602

           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
               Unsigned 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
               Unsigned 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
               Unsigned 32-bit integer
               code=6

           diameter.Service-URN  Service-URN
               Byte array
               vendor=10415 code=525

           diameter.Service-type  Service-type
               Unsigned 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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1064

           diameter.Session-Priority  Session-Priority
               Unsigned 32-bit integer
               vendor=10415 code=650

           diameter.Session-Release-Cause  Session-Release-Cause
               Unsigned 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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=2033

           diameter.Subscriber-Status  Subscriber-Status
               Unsigned 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.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
               Unsigned 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
               Unsigned 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
               Unsigned 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-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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1103

           diameter.Trigger-Type  Trigger-Type
               Unsigned 32-bit integer
               vendor=10415 code=870

           diameter.Trunk-Group-ID  Trunk-Group-ID
               Byte array
               vendor=10415 code=851

           diameter.Tunnel-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
               Unsigned 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
               Unsigned 32-bit integer
               code=64

           diameter.Tunneling  Tunneling
               Byte array
               code=401

           diameter.Type-Number  Type-Number
               Unsigned 32-bit integer
               vendor=10415 code=1204

           diameter.UAR-Flags  UAR-Flags
               Unsigned 32-bit integer
               vendor=10415 code=637

           diameter.UICC-Key-Material  UICC-Key-Material
               Byte array
               vendor=10415 code=406

           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.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
               Unsigned 32-bit integer
               vendor=10415 code=1068

           diameter.Usage-Monitoring-Report  Usage-Monitoring-Report
               Unsigned 32-bit integer
               vendor=10415 code=1069

           diameter.Usage-Monitoring-Support  Usage-Monitoring-Support
               Unsigned 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
               Unsigned 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
               Unsigned 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
               Unsigned 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
               Unsigned 32-bit integer
               vendor=10415 code=1279

           diameter.User-Password  User-Password
               Byte array
               code=2

           diameter.User-Session-Id  User-Session-Id
               String
               vendor=10415 code=830

           diameter.User-State  User-State
               Unsigned 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
               Unsigned 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
               Acknowledgement

           dmp.ack_diagnostic  Ack Diagnostic
               Unsigned 8-bit integer
               Diagnostic

           dmp.ack_reason  Ack Reason
               Unsigned 8-bit integer
               Reason

           dmp.ack_rec_list  Recipient List
               No value
               Recipient List

           dmp.acp127recip  ACP127 Recipient
               NULL terminated string
               ACP 127 Recipient

           dmp.acp127recip_len  ACP127 Recipient
               Unsigned 8-bit integer
               ACP 127 Recipient Length

           dmp.action  Action
               Boolean
               Action

           dmp.addr_encoding  Address Encoding
               Boolean
               Address Encoding

           dmp.addr_ext  Address Extended
               Boolean
               Address Extended

           dmp.addr_form  Address Form
               Unsigned 8-bit integer
               Address Form

           dmp.addr_length  Address Length
               Unsigned 8-bit integer
               Address Length

           dmp.addr_length1  Address Length (bits 4-0)
               Unsigned 8-bit integer
               Address Length (bits 4-0)

           dmp.addr_length2  Address Length (bits 9-5)
               Unsigned 8-bit integer
               Address Length (bits 9-5)

           dmp.addr_type  Address Type
               Unsigned 8-bit integer
               Address Type

           dmp.addr_type_ext  Address Type Extended
               Unsigned 8-bit integer
               Address Type Extended

           dmp.addr_unknown  Unknown encoded address
               Byte array
               Unknown encoded address

           dmp.analysis.ack_first_sent_in  Retransmission of Acknowledgement sent in
               Frame number
               This Acknowledgement was first sent in this frame

           dmp.analysis.ack_in  Acknowledgement in
               Frame number
               This packet has an Acknowledgement in this frame

           dmp.analysis.ack_missing  Acknowledgement missing
               No value
               The acknowledgement for this packet is missing

           dmp.analysis.ack_time  Acknowledgement Time
               Time duration
               The time between the Message and the Acknowledge

           dmp.analysis.dup_ack_no  Duplicate ACK #
               Unsigned 32-bit integer
               Duplicate Acknowledgement count

           dmp.analysis.msg_first_sent_in  Retransmission of Message sent in
               Frame number
               This Message was first sent in this frame

           dmp.analysis.msg_in  Message in
               Frame number
               This packet has a Message in this frame

           dmp.analysis.msg_missing  Message missing
               No value
               The Message for this packet is missing

           dmp.analysis.notif_first_sent_in  Retransmission of Notification sent in
               Frame number
               This Notification was first sent in this frame

           dmp.analysis.notif_in  Notification in
               Frame number
               This packet has a Notification in this frame

           dmp.analysis.notif_time  Notification Reply Time
               Time duration
               The time between the Message and the Notification

           dmp.analysis.report_first_sent_in  Retransmission of Report sent in
               Frame number
               This Report was first sent in this frame

           dmp.analysis.report_in  Report in
               Frame number
               This packet has a Report in this frame

           dmp.analysis.report_time  Report Reply Time
               Time duration
               The time between the Message and the Report

           dmp.analysis.retrans_no  Retransmission #
               Unsigned 32-bit integer
               Retransmission count

           dmp.analysis.retrans_time  Retransmission Time
               Time duration
               The time between the last Message and this Message

           dmp.analysis.total_retrans_time  Total Retransmission Time
               Time duration
               The time between the first Message and this Message

           dmp.analysis.total_time  Total Time
               Time duration
               The time between the first Message and the Acknowledge

           dmp.asn1_per  ASN.1 PER-encoded OR-name
               Byte array
               ASN.1 PER-encoded OR-name

           dmp.auth_discarded  Authorizing users discarded
               Boolean
               Authorizing users discarded

           dmp.body  Message Body
               No value
               Message Body

           dmp.body.compression  Compression
               Unsigned 8-bit integer
               Compression

           dmp.body.data  User data
               No value
               User data

           dmp.body.eit  EIT
               Unsigned 8-bit integer
               Encoded Information Type

           dmp.body.id  Structured Id
               Unsigned 8-bit integer
               Structured Body Id (1 byte)

           dmp.body.plain  Message Body
               String
               Message Body

           dmp.body.structured  Structured Body
               Byte array
               Structured Body

           dmp.body.uncompressed  Uncompressed User data
               No value
               Uncompressed User data

           dmp.body_format  Body format
               Unsigned 8-bit integer
               Body format

           dmp.checksum  Checksum
               Unsigned 16-bit integer
               Checksum

           dmp.checksum_bad  Bad
               Boolean
               True: checksum doesn't match packet content; False: matches content or not checked

           dmp.checksum_good  Good
               Boolean
               True: checksum matches packet content; False: doesn't match content or not checked

           dmp.checksum_used  Checksum
               Boolean
               Checksum Used

           dmp.cont_id_discarded  Content Identifier discarded
               Boolean
               Content identifier discarded

           dmp.content_type  Content Type
               Unsigned 8-bit integer
               Content Type

           dmp.delivery_time  Delivery Time
               Unsigned 8-bit integer
               Delivery Time

           dmp.direct_addr  Direct Address
               Unsigned 8-bit integer
               Direct Address

           dmp.direct_addr1  Direct Address (bits 6-0)
               Unsigned 8-bit integer
               Direct Address (bits 6-0)

           dmp.direct_addr2  Direct Address (bits 12-7)
               Unsigned 8-bit integer
               Direct Address (bits 12-7)

           dmp.direct_addr3  Direct Address (bits 18-13)
               Unsigned 8-bit integer
               Direct Address (bits 18-13)

           dmp.dl_expansion_prohib  DL expansion prohibited
               Boolean
               DL expansion prohibited

           dmp.dr  Delivery Report
               No value
               Delivery Report

           dmp.dtg  DTG
               Unsigned 8-bit integer
               DTG

           dmp.dtg.sign  DTG in the
               Boolean
               Sign

           dmp.dtg.val  DTG Value
               Unsigned 8-bit integer
               DTG Value

           dmp.envelope  Envelope
               No value
               Envelope

           dmp.envelope_flags  Flags
               Unsigned 8-bit integer
               Envelope Flags

           dmp.expiry_time  Expiry Time
               Unsigned 8-bit integer
               Expiry Time

           dmp.expiry_time_val  Expiry Time Value
               Unsigned 8-bit integer
               Expiry Time Value

           dmp.ext_rec_count  Extended Recipient Count
               Unsigned 16-bit integer
               Extended Recipient Count

           dmp.heading_flags  Heading Flags
               No value
               Heading Flags

           dmp.hop_count  Hop Count
               Unsigned 8-bit integer
               Hop Count

           dmp.id  DMP Identifier
               Unsigned 16-bit integer
               DMP identifier

           dmp.importance  Importance
               Unsigned 8-bit integer
               Importance

           dmp.info_present  Info Present
               Boolean
               Info Present

           dmp.message  Message Content
               No value
               Message Content

           dmp.mission_pol_id  Mission Policy Identifier
               Unsigned 8-bit integer
               Mission Policy Identifier

           dmp.msg_id  Message Identifier
               Unsigned 16-bit integer
               Message identifier

           dmp.msg_type  Message type
               Unsigned 8-bit integer
               Message type

           dmp.nat_pol_id  National Policy Identifier
               Unsigned 8-bit integer
               National Policy Identifier

           dmp.ndr  Non-Delivery Report
               No value
               Non-Delivery Report

           dmp.not_req  Notification Request
               Unsigned 8-bit integer
               Notification Request

           dmp.notif_discard_reason  Discard Reason
               Unsigned 8-bit integer
               Discard Reason

           dmp.notif_non_rec_reason  Non-Receipt Reason
               Unsigned 8-bit integer
               Non-Receipt Reason

           dmp.notif_on_type  ON Type
               Unsigned 8-bit integer
               ON Type

           dmp.notif_type  Notification Type
               Unsigned 8-bit integer
               Notification Type

           dmp.notification  Notification Content
               No value
               Notification Content

           dmp.nrn  Non-Receipt Notification (NRN)
               No value
               Non-Receipt Notification (NRN)

           dmp.on  Other Notification (ON)
               No value
               Other Notification (ON)

           dmp.or_name  ASN.1 BER-encoded OR-name
               No value
               ASN.1 BER-encoded OR-name

           dmp.originator  Originator
               No value
               Originator

           dmp.precedence  Precedence
               Unsigned 8-bit integer
               Precedence

           dmp.protocol_id  Protocol Identifier
               Unsigned 8-bit integer
               Protocol Identifier

           dmp.rec_count  Recipient Count
               Unsigned 8-bit integer
               Recipient Count

           dmp.rec_no  Recipient Number
               Unsigned 32-bit integer
               Recipient Number Offset

           dmp.rec_no_ext  Recipient Number Extended
               Boolean
               Recipient Number Extended

           dmp.rec_no_offset  Recipient Number Offset
               Unsigned 8-bit integer
               Recipient Number Offset

           dmp.rec_no_offset1  Recipient Number (bits 3-0)
               Unsigned 8-bit integer
               Recipient Number (bits 3-0) Offset

           dmp.rec_no_offset2  Recipient Number (bits 9-4)
               Unsigned 8-bit integer
               Recipient Number (bits 9-4) Offset

           dmp.rec_no_offset3  Recipient Number (bits 14-10)
               Unsigned 8-bit integer
               Recipient Number (bits 14-10) Offset

           dmp.rec_present  Recipient Present
               Boolean
               Recipient Present

           dmp.receipt_time  Receipt Time
               Unsigned 8-bit integer
               Receipt time

           dmp.receipt_time_val  Receipt Time Value
               Unsigned 8-bit integer
               Receipt Time Value

           dmp.recip_reassign_prohib  Recipient reassign prohibited
               Boolean
               Recipient Reassign prohibited

           dmp.recipient  Recipient Number
               No value
               Recipient

           dmp.rep_rec  Report Request
               Unsigned 8-bit integer
               Report Request

           dmp.report  Report Content
               No value
               Report Content

           dmp.report_diagnostic  Diagnostic (X.411)
               Unsigned 8-bit integer
               Diagnostic

           dmp.report_reason  Reason (X.411)
               Unsigned 8-bit integer
               Reason

           dmp.report_type  Report Type
               Boolean
               Report Type

           dmp.reporting_name  Reporting Name Number
               No value
               Reporting Name

           dmp.reserved  Reserved
               Unsigned 8-bit integer
               Reserved

           dmp.rn  Receipt Notification (RN)
               No value
               Receipt Notification (RN)

           dmp.sec_cat  Security Categories
               Unsigned 8-bit integer
               Security Categories

           dmp.sec_cat.bit0  Bit 0
               Boolean
               Bit 0

           dmp.sec_cat.bit1  Bit 1
               Boolean
               Bit 1

           dmp.sec_cat.bit2  Bit 2
               Boolean
               Bit 2

           dmp.sec_cat.bit3  Bit 3
               Boolean
               Bit 3

           dmp.sec_cat.bit4  Bit 4
               Boolean
               Bit 4

           dmp.sec_cat.bit5  Bit 5
               Boolean
               Bit 5

           dmp.sec_cat.bit6  Bit 6
               Boolean
               Bit 6

           dmp.sec_cat.bit7  Bit 7
               Boolean
               Bit 7

           dmp.sec_cat.cl  Clear
               Boolean
               Clear

           dmp.sec_cat.cs  Crypto Security
               Boolean
               Crypto Security

           dmp.sec_cat.ex  Exclusive
               Boolean
               Exclusive

           dmp.sec_cat.ne  National Eyes Only
               Boolean
               National Eyes Only

           dmp.sec_class  Security Classification
               Unsigned 8-bit integer
               Security Classification

           dmp.sec_pol  Security Policy
               Unsigned 8-bit integer
               Security Policy

           dmp.sic  SIC
               String
               SIC

           dmp.sic_bitmap  Length Bitmap (0 = 3 bytes, 1 = 4-8 bytes)
               Unsigned 8-bit integer
               SIC Length Bitmap

           dmp.sic_bits  Bit 7-4
               Unsigned 8-bit integer
               SIC Bit 7-4, Characters [A-Z0-9] only

           dmp.sic_bits_any  Bit 7-4
               Unsigned 8-bit integer
               SIC Bit 7-4, Any valid characters

           dmp.sic_key  SICs
               No value
               SIC Content

           dmp.sic_key.chars  Valid Characters
               Boolean
               SIC Valid Characters

           dmp.sic_key.num  Number of SICs
               Unsigned 8-bit integer
               Number of SICs

           dmp.sic_key.type  Type
               Unsigned 8-bit integer
               SIC Content Type

           dmp.sic_key.values  Content Byte
               Unsigned 8-bit integer
               SIC Content Byte

           dmp.subj_id  Subject Message Identifier
               Unsigned 16-bit integer
               Subject Message Identifier

           dmp.subject  Subject
               NULL terminated string
               Subject

           dmp.subject_discarded  Subject discarded
               Boolean
               Subject discarded

           dmp.subm_time  Submission Time
               Unsigned 16-bit integer
               Submission Time

           dmp.subm_time_value  Submission Time Value
               Unsigned 16-bit integer
               Submission Time Value

           dmp.suppl_info  Supplementary Information
               NULL terminated string
               Supplementary Information

           dmp.suppl_info_len  Supplementary Information
               Unsigned 8-bit integer
               Supplementary Information Length

           dmp.time_diff  Time Difference
               Unsigned 8-bit integer
               Time Difference

           dmp.time_diff_present  Time Diff
               Boolean
               Time Diff Present

           dmp.time_diff_value  Time Difference Value
               Unsigned 8-bit integer
               Time Difference Value

           dmp.version  Protocol Version
               Unsigned 8-bit integer
               Protocol Version

   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
               Leaf

           dvmrp.cap.mtrace  Mtrace
               Boolean
               Mtrace capability

           dvmrp.cap.netmask  Netmask
               Boolean
               Netmask capability

           dvmrp.cap.prune  Prune
               Boolean
               Prune capability

           dvmrp.cap.snmp  SNMP
               Boolean
               SNMP capability

           dvmrp.capabilities  Capabilities
               No value
               DVMRP V3 Capabilities

           dvmrp.checksum  Checksum
               Unsigned 16-bit integer
               DVMRP Checksum

           dvmrp.checksum_bad  Bad Checksum
               Boolean
               Bad DVMRP Checksum

           dvmrp.command  Command
               Unsigned 8-bit integer
               DVMRP V1 Command

           dvmrp.commands  Commands
               No value
               DVMRP V1 Commands

           dvmrp.count  Count
               Unsigned 8-bit integer
               Count

           dvmrp.daddr  Dest Addr
               IPv4 address
               DVMRP Destination Address

           dvmrp.dest_unreach  Destination Unreachable
               Boolean
               Destination Unreachable

           dvmrp.flag.disabled  Disabled
               Boolean
               Administrative status down

           dvmrp.flag.down  Down
               Boolean
               Operational status down

           dvmrp.flag.leaf  Leaf
               Boolean
               No downstream neighbors on interface

           dvmrp.flag.querier  Querier
               Boolean
               Querier for interface

           dvmrp.flag.srcroute  Source Route
               Boolean
               Tunnel uses IP source routing

           dvmrp.flag.tunnel  Tunnel
               Boolean
               Neighbor reached via tunnel

           dvmrp.flags  Flags
               No value
               DVMRP Interface Flags

           dvmrp.genid  Generation ID
               Unsigned 32-bit integer
               DVMRP Generation ID

           dvmrp.hold  Hold Time
               Unsigned 32-bit integer
               DVMRP Hold Time in seconds

           dvmrp.infinity  Infinity
               Unsigned 8-bit integer
               DVMRP Infinity

           dvmrp.lifetime  Prune lifetime
               Unsigned 32-bit integer
               DVMRP Prune Lifetime

           dvmrp.local  Local Addr
               IPv4 address
               DVMRP Local Address

           dvmrp.maddr  Multicast Addr
               IPv4 address
               DVMRP Multicast Address

           dvmrp.maj_ver  Major Version
               Unsigned 8-bit integer
               DVMRP Major Version

           dvmrp.metric  Metric
               Unsigned 8-bit integer
               DVMRP Metric

           dvmrp.min_ver  Minor Version
               Unsigned 8-bit integer
               DVMRP Minor Version

           dvmrp.ncount  Neighbor Count
               Unsigned 8-bit integer
               DVMRP Neighbor Count

           dvmrp.neighbor  Neighbor Addr
               IPv4 address
               DVMRP Neighbor Address

           dvmrp.netmask  Netmask
               IPv4 address
               DVMRP Netmask

           dvmrp.route  Route
               No value
               DVMRP V3 Route Report

           dvmrp.saddr  Source Addr
               IPv4 address
               DVMRP Source Address

           dvmrp.split_horiz  Split Horizon
               Boolean
               Split Horizon concealed route

           dvmrp.threshold  Threshold
               Unsigned 8-bit integer
               DVMRP Interface Threshold

           dvmrp.type  Type
               Unsigned 8-bit integer
               DVMRP Packet Type

           dvmrp.v1.code  Code
               Unsigned 8-bit integer
               DVMRP Packet Code

           dvmrp.v3.code  Code
               Unsigned 8-bit integer
               DVMRP Packet Code

           dvmrp.version  DVMRP Version
               Unsigned 8-bit integer
               DVMRP Version

   Distcc 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
               DISTCC Version

   Distributed Checksum Clearinghouse protocol (dcc)
           dcc.adminop  Admin Op
               Unsigned 8-bit integer
               Admin Op

           dcc.adminval  Admin Value
               Unsigned 32-bit integer
               Admin Value

           dcc.brand  Server Brand
               String
               Server Brand

           dcc.checksum.length  Length
               Unsigned 8-bit integer
               Checksum Length

           dcc.checksum.sum  Sum
               Byte array
               Checksum

           dcc.checksum.type  Type
               Unsigned 8-bit integer
               Checksum Type

           dcc.clientid  Client ID
               Unsigned 32-bit integer
               Client ID

           dcc.date  Date
               Date/Time stamp
               Date

           dcc.floodop  Flood Control Operation
               Unsigned 32-bit integer
               Flood Control Operation

           dcc.len  Packet Length
               Unsigned 16-bit integer
               Packet Length

           dcc.max_pkt_vers  Maximum Packet Version
               Unsigned 8-bit integer
               Maximum Packet Version

           dcc.op  Operation Type
               Unsigned 8-bit integer
               Operation Type

           dcc.opnums.host  Host
               Unsigned 32-bit integer
               Host

           dcc.opnums.pid  Process ID
               Unsigned 32-bit integer
               Process ID

           dcc.opnums.report  Report
               Unsigned 32-bit integer
               Report

           dcc.opnums.retrans  Retransmission
               Unsigned 32-bit integer
               Retransmission

           dcc.pkt_vers  Packet Version
               Unsigned 16-bit integer
               Packet Version

           dcc.qdelay_ms  Client Delay
               Unsigned 16-bit integer
               Client Delay

           dcc.signature  Signature
               Byte array
               Signature

           dcc.target  Target
               Unsigned 32-bit integer
               Target

           dcc.trace  Trace Bits
               Unsigned 32-bit integer
               Trace Bits

           dcc.trace.admin  Admin Requests
               Boolean
               Admin Requests

           dcc.trace.anon  Anonymous Requests
               Boolean
               Anonymous Requests

           dcc.trace.client  Authenticated Client Requests
               Boolean
               Authenticated Client Requests

           dcc.trace.flood  Input/Output Flooding
               Boolean
               Input/Output Flooding

           dcc.trace.query  Queries and Reports
               Boolean
               Queries and Reports

           dcc.trace.ridc  RID Cache Messages
               Boolean
               RID Cache Messages

           dcc.trace.rlim  Rate-Limited Requests
               Boolean
               Rate-Limited Requests

   Distributed Interactive Simulation (dis)
   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
               Output Value (16 bit)

           dnp3.al.aoq.b0  Online
               Boolean

           dnp3.al.aoq.b1  Restart
               Boolean

           dnp3.al.aoq.b2  Comm Fail
               Boolean

           dnp3.al.aoq.b3  Remote Force
               Boolean

           dnp3.al.aoq.b4  Local Force
               Boolean

           dnp3.al.aoq.b5  Reserved
               Boolean

           dnp3.al.aoq.b6  Reserved
               Boolean

           dnp3.al.aoq.b7  Reserved
               Boolean

           dnp3.al.biq.b0  Online
               Boolean

           dnp3.al.biq.b1  Restart
               Boolean

           dnp3.al.biq.b2  Comm Fail
               Boolean

           dnp3.al.biq.b3  Remote Force
               Boolean

           dnp3.al.biq.b4  Local Force
               Boolean

           dnp3.al.biq.b5  Chatter Filter
               Boolean

           dnp3.al.biq.b6  Reserved
               Boolean

           dnp3.al.biq.b7  Point Value
               Boolean

           dnp3.al.bit  Value (bit)
               Boolean
               Digital Value (1 bit)

           dnp3.al.boq.b0  Online
               Boolean

           dnp3.al.boq.b1  Restart
               Boolean

           dnp3.al.boq.b2  Comm Fail
               Boolean

           dnp3.al.boq.b3  Remote Force
               Boolean

           dnp3.al.boq.b4  Local Force
               Boolean

           dnp3.al.boq.b5  Reserved
               Boolean

           dnp3.al.boq.b6  Reserved
               Boolean

           dnp3.al.boq.b7  Point Value
               Boolean

           dnp3.al.cnt  Counter (16 bit)
               Unsigned 16-bit integer
               Counter Value (16 bit)

           dnp3.al.con  Confirm
               Boolean

           dnp3.al.ctl  Application Control
               Unsigned 8-bit integer
               Application Layer Control Byte

           dnp3.al.ctrlstatus  Control Status
               Unsigned 8-bit integer
               Control Status

           dnp3.al.ctrq.b0  Online
               Boolean

           dnp3.al.ctrq.b1  Restart
               Boolean

           dnp3.al.ctrq.b2  Comm Fail
               Boolean

           dnp3.al.ctrq.b3  Remote Force
               Boolean

           dnp3.al.ctrq.b4  Local Force
               Boolean

           dnp3.al.ctrq.b5  Roll-Over
               Boolean

           dnp3.al.ctrq.b6  Discontinuity
               Boolean

           dnp3.al.ctrq.b7  Reserved
               Boolean

           dnp3.al.fin  Final
               Boolean

           dnp3.al.fir  First
               Boolean

           dnp3.al.fragment  DNP 3.0 AL Fragment
               Frame number
               DNP 3.0 Application Layer Fragment

           dnp3.al.fragment.error  Defragmentation error
               Frame number
               Defragmentation error due to illegal fragments

           dnp3.al.fragment.multipletails  Multiple tail fragments found
               Boolean
               Several tails were found when defragmenting the packet

           dnp3.al.fragment.overlap  Fragment overlap
               Boolean
               Fragment overlaps with other fragments

           dnp3.al.fragment.overlap.conflict  Conflicting data in fragment overlap
               Boolean
               Overlapping fragments contained conflicting data

           dnp3.al.fragment.reassembled_in  Reassembled PDU In Frame
               Frame number
               This PDU is reassembled in this frame

           dnp3.al.fragment.toolongfragment  Fragment too long
               Boolean
               Fragment contained data past end of packet

           dnp3.al.fragments  DNP 3.0 AL Fragments
               No value
               DNP 3.0 Application Layer Fragments

           dnp3.al.func  Application Layer Function Code
               Unsigned 8-bit integer
               Application Function Code

           dnp3.al.iin  Application Layer IIN bits
               Unsigned 16-bit integer
               Application Layer IIN

           dnp3.al.iin.bmsg  Broadcast Msg Rx
               Boolean

           dnp3.al.iin.cc  Configuration Corrupt
               Boolean

           dnp3.al.iin.cls1d  Class 1 Data Available
               Boolean

           dnp3.al.iin.cls2d  Class 2 Data Available
               Boolean

           dnp3.al.iin.cls3d  Class 3 Data Available
               Boolean

           dnp3.al.iin.dol  Digital Outputs in Local
               Boolean

           dnp3.al.iin.dt  Device Trouble
               Boolean

           dnp3.al.iin.ebo  Event Buffer Overflow
               Boolean

           dnp3.al.iin.oae  Operation Already Executing
               Boolean

           dnp3.al.iin.obju  Requested Objects Unknown
               Boolean

           dnp3.al.iin.pioor  Parameters Invalid or Out of Range
               Boolean

           dnp3.al.iin.rst  Device Restart
               Boolean

           dnp3.al.iin.tsr  Time Sync Required
               Boolean

           dnp3.al.index  Index (8 bit)
               Unsigned 8-bit integer
               Object Index

           dnp3.al.obj  Object
               Unsigned 16-bit integer
               Application Layer Object

           dnp3.al.objq.code  Qualifier Code
               Unsigned 8-bit integer
               Object Qualifier Code

           dnp3.al.objq.index  Index Prefix
               Unsigned 8-bit integer
               Object Index Prefixing

           dnp3.al.ptnum  Object Point Number
               Unsigned 16-bit integer
               Object Point Number

           dnp3.al.range.abs  Address (8 bit)
               Unsigned 8-bit integer
               Object Absolute Address

           dnp3.al.range.quantity  Quantity (8 bit)
               Unsigned 8-bit integer
               Object Quantity

           dnp3.al.range.start  Start (8 bit)
               Unsigned 8-bit integer
               Object Start Index

           dnp3.al.range.stop  Stop (8 bit)
               Unsigned 8-bit integer
               Object Stop Index

           dnp3.al.reltimestamp  Relative Timestamp
               Time duration
               Object Relative Timestamp

           dnp3.al.seq  Sequence
               Unsigned 8-bit integer
               Frame Sequence Number

           dnp3.al.timestamp  Timestamp
               Date/Time stamp
               Object Timestamp

           dnp3.ctl  Control
               Unsigned 8-bit integer
               Frame Control Byte

           dnp3.ctl.dfc  Data Flow Control
               Boolean

           dnp3.ctl.dir  Direction
               Boolean

           dnp3.ctl.fcb  Frame Count Bit
               Boolean

           dnp3.ctl.fcv  Frame Count Valid
               Boolean

           dnp3.ctl.prifunc  Control Function Code
               Unsigned 8-bit integer
               Frame Control Function Code

           dnp3.ctl.prm  Primary
               Boolean

           dnp3.ctl.secfunc  Control Function Code
               Unsigned 8-bit integer
               Frame Control Function Code

           dnp3.dst  Destination
               Unsigned 16-bit integer
               Destination Address

           dnp3.hdr.CRC  CRC
               Unsigned 16-bit integer

           dnp3.hdr.CRC_bad  Bad CRC
               Boolean

           dnp3.len  Length
               Unsigned 8-bit integer
               Frame Data Length

           dnp3.src  Source
               Unsigned 16-bit integer
               Source Address

           dnp3.start  Start Bytes
               Unsigned 16-bit integer
               Start Bytes

           dnp3.tr.ctl  Transport Control
               Unsigned 8-bit integer
               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.count.add_rr  Additional RRs
               Unsigned 16-bit integer
               Number of additional records in packet

           dns.count.answers  Answer RRs
               Unsigned 16-bit integer
               Number of answers in packet

           dns.count.auth_rr  Authority RRs
               Unsigned 16-bit integer
               Number of authoritative records in packet

           dns.count.prerequisites  Prerequisites
               Unsigned 16-bit integer
               Number of prerequisites in packet

           dns.count.queries  Questions
               Unsigned 16-bit integer
               Number of queries in packet

           dns.count.updates  Updates
               Unsigned 16-bit integer
               Number of updates records in packet

           dns.count.zones  Zones
               Unsigned 16-bit integer
               Number of zones in packet

           dns.flags  Flags
               Unsigned 16-bit integer

           dns.flags.authenticated  Answer authenticated
               Boolean
               Was the reply data authenticated by the server?

           dns.flags.authoritative  Authoritative
               Boolean
               Is the server is an authority for the domain?

           dns.flags.checkdisable  Non-authenticated data OK
               Boolean
               Is non-authenticated data acceptable?

           dns.flags.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
               Reply code

           dns.flags.recavail  Recursion available
               Boolean
               Can the server do recursive queries?

           dns.flags.recdesired  Recursion desired
               Boolean
               Do query recursively?

           dns.flags.response  Response
               Boolean
               Is the message a response?

           dns.flags.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.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.nsec3.algo  Hash algorithm
               Unsigned 8-bit integer
               Hash algorithm

           dns.nsec3.flags  NSEC3 flags
               Unsigned 8-bit integer
               NSEC3 flags

           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
               Next hashed owner

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

           dns.qry.class  Class
               Unsigned 16-bit integer
               Query Class

           dns.qry.name  Name
               String
               Query Name

           dns.qry.qu  "QU" question
               Boolean
               QU flag

           dns.qry.type  Type
               Unsigned 16-bit integer
               Query Type

           dns.resp.cache_flush  Cache flush
               Boolean
               Cache flush flag

           dns.resp.class  Class
               Unsigned 16-bit integer
               Response Class

           dns.resp.len  Data length
               Unsigned 32-bit integer
               Response Length

           dns.resp.name  Name
               String
               Response Name

           dns.resp.ttl  Time to live
               Unsigned 32-bit integer
               Response TTL

           dns.resp.type  Type
               Unsigned 16-bit integer
               Response Type

           dns.response_in  Response In
               Frame number
               The response to this DNS query is in this frame

           dns.response_to  Request In
               Frame number
               This is a response to the DNS query in this frame

           dns.time  Time
               Time duration
               The time between the Query and the Response

           dns.tsig.algorithm_name  Algorithm Name
               String
               Name of algorithm used for the MAC

           dns.tsig.error  Error
               Unsigned 16-bit integer
               Expanded RCODE for TSIG

           dns.tsig.fudge  Fudge
               Unsigned 16-bit integer
               Number of bytes for the MAC

           dns.tsig.mac  MAC
               No value
               MAC

           dns.tsig.mac_size  MAC Size
               Unsigned 16-bit integer
               Number of bytes for the MAC

           dns.tsig.original_id  Original Id
               Unsigned 16-bit integer
               Original Id

           dns.tsig.other_data  Other Data
               Byte array
               Other Data

           dns.tsig.other_len  Other Len
               Unsigned 16-bit integer
               Number of bytes for Other Data

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

           ddtp.msgtype  Message type
               Unsigned 32-bit integer
               Message Type

           ddtp.opcode  Opcode
               Unsigned 32-bit integer
               Update query opcode

           ddtp.status  Status
               Unsigned 32-bit integer
               Update reply status

           ddtp.version  Version
               Unsigned 32-bit integer
               Version

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

           linx.ackreq  ACK-request
               Unsigned 32-bit integer
               ACK-request

           linx.bundle  Bundle
               Unsigned 32-bit integer
               Bundle

           linx.cmd  Command
               Unsigned 32-bit integer
               Command

           linx.connection  Connection
               Unsigned 32-bit integer
               Connection

           linx.destmaddr_ether  Destination
               6-byte Hardware (MAC) Address
               Destination Media Address (ethernet)

           linx.dstaddr  Receiver Address
               Unsigned 32-bit integer
               Receiver Address

           linx.dstaddr32  Receiver Address
               Unsigned 32-bit integer
               Receiver Address

           linx.feat_neg_str  Feature Negotiation String
               NULL terminated string
               Feature Negotiation String

           linx.fragno  Fragment Number
               Unsigned 32-bit integer
               Fragment Number

           linx.fragno2  Fragment Number
               Unsigned 32-bit integer
               Fragment Number

           linx.morefr2  More Fragments
               Unsigned 32-bit integer
               More Fragments

           linx.morefra  More Fragments
               Unsigned 32-bit integer
               More fragments follow

           linx.nack_count  Count
               Unsigned 32-bit integer
               Count

           linx.nack_reserv  Reserved
               Unsigned 32-bit integer
               Nack Hdr Reserved

           linx.nack_seqno  Sequence Number
               Unsigned 32-bit integer
               Sequence Number

           linx.nexthdr  Next Header
               Unsigned 32-bit integer
               Next Header

           linx.pcksize  Package Size
               Unsigned 32-bit integer
               Package Size

           linx.publcid  Publish Conn ID
               Unsigned 32-bit integer
               Publish Conn ID

           linx.reserved1  Reserved
               Unsigned 32-bit integer
               Main Hdr Reserved

           linx.reserved3  Reserved
               Unsigned 32-bit integer
               Conn Hdr Reserved

           linx.reserved5  Reserved
               Unsigned 32-bit integer
               Udata Hdr Reserved

           linx.reserved6  Reserved
               Unsigned 32-bit integer
               Frag Hdr Reserved

           linx.reserved7  Reserved
               Unsigned 32-bit integer
               ACK Hdr Reserved

           linx.rlnh_feat_neg_str  RLNH Feature Negotiation String
               NULL terminated string
               RLNH Feature Negotiation String

           linx.rlnh_linkaddr  RLNH linkaddr
               Unsigned 32-bit integer
               RLNH linkaddress

           linx.rlnh_msg_reserved  RLNH msg reserved
               Unsigned 32-bit integer
               RLNH message reserved

           linx.rlnh_msg_type  RLNH msg type
               Unsigned 32-bit integer
               RLNH message type

           linx.rlnh_msg_type8  RLNH msg type
               Unsigned 32-bit integer
               RLNH message type

           linx.rlnh_name  RLNH name
               NULL terminated string
               RLNH name

           linx.rlnh_peer_linkaddr  RLNH peer linkaddr
               Unsigned 32-bit integer
               RLNH peer linkaddress

           linx.rlnh_src_linkaddr  RLNH src linkaddr
               Unsigned 32-bit integer
               RLNH source linkaddress

           linx.rlnh_status  RLNH reply
               Unsigned 32-bit integer
               RLNH reply

           linx.rlnh_version  RLNH version
               Unsigned 32-bit integer
               RLNH version

           linx.seqno  Sequence Number
               Unsigned 32-bit integer
               Sequence Number

           linx.signo  Signal Number
               Unsigned 32-bit integer
               Signal Number

           linx.size  Size
               Unsigned 32-bit integer
               Size

           linx.srcaddr  Sender Address
               Unsigned 32-bit integer
               Sender Address

           linx.srcaddr32  Sender Address
               Unsigned 32-bit integer
               Sender Address

           linx.srcmaddr_ether  Source
               6-byte Hardware (MAC) Address
               Source Media Address (ethernet)

           linx.version  Version
               Unsigned 32-bit integer
               LINX Version

           linx.winsize  WinSize
               Unsigned 32-bit integer
               Window Size

   ENTTEC (enttec)
           enttec.dmx_data.data  DMX Data
               No value
               DMX Data

           enttec.dmx_data.data_filter  DMX Data
               Byte array
               DMX Data

           enttec.dmx_data.dmx_data  DMX Data
               No value
               DMX Data

           enttec.dmx_data.size  Data Size
               Unsigned 16-bit integer
               Data Size

           enttec.dmx_data.start_code  Start Code
               Unsigned 8-bit integer
               Start Code

           enttec.dmx_data.type  Data Type
               Unsigned 8-bit integer
               Data Type

           enttec.dmx_data.universe  Universe
               Unsigned 8-bit integer
               Universe

           enttec.head  Head
               Unsigned 32-bit integer
               Head

           enttec.poll.reply_type  Reply Type
               Unsigned 8-bit integer
               Reply Type

           enttec.poll_reply.mac  MAC
               6-byte Hardware (MAC) Address
               MAC

           enttec.poll_reply.name  Name
               String
               Name

           enttec.poll_reply.node_type  Node Type
               Unsigned 16-bit integer
               Node Type

           enttec.poll_reply.option_field  Option Field
               Unsigned 8-bit integer
               Option Field

           enttec.poll_reply.switch_settings  Switch settings
               Unsigned 8-bit integer
               Switch settings

           enttec.poll_reply.tos  TOS
               Unsigned 8-bit integer
               TOS

           enttec.poll_reply.ttl  TTL
               Unsigned 8-bit integer
               TTL

           enttec.poll_reply.version  Version
               Unsigned 8-bit integer
               Version

   EPMD Protocol (epmd)
           epmd.creation  Creation
               Unsigned 16-bit integer
               Creation

           epmd.dist_high  Dist High
               Unsigned 16-bit integer
               Dist High

           epmd.dist_low  Dist Low
               Unsigned 16-bit integer
               Dist Low

           epmd.edata  Edata
               Byte array
               Extra Data

           epmd.elen  Elen
               Unsigned 16-bit integer
               Extra Length

           epmd.len  Length
               Unsigned 16-bit integer
               Message Length

           epmd.name  Name
               String
               Name

           epmd.name_len  Name Length
               Unsigned 16-bit integer
               Name Length

           epmd.names  Names
               Byte array
               List of names

           epmd.result  Result
               Unsigned 8-bit integer
               Result

           epmd.tcp_port  TCP Port
               Unsigned 16-bit integer
               TCP Port

           epmd.type  Type
               Unsigned 8-bit integer
               Message Type

   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.Bearers_Admitted_Item  Bearers-Admitted-Item
               No value
               x2ap.Bearers_Admitted_Item

           x2ap.Bearers_Admitted_List  Bearers-Admitted-List
               Unsigned 32-bit integer
               x2ap.Bearers_Admitted_List

           x2ap.Bearers_NotAdmitted_Item  Bearers-NotAdmitted-Item
               No value
               x2ap.Bearers_NotAdmitted_Item

           x2ap.Bearers_NotAdmitted_List  Bearers-NotAdmitted-List
               Unsigned 32-bit integer
               x2ap.Bearers_NotAdmitted_List

           x2ap.Bearers_SubjectToStatusTransfer_Item  Bearers-SubjectToStatusTransfer-Item
               No value
               x2ap.Bearers_SubjectToStatusTransfer_Item

           x2ap.Bearers_SubjectToStatusTransfer_List  Bearers-SubjectToStatusTransfer-List
               Unsigned 32-bit integer
               x2ap.Bearers_SubjectToStatusTransfer_List

           x2ap.Bearers_ToBeSetup_Item  Bearers-ToBeSetup-Item
               No value
               x2ap.Bearers_ToBeSetup_Item

           x2ap.Cause  Cause
               Unsigned 32-bit integer
               x2ap.Cause

           x2ap.CellInformation_Item  CellInformation-Item
               No value
               x2ap.CellInformation_Item

           x2ap.CellInformation_List  CellInformation-List
               Unsigned 32-bit integer
               x2ap.CellInformation_List

           x2ap.CellMeasurementResult_Item  CellMeasurementResult-Item
               No value
               x2ap.CellMeasurementResult_Item

           x2ap.CellMeasurementResult_List  CellMeasurementResult-List
               Unsigned 32-bit integer
               x2ap.CellMeasurementResult_List

           x2ap.CellToReport_Item  CellToReport-Item
               No value
               x2ap.CellToReport_Item

           x2ap.CellToReport_List  CellToReport-List
               Unsigned 32-bit integer
               x2ap.CellToReport_List

           x2ap.CriticalityDiagnostics  CriticalityDiagnostics
               No value
               x2ap.CriticalityDiagnostics

           x2ap.CriticalityDiagnostics_IE_List_item  CriticalityDiagnostics-IE-List item
               No value
               x2ap.CriticalityDiagnostics_IE_List_item

           x2ap.ECGI  ECGI
               No value
               x2ap.ECGI

           x2ap.ENBConfigurationUpdate  ENBConfigurationUpdate
               No value
               x2ap.ENBConfigurationUpdate

           x2ap.ENBConfigurationUpdateAcknowledge  ENBConfigurationUpdateAcknowledge
               No value
               x2ap.ENBConfigurationUpdateAcknowledge

           x2ap.ENBConfigurationUpdateFailure  ENBConfigurationUpdateFailure
               No value
               x2ap.ENBConfigurationUpdateFailure

           x2ap.ErrorIndication  ErrorIndication
               No value
               x2ap.ErrorIndication

           x2ap.ForbiddenLAs_Item  ForbiddenLAs-Item
               No value
               x2ap.ForbiddenLAs_Item

           x2ap.ForbiddenTAs_Item  ForbiddenTAs-Item
               No value
               x2ap.ForbiddenTAs_Item

           x2ap.GUGroupIDList  GUGroupIDList
               Unsigned 32-bit integer
               x2ap.GUGroupIDList

           x2ap.GUMMEI  GUMMEI
               No value
               x2ap.GUMMEI

           x2ap.GU_Group_ID  GU-Group-ID
               No value
               x2ap.GU_Group_ID

           x2ap.GlobalENB_ID  GlobalENB-ID
               No value
               x2ap.GlobalENB_ID

           x2ap.HandoverCancel  HandoverCancel
               No value
               x2ap.HandoverCancel

           x2ap.HandoverPreparationFailure  HandoverPreparationFailure
               No value
               x2ap.HandoverPreparationFailure

           x2ap.HandoverRequest  HandoverRequest
               No value
               x2ap.HandoverRequest

           x2ap.HandoverRequestAcknowledge  HandoverRequestAcknowledge
               No value
               x2ap.HandoverRequestAcknowledge

           x2ap.InterfacesToTrace_Item  InterfacesToTrace-Item
               No value
               x2ap.InterfacesToTrace_Item

           x2ap.LAC  LAC
               Byte array
               x2ap.LAC

           x2ap.LastVisitedCell_Item  LastVisitedCell-Item
               No value
               x2ap.LastVisitedCell_Item

           x2ap.LoadInformation  LoadInformation
               No value
               x2ap.LoadInformation

           x2ap.Old_ECGIs  Old-ECGIs
               Unsigned 32-bit integer
               x2ap.Old_ECGIs

           x2ap.PLMN_Identity  PLMN-Identity
               Byte array
               x2ap.PLMN_Identity

           x2ap.ProtocolExtensionField  ProtocolExtensionField
               No value
               x2ap.ProtocolExtensionField

           x2ap.ProtocolIE_Field  ProtocolIE-Field
               No value
               x2ap.ProtocolIE_Field

           x2ap.ProtocolIE_Single_Container  ProtocolIE-Single-Container
               No value
               x2ap.ProtocolIE_Single_Container

           x2ap.Registration_Request  Registration-Request
               Unsigned 32-bit integer
               x2ap.Registration_Request

           x2ap.ReportingPeriod  ReportingPeriod
               Unsigned 32-bit integer
               x2ap.ReportingPeriod

           x2ap.ResetRequest  ResetRequest
               No value
               x2ap.ResetRequest

           x2ap.ResetResponse  ResetResponse
               No value
               x2ap.ResetResponse

           x2ap.ResourceStatusFailure  ResourceStatusFailure
               No value
               x2ap.ResourceStatusFailure

           x2ap.ResourceStatusRequest  ResourceStatusRequest
               No value
               x2ap.ResourceStatusRequest

           x2ap.ResourceStatusResponse  ResourceStatusResponse
               No value
               x2ap.ResourceStatusResponse

           x2ap.ResourceStatusUpdate  ResourceStatusUpdate
               No value
               x2ap.ResourceStatusUpdate

           x2ap.SNStatusTransfer  SNStatusTransfer
               No value
               x2ap.SNStatusTransfer

           x2ap.ServedCell_Information  ServedCell-Information
               No value
               x2ap.ServedCell_Information

           x2ap.ServedCells  ServedCells
               Unsigned 32-bit integer
               x2ap.ServedCells

           x2ap.ServedCellsToModify  ServedCellsToModify
               Unsigned 32-bit integer
               x2ap.ServedCellsToModify

           x2ap.ServedCellsToModify_Item  ServedCellsToModify-Item
               No value
               x2ap.ServedCellsToModify_Item

           x2ap.TAC  TAC
               Byte array
               x2ap.TAC

           x2ap.TargeteNBtoSource_eNBTransparentContainer  TargeteNBtoSource-eNBTransparentContainer
               Byte array
               x2ap.TargeteNBtoSource_eNBTransparentContainer

           x2ap.TimeToWait  TimeToWait
               Byte array
               x2ap.TimeToWait

           x2ap.TraceActivation  TraceActivation
               No value
               x2ap.TraceActivation

           x2ap.UEContextRelease  UEContextRelease
               No value
               x2ap.UEContextRelease

           x2ap.UE_ContextInformation  UE-ContextInformation
               No value
               x2ap.UE_ContextInformation

           x2ap.UE_HistoryInformation  UE-HistoryInformation
               Unsigned 32-bit integer
               x2ap.UE_HistoryInformation

           x2ap.UE_X2AP_ID  UE-X2AP-ID
               Unsigned 32-bit integer
               x2ap.UE_X2AP_ID

           x2ap.UL_HighInterferenceIndicationInfo_Item  UL-HighInterferenceIndicationInfo-Item
               No value
               x2ap.UL_HighInterferenceIndicationInfo_Item

           x2ap.UL_InterferenceOverloadIndication_Item  UL-InterferenceOverloadIndication-Item
               Unsigned 32-bit integer
               x2ap.UL_InterferenceOverloadIndication_Item

           x2ap.X2AP_PDU  X2AP-PDU
               Unsigned 32-bit integer
               x2ap.X2AP_PDU

           x2ap.X2SetupFailure  X2SetupFailure
               No value
               x2ap.X2SetupFailure

           x2ap.X2SetupRequest  X2SetupRequest
               No value
               x2ap.X2SetupRequest

           x2ap.X2SetupResponse  X2SetupResponse
               No value
               x2ap.X2SetupResponse

           x2ap.allocationAndRetentionPriority  allocationAndRetentionPriority
               Unsigned 32-bit integer
               x2ap.AllocationAndRetentionPriority

           x2ap.bearer_ID  bearer-ID
               Unsigned 32-bit integer
               x2ap.Bearer_ID

           x2ap.bearers_ToBeSetup_List  bearers-ToBeSetup-List
               Unsigned 32-bit integer
               x2ap.Bearers_ToBeSetup_List

           x2ap.broadcastPLMNs  broadcastPLMNs
               Unsigned 32-bit integer
               x2ap.BroadcastPLMNs_Item

           x2ap.cause  cause
               Unsigned 32-bit integer
               x2ap.Cause

           x2ap.cellId  cellId
               No value
               x2ap.ECGI

           x2ap.cellType  cellType
               Unsigned 32-bit integer
               x2ap.CellType

           x2ap.cell_ID  cell-ID
               No value
               x2ap.ECGI

           x2ap.cell_Transmission_Bandwidth  cell-Transmission-Bandwidth
               Unsigned 32-bit integer
               x2ap.Cell_Transmission_Bandwidth

           x2ap.criticality  criticality
               Unsigned 32-bit integer
               x2ap.Criticality

           x2ap.dL_COUNTvalue  dL-COUNTvalue
               No value
               x2ap.COUNTvalue

           x2ap.dL_EARFCN  dL-EARFCN
               Unsigned 32-bit integer
               x2ap.EARFCN

           x2ap.dL_Forwarding  dL-Forwarding
               Unsigned 32-bit integer
               x2ap.DL_Forwarding

           x2ap.dL_GTP_TunnelEndpoint  dL-GTP-TunnelEndpoint
               No value
               x2ap.GTPtunnelEndpoint

           x2ap.eNB_ID  eNB-ID
               Unsigned 32-bit integer
               x2ap.ENB_ID

           x2ap.eUTRANcellIdentifier  eUTRANcellIdentifier
               Byte array
               x2ap.EUTRANCellIdentifier

           x2ap.equivalentPLMNs  equivalentPLMNs
               Unsigned 32-bit integer
               x2ap.EPLMNs

           x2ap.eventType  eventType
               Unsigned 32-bit integer
               x2ap.EventType

           x2ap.extensionValue  extensionValue
               No value
               x2ap.T_extensionValue

           x2ap.forbiddenInterRATs  forbiddenInterRATs
               Unsigned 32-bit integer
               x2ap.ForbiddenInterRATs

           x2ap.forbiddenLACs  forbiddenLACs
               Unsigned 32-bit integer
               x2ap.ForbiddenLACs

           x2ap.forbiddenLAs  forbiddenLAs
               Unsigned 32-bit integer
               x2ap.ForbiddenLAs

           x2ap.forbiddenTACs  forbiddenTACs
               Unsigned 32-bit integer
               x2ap.ForbiddenTACs

           x2ap.forbiddenTAs  forbiddenTAs
               Unsigned 32-bit integer
               x2ap.ForbiddenTAs

           x2ap.gTP_TEID  gTP-TEID
               Byte array
               x2ap.GTP_TEI

           x2ap.gU_Group_ID  gU-Group-ID
               No value
               x2ap.GU_Group_ID

           x2ap.gbrQosInformation  gbrQosInformation
               No value
               x2ap.GBR_QosInformation

           x2ap.global_Cell_ID  global-Cell-ID
               No value
               x2ap.ECGI

           x2ap.hFN  hFN
               Unsigned 32-bit integer
               x2ap.HFN

           x2ap.handoverRestrictionList  handoverRestrictionList
               No value
               x2ap.HandoverRestrictionList

           x2ap.home_eNB_ID  home-eNB-ID
               Byte array
               x2ap.BIT_STRING_SIZE_28

           x2ap.iECriticality  iECriticality
               Unsigned 32-bit integer
               x2ap.Criticality

           x2ap.iE_Extensions  iE-Extensions
               Unsigned 32-bit integer
               x2ap.ProtocolExtensionContainer

           x2ap.iE_ID  iE-ID
               Unsigned 32-bit integer
               x2ap.ProtocolIE_ID

           x2ap.iEsCriticalityDiagnostics  iEsCriticalityDiagnostics
               Unsigned 32-bit integer
               x2ap.CriticalityDiagnostics_IE_List

           x2ap.id  id
               Unsigned 32-bit integer
               x2ap.ProtocolIE_ID

           x2ap.initiatingMessage  initiatingMessage
               No value
               x2ap.InitiatingMessage

           x2ap.interfacesToTrace  interfacesToTrace
               Unsigned 32-bit integer
               x2ap.InterfacesToTrace

           x2ap.locationReportingInformation  locationReportingInformation
               No value
               x2ap.LocationReportingInformation

           x2ap.mME_Group_ID  mME-Group-ID
               Byte array
               x2ap.MME_Group_ID

           x2ap.mME_UE_S1AP_ID  mME-UE-S1AP-ID
               Unsigned 32-bit integer
               x2ap.UE_S1AP_ID

           x2ap.mMME_Code  mMME-Code
               Byte array
               x2ap.MME_Code

           x2ap.macro_eNB_ID  macro-eNB-ID
               Byte array
               x2ap.BIT_STRING_SIZE_20

           x2ap.misc  misc
               Unsigned 32-bit integer
               x2ap.CauseMisc

           x2ap.numberOfCellSpecificAntennaPorts  numberOfCellSpecificAntennaPorts
               Unsigned 32-bit integer
               x2ap.T_numberOfCellSpecificAntennaPorts

           x2ap.old_ecgi  old-ecgi
               No value
               x2ap.ECGI

           x2ap.pDCCH_InterferenceImpact  pDCCH-InterferenceImpact
               Unsigned 32-bit integer
               x2ap.INTEGER_0_4_

           x2ap.pDCP_SN  pDCP-SN
               Unsigned 32-bit integer
               x2ap.PDCP_SN

           x2ap.pLMN_Identity  pLMN-Identity
               Byte array
               x2ap.PLMN_Identity

           x2ap.p_B  p-B
               Unsigned 32-bit integer
               x2ap.INTEGER_0_3_

           x2ap.phyCID  phyCID
               Unsigned 32-bit integer
               x2ap.PhyCID

           x2ap.procedureCode  procedureCode
               Unsigned 32-bit integer
               x2ap.ProcedureCode

           x2ap.procedureCriticality  procedureCriticality
               Unsigned 32-bit integer
               x2ap.Criticality

           x2ap.protocol  protocol
               Unsigned 32-bit integer
               x2ap.CauseProtocol

           x2ap.protocolIEs  protocolIEs
               Unsigned 32-bit integer
               x2ap.ProtocolIE_Container

           x2ap.qCI  qCI
               Unsigned 32-bit integer
               x2ap.QCI

           x2ap.rNTP_PerPRB  rNTP-PerPRB
               Byte array
               x2ap.BIT_STRING_SIZE_6_110_

           x2ap.rNTP_Threshold  rNTP-Threshold
               Unsigned 32-bit integer
               x2ap.RNTP_Threshold

           x2ap.rRC_Context  rRC-Context
               Byte array
               x2ap.RRC_Context

           x2ap.radioNetwork  radioNetwork
               Unsigned 32-bit integer
               x2ap.CauseRadioNetwork

           x2ap.receiveStatusofULPDCPSDUs  receiveStatusofULPDCPSDUs
               Byte array
               x2ap.ReceiveStatusofULPDCPSDUs

           x2ap.relativeNarrowbandTxPower  relativeNarrowbandTxPower
               No value
               x2ap.RelativeNarrowbandTxPower

           x2ap.reportArea  reportArea
               Unsigned 32-bit integer
               x2ap.ReportArea

           x2ap.resoureStatus  resoureStatus
               Signed 32-bit integer
               x2ap.ResourceStatus

           x2ap.sAE_BearerLevel_QoS_Parameters  sAE-BearerLevel-QoS-Parameters
               No value
               x2ap.SAE_BearerLevel_QoS_Parameters

           x2ap.sAE_Bearer_GuaranteedBitrateDL  sAE-Bearer-GuaranteedBitrateDL
               Unsigned 64-bit integer
               x2ap.BitRate

           x2ap.sAE_Bearer_GuaranteedBitrateUL  sAE-Bearer-GuaranteedBitrateUL
               Unsigned 64-bit integer
               x2ap.BitRate

           x2ap.sAE_Bearer_ID  sAE-Bearer-ID
               Unsigned 32-bit integer
               x2ap.Bearer_ID

           x2ap.sAE_Bearer_MaximumBitrateDL  sAE-Bearer-MaximumBitrateDL
               Unsigned 64-bit integer
               x2ap.BitRate

           x2ap.sAE_Bearer_MaximumBitrateUL  sAE-Bearer-MaximumBitrateUL
               Unsigned 64-bit integer
               x2ap.BitRate

           x2ap.served_cells  served-cells
               No value
               x2ap.ServedCell_Information

           x2ap.servingPLMN  servingPLMN
               Byte array
               x2ap.PLMN_Identity

           x2ap.subscriberProfileIDforRFP  subscriberProfileIDforRFP
               Unsigned 32-bit integer
               x2ap.SubscriberProfileIDforRFP

           x2ap.successfulOutcome  successfulOutcome
               No value
               x2ap.SuccessfulOutcome

           x2ap.tAC  tAC
               Byte array
               x2ap.TAC

           x2ap.target_Cell_ID  target-Cell-ID
               No value
               x2ap.ECGI

           x2ap.time_UE_StayedInCell  time-UE-StayedInCell
               Signed 32-bit integer
               x2ap.Time_UE_StayedInCell

           x2ap.traceDepth  traceDepth
               Unsigned 32-bit integer
               x2ap.TraceDepth

           x2ap.traceInterface  traceInterface
               Unsigned 32-bit integer
               x2ap.TraceInterface

           x2ap.traceReference  traceReference
               Byte array
               x2ap.TraceReference

           x2ap.transport  transport
               Unsigned 32-bit integer
               x2ap.CauseTransport

           x2ap.transportLayerAddress  transportLayerAddress
               Byte array
               x2ap.TransportLayerAddress

           x2ap.triggeringMessage  triggeringMessage
               Unsigned 32-bit integer
               x2ap.TriggeringMessage

           x2ap.typeOfError  typeOfError
               Unsigned 32-bit integer
               x2ap.TypeOfError

           x2ap.uEaggregateMaximumBitRate  uEaggregateMaximumBitRate
               No value
               x2ap.UEAggregateMaximumBitRate

           x2ap.uEaggregateMaximumBitRateDownlink  uEaggregateMaximumBitRateDownlink
               Unsigned 64-bit integer
               x2ap.BitRate

           x2ap.uEaggregateMaximumBitRateUplink  uEaggregateMaximumBitRateUplink
               Unsigned 64-bit integer
               x2ap.BitRate

           x2ap.uL_COUNTvalue  uL-COUNTvalue
               No value
               x2ap.COUNTvalue

           x2ap.uL_EARFCN  uL-EARFCN
               Unsigned 32-bit integer
               x2ap.EARFCN

           x2ap.uL_GTP_TunnelEndpoint  uL-GTP-TunnelEndpoint
               No value
               x2ap.GTPtunnelEndpoint

           x2ap.uL_GTPtunnelEndpoint  uL-GTPtunnelEndpoint
               No value
               x2ap.GTPtunnelEndpoint

           x2ap.ul_HighInterferenceIndicationInfo  ul-HighInterferenceIndicationInfo
               Unsigned 32-bit integer
               x2ap.UL_HighInterferenceIndicationInfo

           x2ap.ul_InterferenceOverloadIndication  ul-InterferenceOverloadIndication
               Unsigned 32-bit integer
               x2ap.UL_InterferenceOverloadIndication

           x2ap.ul_interferenceindication  ul-interferenceindication
               Byte array
               x2ap.UL_HighInterferenceIndication

           x2ap.unsuccessfulOutcome  unsuccessfulOutcome
               No value
               x2ap.UnsuccessfulOutcome

           x2ap.value  value
               No value
               x2ap.ProtocolIE_Field_value

   Echo (echo)
           echo.data  Echo data
               Byte array
               Echo data

           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.as  Autonomous System
               Unsigned 16-bit integer
               Autonomous System number

           eigrp.opcode  Opcode
               Unsigned 8-bit integer
               Opcode number

           eigrp.tlv  Entry
               Unsigned 16-bit integer
               Type/Length/Value

   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 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 pertinent to the sender

           enip.cpf.sai.connid  Connection ID
               Unsigned 32-bit integer
               Common Packet Format: Sequenced Address Item, Connection Identifier

           enip.cpf.sai.seq  Sequence Number
               Unsigned 32-bit integer
               Common Packet Format: Sequenced Address Item, Sequence Number

           enip.cpf.typeid  Type ID
               Unsigned 16-bit integer
               Common Packet Format: Type of encapsulated item

           enip.lir.devtype  Device Type
               Unsigned 16-bit integer
               ListIdentity Reply: Device Type

           enip.lir.name  Product Name
               String
               ListIdentity Reply: Product Name

           enip.lir.prodcode  Product Code
               Unsigned 16-bit integer
               ListIdentity Reply: Product Code

           enip.lir.sa.sinaddr  sin_addr
               IPv4 address
               ListIdentity Reply: Socket Address.Sin Addr

           enip.lir.sa.sinfamily  sin_family
               Unsigned 16-bit integer
               ListIdentity Reply: Socket Address.Sin Family

           enip.lir.sa.sinport  sin_port
               Unsigned 16-bit integer
               ListIdentity Reply: Socket Address.Sin Port

           enip.lir.sa.sinzero  sin_zero
               Byte array
               ListIdentity Reply: Socket Address.Sin Zero

           enip.lir.serial  Serial Number
               Unsigned 32-bit integer
               ListIdentity Reply: Serial Number

           enip.lir.state  State
               Unsigned 8-bit integer
               ListIdentity Reply: State

           enip.lir.status  Status
               Unsigned 16-bit integer
               ListIdentity Reply: Status

           enip.lir.vendor  Vendor ID
               Unsigned 16-bit integer
               ListIdentity Reply: Vendor ID

           enip.lsr.capaflags.tcp  Supports CIP Encapsulation via TCP
               Unsigned 16-bit integer
               ListServices Reply: Supports CIP Encapsulation via TCP

           enip.lsr.capaflags.udp  Supports CIP Class 0 or 1 via UDP
               Unsigned 16-bit integer
               ListServices Reply: Supports CIP Class 0 or 1 via UDP

           enip.options  Options
               Unsigned 32-bit integer
               Options flags

           enip.session  Session Handle
               Unsigned 32-bit integer
               Session identification

           enip.srrd.iface  Interface Handle
               Unsigned 32-bit integer
               SendRRData: Interface handle

           enip.status  Status
               Unsigned 32-bit integer
               Status code

           enip.sud.iface  Interface Handle
               Unsigned 32-bit integer
               SendUnitData: Interface handle

   Etheric (etheric)
           etheric.address_presentation_restricted_indicator  Address presentation restricted indicator
               Unsigned 8-bit integer

           etheric.called_party_even_address_signal_digit  Address signal digit
               Unsigned 8-bit integer

           etheric.called_party_nature_of_address_indicator  Nature of address indicator
               Unsigned 8-bit integer

           etheric.called_party_odd_address_signal_digit  Address signal digit
               Unsigned 8-bit integer

           etheric.calling_party_even_address_signal_digit  Address signal digit
               Unsigned 8-bit integer

           etheric.calling_party_nature_of_address_indicator  Nature of address indicator
               Unsigned 8-bit integer

           etheric.calling_party_odd_address_signal_digit  Address signal digit
               Unsigned 8-bit integer

           etheric.calling_partys_category  Calling Party's category
               Unsigned 8-bit integer

           etheric.cause_indicator  Cause indicator
               Unsigned 8-bit integer

           etheric.cic  CIC
               Unsigned 16-bit integer
               Etheric CIC

           etheric.event_ind  Event indicator
               Unsigned 8-bit integer

           etheric.event_presentatiation_restr_ind  Event presentation restricted indicator
               Boolean

           etheric.forw_call_isdn_access_indicator  ISDN access indicator
               Boolean

           etheric.inband_information_ind  In-band information indicator
               Boolean

           etheric.inn_indicator  INN indicator
               Boolean

           etheric.isdn_odd_even_indicator  Odd/even indicator
               Boolean

           etheric.mandatory_variable_parameter_pointer  Pointer to Parameter
               Unsigned 8-bit integer

           etheric.message.length  Message length
               Unsigned 8-bit integer
               Etheric Message length

           etheric.message.type  Message type
               Unsigned 8-bit integer
               Etheric message types

           etheric.ni_indicator  NI indicator
               Boolean

           etheric.numbering_plan_indicator  Numbering plan indicator
               Unsigned 8-bit integer

           etheric.optional_parameter_part_pointer  Pointer to optional parameter part
               Unsigned 8-bit integer

           etheric.parameter_length  Parameter Length
               Unsigned 8-bit integer

           etheric.parameter_type  Parameter Type
               Unsigned 8-bit integer

           etheric.protocol_version  Protocol version
               Unsigned 8-bit integer
               Etheric protocol version

           etheric.screening_indicator  Screening indicator
               Unsigned 8-bit integer

           etheric.transmission_medium_requirement  Transmission medium requirement
               Unsigned 8-bit integer

   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
               Status

           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.handle  Handle
               Byte array

           eventlog.eventlog_OpenEventLogW.logname  Logname
               No value

           eventlog.eventlog_OpenEventLogW.servername  Servername
               No value

           eventlog.eventlog_OpenEventLogW.unknown0  Unknown0
               No value

           eventlog.eventlog_OpenEventLogW.unknown2  Unknown2
               Unsigned 32-bit integer

           eventlog.eventlog_OpenEventLogW.unknown3  Unknown3
               Unsigned 32-bit integer

           eventlog.eventlog_OpenUnknown0.unknown0  Unknown0
               Unsigned 16-bit integer

           eventlog.eventlog_OpenUnknown0.unknown1  Unknown1
               Unsigned 16-bit integer

           eventlog.eventlog_ReadEventLogW.data  Data
               Unsigned 8-bit integer

           eventlog.eventlog_ReadEventLogW.flags  Flags
               Unsigned 32-bit integer

           eventlog.eventlog_ReadEventLogW.handle  Handle
               Byte array

           eventlog.eventlog_ReadEventLogW.number_of_bytes  Number Of Bytes
               Unsigned 32-bit integer

           eventlog.eventlog_ReadEventLogW.offset  Offset
               Unsigned 32-bit integer

           eventlog.eventlog_ReadEventLogW.real_size  Real Size
               Unsigned 32-bit integer

           eventlog.eventlog_ReadEventLogW.sent_size  Sent Size
               Unsigned 32-bit integer

           eventlog.eventlog_Record.closing_record_number  Closing Record Number
               Unsigned 32-bit integer

           eventlog.eventlog_Record.computer_name  Computer Name
               No value

           eventlog.eventlog_Record.data_length  Data Length
               Unsigned 32-bit integer

           eventlog.eventlog_Record.data_offset  Data Offset
               Unsigned 32-bit integer

           eventlog.eventlog_Record.event_category  Event Category
               Unsigned 16-bit integer

           eventlog.eventlog_Record.event_id  Event Id
               Unsigned 32-bit integer

           eventlog.eventlog_Record.event_type  Event Type
               Unsigned 16-bit integer

           eventlog.eventlog_Record.num_of_strings  Num Of Strings
               Unsigned 16-bit integer

           eventlog.eventlog_Record.raw_data  Raw Data
               No value

           eventlog.eventlog_Record.record_number  Record Number
               Unsigned 32-bit integer

           eventlog.eventlog_Record.reserved  Reserved
               Unsigned 32-bit integer

           eventlog.eventlog_Record.reserved_flags  Reserved Flags
               Unsigned 16-bit integer

           eventlog.eventlog_Record.sid_length  Sid Length
               Unsigned 32-bit integer

           eventlog.eventlog_Record.sid_offset  Sid Offset
               Unsigned 32-bit integer

           eventlog.eventlog_Record.size  Size
               Unsigned 32-bit integer

           eventlog.eventlog_Record.source_name  Source Name
               No value

           eventlog.eventlog_Record.stringoffset  Stringoffset
               Unsigned 32-bit integer

           eventlog.eventlog_Record.strings  Strings
               No value

           eventlog.eventlog_Record.time_generated  Time Generated
               Unsigned 32-bit integer

           eventlog.eventlog_Record.time_written  Time Written
               Unsigned 32-bit integer

           eventlog.eventlog_RegisterEventSourceW.handle  Handle
               Byte array

           eventlog.eventlog_RegisterEventSourceW.logname  Logname
               No value

           eventlog.eventlog_RegisterEventSourceW.servername  Servername
               No value

           eventlog.eventlog_RegisterEventSourceW.unknown0  Unknown0
               No value

           eventlog.eventlog_RegisterEventSourceW.unknown2  Unknown2
               Unsigned 32-bit integer

           eventlog.eventlog_RegisterEventSourceW.unknown3  Unknown3
               Unsigned 32-bit integer

           eventlog.opnum  Operation
               Unsigned 16-bit integer

           eventlog.status  NT Error
               Unsigned 32-bit integer

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

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

           ess.ContentIdentifier  ContentIdentifier
               Byte array
               ess.ContentIdentifier

           ess.ContentReference  ContentReference
               No value
               ess.ContentReference

           ess.ESSCertID  ESSCertID
               No value
               ess.ESSCertID

           ess.ESSSecurityLabel  ESSSecurityLabel
               No value
               ess.ESSSecurityLabel

           ess.EnumeratedTag  EnumeratedTag
               No value
               ess.EnumeratedTag

           ess.EquivalentLabels  EquivalentLabels
               Unsigned 32-bit integer
               ess.EquivalentLabels

           ess.GeneralNames  GeneralNames
               Unsigned 32-bit integer
               x509ce.GeneralNames

           ess.InformativeTag  InformativeTag
               No value
               ess.InformativeTag

           ess.MLData  MLData
               No value
               ess.MLData

           ess.MLExpansionHistory  MLExpansionHistory
               Unsigned 32-bit integer
               ess.MLExpansionHistory

           ess.MsgSigDigest  MsgSigDigest
               Byte array
               ess.MsgSigDigest

           ess.PermissiveTag  PermissiveTag
               No value
               ess.PermissiveTag

           ess.PolicyInformation  PolicyInformation
               No value
               x509ce.PolicyInformation

           ess.Receipt  Receipt
               No value
               ess.Receipt

           ess.ReceiptRequest  ReceiptRequest
               No value
               ess.ReceiptRequest

           ess.RestrictiveTag  RestrictiveTag
               No value
               ess.RestrictiveTag

           ess.SecurityAttribute  SecurityAttribute
               Signed 32-bit integer
               ess.SecurityAttribute

           ess.SecurityCategory  SecurityCategory
               No value
               ess.SecurityCategory

           ess.SigningCertificate  SigningCertificate
               No value
               ess.SigningCertificate

           ess.allOrFirstTier  allOrFirstTier
               Signed 32-bit integer
               ess.AllOrFirstTier

           ess.attributeFlags  attributeFlags
               Byte array
               ess.BIT_STRING

           ess.attributeList  attributeList
               Unsigned 32-bit integer
               ess.SET_OF_SecurityAttribute

           ess.attributes  attributes
               Unsigned 32-bit integer
               ess.FreeFormField

           ess.bitSetAttributes  bitSetAttributes
               Byte array
               ess.BIT_STRING

           ess.certHash  certHash
               Byte array
               ess.Hash

           ess.certs  certs
               Unsigned 32-bit integer
               ess.SEQUENCE_OF_ESSCertID

           ess.contentDescription  contentDescription
               String
               ess.UTF8String

           ess.contentType  contentType
               Object Identifier
               cms.ContentType

           ess.expansionTime  expansionTime
               String
               ess.GeneralizedTime

           ess.inAdditionTo  inAdditionTo
               Unsigned 32-bit integer
               ess.SEQUENCE_OF_GeneralNames

           ess.insteadOf  insteadOf
               Unsigned 32-bit integer
               ess.SEQUENCE_OF_GeneralNames

           ess.issuer  issuer
               Unsigned 32-bit integer
               x509ce.GeneralNames

           ess.issuerAndSerialNumber  issuerAndSerialNumber
               No value
               cms.IssuerAndSerialNumber

           ess.issuerSerial  issuerSerial
               No value
               ess.IssuerSerial

           ess.mailListIdentifier  mailListIdentifier
               Unsigned 32-bit integer
               ess.EntityIdentifier

           ess.mlReceiptPolicy  mlReceiptPolicy
               Unsigned 32-bit integer
               ess.MLReceiptPolicy

           ess.none  none
               No value
               ess.NULL

           ess.originatorSignatureValue  originatorSignatureValue
               Byte array
               ess.OCTET_STRING

           ess.pString  pString
               String
               ess.PrintableString

           ess.policies  policies
               Unsigned 32-bit integer
               ess.SEQUENCE_OF_PolicyInformation

           ess.privacy_mark  privacy-mark
               Unsigned 32-bit integer
               ess.ESSPrivacyMark

           ess.receiptList  receiptList
               Unsigned 32-bit integer
               ess.SEQUENCE_OF_GeneralNames

           ess.receiptsFrom  receiptsFrom
               Unsigned 32-bit integer
               ess.ReceiptsFrom

           ess.receiptsTo  receiptsTo
               Unsigned 32-bit integer
               ess.SEQUENCE_OF_GeneralNames

           ess.securityAttributes  securityAttributes
               Unsigned 32-bit integer
               ess.SET_OF_SecurityAttribute

           ess.security_categories  security-categories
               Unsigned 32-bit integer
               ess.SecurityCategories

           ess.security_classification  security-classification
               Signed 32-bit integer
               ess.SecurityClassification

           ess.security_policy_identifier  security-policy-identifier
               Object Identifier
               ess.SecurityPolicyIdentifier

           ess.serialNumber  serialNumber
               Signed 32-bit integer
               x509af.CertificateSerialNumber

           ess.signedContentIdentifier  signedContentIdentifier
               Byte array
               ess.ContentIdentifier

           ess.subjectKeyIdentifier  subjectKeyIdentifier
               Byte array
               x509ce.SubjectKeyIdentifier

           ess.tagName  tagName
               Object Identifier
               ess.OBJECT_IDENTIFIER

           ess.type  type
               Object Identifier
               ess.T_type

           ess.type_OID  type
               String
               Type of Security Category

           ess.utf8String  utf8String
               String
               ess.UTF8String

           ess.value  value
               No value
               ess.T_value

           ess.version  version
               Signed 32-bit integer
               ess.ESSVersion

   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

   Extensible Record Format (erf)
           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
               Addressing Mode

           fcels.cbind.dnpname  Destination N_Port Port_Name
               String

           fcels.cbind.handle  Connection Handle
               Unsigned 16-bit integer
               Cbind/Unbind connection handle

           fcels.cbind.ifcp_version  iFCP version
               Unsigned 8-bit integer
               Version of iFCP protocol

           fcels.cbind.liveness  Liveness Test Interval
               Unsigned 16-bit integer
               Liveness Test Interval in seconds

           fcels.cbind.snpname  Source N_Port Port_Name
               String

           fcels.cbind.status  Status
               Unsigned 16-bit integer
               Cbind status

           fcels.cbind.userinfo  UserInfo
               Unsigned 32-bit integer
               Userinfo token

           fcels.cls.cns  Class Supported
               Boolean

           fcels.cls.nzctl  Non-zero CS_CTL
               Boolean

           fcels.cls.prio  Priority
               Boolean

           fcels.cls.sdr  Delivery Mode
               Boolean

           fcels.cmn.bbb  B2B Credit Mgmt
               Boolean

           fcels.cmn.broadcast  Broadcast
               Boolean

           fcels.cmn.cios  Cont. Incr. Offset Supported
               Boolean

           fcels.cmn.clk  Clk Sync
               Boolean

           fcels.cmn.dhd  DHD Capable
               Boolean

           fcels.cmn.e_d_tov  E_D_TOV
               Boolean

           fcels.cmn.multicast  Multicast
               Boolean

           fcels.cmn.payload  Payload Len
               Boolean

           fcels.cmn.rro  RRO Supported
               Boolean

           fcels.cmn.security  Security
               Boolean

           fcels.cmn.seqcnt  SEQCNT
               Boolean

           fcels.cmn.simplex  Simplex
               Boolean

           fcels.cmn.vvv  Valid Vendor Version
               Boolean

           fcels.edtov  E_D_TOV
               Unsigned 16-bit integer

           fcels.faddr  Fabric Address
               String

           fcels.faildrcvr  Failed Receiver AL_PA
               Unsigned 8-bit integer

           fcels.fcpflags  FCP Flags
               Unsigned 32-bit integer

           fcels.fcpflags.ccomp  Comp
               Boolean

           fcels.fcpflags.datao  Data Overlay
               Boolean

           fcels.fcpflags.initiator  Initiator
               Boolean

           fcels.fcpflags.rdxr  Rd Xfer_Rdy Dis
               Boolean

           fcels.fcpflags.retry  Retry
               Boolean

           fcels.fcpflags.target  Target
               Boolean

           fcels.fcpflags.trirep  Task Retry Ident
               Boolean

           fcels.fcpflags.trireq  Task Retry Ident
               Boolean

           fcels.fcpflags.wrxr  Wr Xfer_Rdy Dis
               Boolean

           fcels.flacompliance  FC-FLA Compliance
               Unsigned 8-bit integer

           fcels.flag  Flag
               Unsigned 8-bit integer

           fcels.fnname  Fabric/Node Name
               String

           fcels.fpname  Fabric Port Name
               String

           fcels.hrdaddr  Hard Address of Originator
               String

           fcels.logi.b2b  B2B Credit
               Unsigned 8-bit integer

           fcels.logi.bbscnum  BB_SC Number
               Unsigned 8-bit integer

           fcels.logi.cls1param  Class 1 Svc Param
               Byte array

           fcels.logi.cls2param  Class 2 Svc Param
               Byte array

           fcels.logi.cls3param  Class 3 Svc Param
               Byte array

           fcels.logi.cls4param  Class 4 Svc Param
               Byte array

           fcels.logi.clsflags  Service Options
               Unsigned 16-bit integer

           fcels.logi.clsrcvsize  Class Recv Size
               Unsigned 16-bit integer

           fcels.logi.cmnfeatures  Common Svc Parameters
               Unsigned 16-bit integer

           fcels.logi.e2e  End2End Credit
               Unsigned 16-bit integer

           fcels.logi.initctl  Initiator Ctl
               Unsigned 16-bit integer

           fcels.logi.initctl.ack0  ACK0 Capable
               Boolean

           fcels.logi.initctl.ackgaa  ACK GAA
               Boolean

           fcels.logi.initctl.initial_pa  Initial P_A
               Unsigned 16-bit integer

           fcels.logi.initctl.sync  Clock Sync
               Boolean

           fcels.logi.maxconseq  Max Concurrent Seq
               Unsigned 16-bit integer

           fcels.logi.openseq  Open Seq Per Exchg
               Unsigned 8-bit integer

           fcels.logi.rcptctl  Recipient Ctl
               Unsigned 16-bit integer

           fcels.logi.rcptctl.ack  ACK0
               Boolean

           fcels.logi.rcptctl.category  Category
               Unsigned 16-bit integer

           fcels.logi.rcptctl.interlock  X_ID Interlock
               Boolean

           fcels.logi.rcptctl.policy  Policy
               Unsigned 16-bit integer

           fcels.logi.rcptctl.sync  Clock Sync
               Boolean

           fcels.logi.rcvsize  Receive Size
               Unsigned 16-bit integer

           fcels.logi.reloff  Relative Offset By Info Cat
               Unsigned 16-bit integer

           fcels.logi.svcavail  Services Availability
               Byte array

           fcels.logi.totconseq  Total Concurrent Seq
               Unsigned 8-bit integer

           fcels.logi.vendvers  Vendor Version
               Byte array

           fcels.loopstate  Loop State
               Unsigned 8-bit integer

           fcels.matchcp  Match Address Code Points
               Unsigned 8-bit integer

           fcels.npname  N_Port Port_Name
               String

           fcels.opcode  Cmd Code
               Unsigned 8-bit integer

           fcels.oxid  OXID
               Unsigned 16-bit integer

           fcels.portid  Originator S_ID
               String

           fcels.portnum  Physical Port Number
               Unsigned 32-bit integer

           fcels.portstatus  Port Status
               Unsigned 16-bit integer

           fcels.prliloflags  PRLILO Flags
               Unsigned 8-bit integer

           fcels.prliloflags.eip  Est Image Pair
               Boolean

           fcels.prliloflags.ipe  Image Pair Estd
               Boolean

           fcels.prliloflags.opav  Orig PA Valid
               Boolean

           fcels.pubdev_bmap  Public Loop Device Bitmap
               Byte array

           fcels.pvtdev_bmap  Private Loop Device Bitmap
               Byte array

           fcels.rcovqual  Recovery Qualifier
               Unsigned 8-bit integer

           fcels.reqipaddr  Requesting IP Address
               IPv6 address

           fcels.respaction  Responder Action
               Unsigned 8-bit integer

           fcels.respipaddr  Responding IP Address
               IPv6 address

           fcels.respname  Responding Port Name
               String

           fcels.respnname  Responding Node Name
               String

           fcels.resportid  Responding Port ID
               String

           fcels.rjt.detail  Reason Explanation
               Unsigned 8-bit integer

           fcels.rjt.reason  Reason Code
               Unsigned 8-bit integer

           fcels.rjt.vnduniq  Vendor Unique
               Unsigned 8-bit integer

           fcels.rnft.fc4type  FC-4 Type
               Unsigned 8-bit integer

           fcels.rnid.asstype  Associated Type
               Unsigned 32-bit integer

           fcels.rnid.attnodes  Number of Attached Nodes
               Unsigned 32-bit integer

           fcels.rnid.ip  IP Address
               IPv6 address

           fcels.rnid.ipvers  IP Version
               Unsigned 8-bit integer

           fcels.rnid.nodeidfmt  Node Identification Format
               Unsigned 8-bit integer

           fcels.rnid.nodemgmt  Node Management
               Unsigned 8-bit integer

           fcels.rnid.physport  Physical Port Number
               Unsigned 32-bit integer

           fcels.rnid.spidlen  Specific Id Length
               Unsigned 8-bit integer

           fcels.rnid.tcpport  TCP/UDP Port Number
               Unsigned 16-bit integer

           fcels.rnid.vendorsp  Vendor Specific
               Unsigned 16-bit integer

           fcels.rnid.vendoruniq  Vendor Unique
               Byte array

           fcels.rscn.addrfmt  Address Format
               Unsigned 8-bit integer

           fcels.rscn.area  Affected Area
               Unsigned 8-bit integer

           fcels.rscn.domain  Affected Domain
               Unsigned 8-bit integer

           fcels.rscn.evqual  Event Qualifier
               Unsigned 8-bit integer

           fcels.rscn.port  Affected Port
               Unsigned 8-bit integer

           fcels.rxid  RXID
               Unsigned 16-bit integer

           fcels.scr.regn  Registration Function
               Unsigned 8-bit integer

           fcels.speedflags  Port Speed Capabilities
               Unsigned 16-bit integer

           fcels.speedflags.10gb  10Gb Support
               Boolean

           fcels.speedflags.1gb  1Gb Support
               Boolean

           fcels.speedflags.2gb  2Gb Support
               Boolean

           fcels.speedflags.4gb  4Gb Support
               Boolean

           fcels.tprloflags.gprlo  Global PRLO
               Boolean

           fcels.tprloflags.npv  3rd Party N_Port Valid
               Boolean

           fcels.tprloflags.opav  3rd Party Orig PA Valid
               Boolean

           fcels.tprloflags.rpav  Resp PA Valid
               Boolean

           fcels.unbind.status  Status
               Unsigned 16-bit integer
               Unbind status

   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
               Angle of Arrival

           fp.cell-portion-id  Cell Portion ID
               Unsigned 8-bit integer
               Cell Portion ID

           fp.cfn  CFN
               Unsigned 8-bit integer
               Connection Frame Number

           fp.cfn-control  CFN control
               Unsigned 8-bit integer
               Connection Frame Number Control

           fp.channel-type  Channel Type
               Unsigned 8-bit integer
               Channel Type

           fp.channel-with-zero-tbs  No TBs for channel
               Unsigned 32-bit integer
               Channel with 0 TBs

           fp.cmch-pi  CmCH-PI
               Unsigned 8-bit integer
               Common Transport Channel Priority Indicator

           fp.code-number  Code number
               Unsigned 8-bit integer
               Code number

           fp.common.control.e-rucch-flag  E-RUCCH Flag
               Unsigned 8-bit integer
               E-RUCCH Flag

           fp.common.control.frame-type  Control Frame Type
               Unsigned 8-bit integer
               Common Control Frame Type

           fp.common.control.rx-timing-deviation  Rx Timing Deviation
               Unsigned 8-bit integer
               Common Rx Timing Deviation

           fp.congestion-status  Congestion Status
               Unsigned 8-bit integer
               Congestion Status

           fp.cpch.tfi  TFI
               Unsigned 8-bit integer
               CPCH Transport Format Indicator

           fp.crci  CRCI
               Unsigned 8-bit integer
               CRC correctness indicator

           fp.crcis  CRCIs
               Byte array
               CRC Indicators for uplink TBs

           fp.data  Data
               Byte array
               Data

           fp.dch.control.frame-type  Control Frame Type
               Unsigned 8-bit integer
               DCH Control Frame Type

           fp.dch.control.rx-timing-deviation  Rx Timing Deviation
               Unsigned 8-bit integer
               DCH Rx Timing Deviation

           fp.dch.quality-estimate  Quality Estimate
               Unsigned 8-bit integer
               Quality Estimate

           fp.direction  Direction
               Unsigned 8-bit integer
               Link direction

           fp.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
               DRT

           fp.drt-indicator  DRT Indicator
               Unsigned 8-bit integer
               DRT Indicator

           fp.edch-data-padding  Padding
               Unsigned 8-bit integer
               E-DCH padding before PDU

           fp.edch-tsn  TSN
               Unsigned 8-bit integer
               E-DCH Transmission Sequence Number

           fp.edch.ddi  DDI
               Unsigned 8-bit integer
               E-DCH Data Description Indicator

           fp.edch.fsn  FSN
               Unsigned 8-bit integer
               E-DCH Frame Sequence Number

           fp.edch.header-crc  E-DCH Header CRC
               Unsigned 16-bit integer
               E-DCH Header CRC

           fp.edch.mac-es-pdu  MAC-es PDU
               No value
               MAC-es PDU

           fp.edch.no-of-harq-retransmissions  No of HARQ Retransmissions
               Unsigned 8-bit integer
               E-DCH Number of HARQ retransmissions

           fp.edch.no-of-subframes  No of subframes
               Unsigned 8-bit integer
               E-DCH Number of subframes

           fp.edch.number-of-mac-d-pdus  Number of Mac-d PDUs
               Unsigned 8-bit integer
               Number of Mac-d PDUs

           fp.edch.number-of-mac-es-pdus  Number of Mac-es PDUs
               Unsigned 8-bit integer
               Number of Mac-es PDUs

           fp.edch.subframe  Subframe
               String
               EDCH Subframe

           fp.edch.subframe-header  Subframe header
               String
               EDCH Subframe header

           fp.edch.subframe-number  Subframe number
               Unsigned 8-bit integer
               E-DCH Subframe number

           fp.erucch-present  E-RUCCH Present
               Unsigned 8-bit integer
               E-RUCCH Present

           fp.ext-propagation-delay  Ext Propagation Delay
               Unsigned 16-bit integer
               Ext Propagation Delay

           fp.ext-received-sync-ul-timing-deviation  Ext Received SYNC UL Timing Deviation
               Unsigned 16-bit integer
               Ext Received SYNC UL Timing Deviation

           fp.extended-bits  Extended Bits
               Unsigned 8-bit integer
               Extended Bits

           fp.extended-bits-present  Extended Bits Present
               Unsigned 8-bit integer
               Extended Bits Present

           fp.fach-indicator  FACH Indicator
               Unsigned 8-bit integer
               FACH Indicator

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

           fp.header-crc  Header CRC
               Unsigned 8-bit integer
               Header CRC

           fp.hrnti  HRNTI
               Unsigned 16-bit integer
               HRNTI

           fp.hsdsch-calculated-rate  Calculated rate allocation (bps)
               Unsigned 32-bit integer
               Calculated rate RNC is allowed to send in bps

           fp.hsdsch-credits  HS-DSCH Credits
               Unsigned 16-bit integer
               HS-DSCH Credits

           fp.hsdsch-data-padding  Padding
               Unsigned 8-bit integer
               HS-DSCH Repetition Period in milliseconds

           fp.hsdsch-interval  HS-DSCH Interval in milliseconds
               Unsigned 8-bit integer
               HS-DSCH Interval in milliseconds

           fp.hsdsch-repetition-period  HS-DSCH Repetition Period
               Unsigned 8-bit integer
               HS-DSCH Repetition Period in milliseconds

           fp.hsdsch-unlimited-rate  Unlimited rate
               No value
               No restriction on rate at which date may be sent

           fp.hsdsch.drt  DRT
               Unsigned 8-bit integer
               Delay Reference Time

           fp.hsdsch.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
               DRT IE present

           fp.hsdsch.new-ie-flags  New IEs flags
               String
               New IEs flags

           fp.hsdsch.new-ie-flags-byte  Another new IE flags byte
               Unsigned 8-bit integer
               Another new IE flagsbyte

           fp.hsdsch.num-of-pdu  Number of PDUs
               Unsigned 8-bit integer
               Number of PDUs in the payload

           fp.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
               Logical Channel ID

           fp.mac-d-pdu  MAC-d PDU
               Byte array
               MAC-d PDU

           fp.max-ue-tx-pow  MAX_UE_TX_POW
               Signed 8-bit integer
               Max UE TX POW (dBm)

           fp.mc-info  MC info
               Unsigned 8-bit integer
               MC info

           fp.multiple-rl-sets-indicator  Multiple RL sets indicator
               Unsigned 8-bit integer
               Multiple RL sets indicator

           fp.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
               Payload CRC

           fp.pch.cfn  CFN (PCH)
               Unsigned 16-bit integer
               PCH Connection Frame Number

           fp.pch.pi  Paging Indication
               Unsigned 8-bit integer
               Indicates if the PI Bitmap is present

           fp.pch.pi-bitmap  Paging Indications bitmap
               No value
               Paging Indication bitmap

           fp.pch.tfi  TFI
               Unsigned 8-bit integer
               PCH Transport Format Indicator

           fp.pch.toa  ToA (PCH)
               Signed 24-bit integer
               PCH Time of Arrival

           fp.pdsch-set-id  PDSCH Set Id
               Unsigned 8-bit integer
               A pointer to the PDSCH Set which shall be used to transmit

           fp.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
               Propagation Delay

           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
               RACH Measurement Result

           fp.rach.angle-of-arrival-present  Angle of arrival present
               Unsigned 8-bit integer
               Angle of arrival present

           fp.rach.cell-portion-id-present  Cell portion ID present
               Unsigned 8-bit integer
               Cell portion ID present

           fp.rach.ext-propagation-delay-present  Ext Propagation Delay Present
               Unsigned 8-bit integer
               Ext Propagation Delay Present

           fp.rach.ext-rx-sync-ul-timing-deviation-present  Ext Received Sync UL Timing Deviation present
               Unsigned 8-bit integer
               Ext Received Sync UL Timing Deviation present

           fp.rach.ext-rx-timing-deviation-present  Ext Rx Timing Deviation present
               Unsigned 8-bit integer
               Ext Rx Timing Deviation present

           fp.rach.new-ie-flag  New IE present
               Unsigned 8-bit integer
               New IE present

           fp.rach.new-ie-flags  New IEs flags
               String
               New IEs flags

           fp.radio-interface-param.cfn-valid  CFN valid
               Unsigned 16-bit integer
               CFN valid

           fp.radio-interface-param.dpc-mode-valid  DPC mode valid
               Unsigned 16-bit integer
               DPC mode valid

           fp.radio-interface-param.max-ue-tx-pow-valid  MAX_UE_TX_POW valid
               Unsigned 16-bit integer
               MAX UE TX POW valid

           fp.radio-interface-param.tpc-po-valid  TPC PO valid
               Unsigned 16-bit integer
               TPC PO valid

           fp.radio-interface_param.rl-sets-indicator-valid  RL sets indicator valid
               Unsigned 16-bit integer
               RL sets indicator valid

           fp.rx-sync-ul-timing-deviation  Received SYNC UL Timing Deviation
               Unsigned 8-bit integer
               Received SYNC UL Timing Deviation

           fp.spare-extension  Spare Extension
               No value
               Spare Extension

           fp.spreading-factor  Spreading factor
               Unsigned 8-bit integer
               Spreading factor

           fp.t1  T1
               Unsigned 24-bit integer
               RNC frame number indicating time it sends frame

           fp.t2  T2
               Unsigned 24-bit integer
               NodeB frame number indicating time it received DL Sync

           fp.t3  T3
               Unsigned 24-bit integer
               NodeB frame number indicating time it sends frame

           fp.tb  TB
               Byte array
               Transport Block

           fp.tfi  TFI
               Unsigned 8-bit integer
               Transport Format Indicator

           fp.timing-advance  Timing advance
               Unsigned 8-bit integer
               Timing advance in chips

           fp.tpc-po  TPC PO
               Unsigned 8-bit integer
               TPC PO

           fp.transmit-power-level  Transmit Power Level
               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

   FTP Data (ftp-data)
   FTServer Operations (ftserver)
           ftserver.opnum  Operation
               Unsigned 16-bit integer
               Operation

   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
               CS_CTL

           fc.d_id  Dest Addr
               String
               Destination Address

           fc.df_ctl  DF_CTL
               Unsigned 8-bit integer

           fc.exchange_first_frame  Exchange First In
               Frame number
               The first frame of this exchange is in this frame

           fc.exchange_last_frame  Exchange Last In
               Frame number
               The last frame of this exchange is in this frame

           fc.f_ctl  F_CTL
               Unsigned 24-bit integer

           fc.fctl.abts_ack  AA
               Unsigned 24-bit integer
               ABTS ACK values

           fc.fctl.abts_not_ack  AnA
               Unsigned 24-bit integer
               ABTS not ACK vals

           fc.fctl.ack_0_1  A01
               Unsigned 24-bit integer
               Ack 0/1 value

           fc.fctl.exchange_first  ExgFst
               Boolean
               First Exchange?

           fc.fctl.exchange_last  ExgLst
               Boolean
               Last Exchange?

           fc.fctl.exchange_responder  ExgRpd
               Boolean
               Exchange Responder?

           fc.fctl.last_data_frame  LDF
               Unsigned 24-bit integer
               Last Data Frame?

           fc.fctl.priority  Pri
               Boolean
               Priority

           fc.fctl.rel_offset  RelOff
               Boolean
               rel offset

           fc.fctl.rexmitted_seq  RetSeq
               Boolean
               Retransmitted Sequence

           fc.fctl.seq_last  SeqLst
               Boolean
               Last Sequence?

           fc.fctl.seq_recipient  SeqRec
               Boolean
               Seq Recipient?

           fc.fctl.transfer_seq_initiative  TSI
               Boolean
               Transfer Seq Initiative

           fc.ftype  Frame type
               Unsigned 8-bit integer
               Derived Type

           fc.id  Addr
               String
               Source or Destination Address

           fc.nethdr.da  Network DA
               String

           fc.nethdr.sa  Network SA
               String

           fc.ox_id  OX_ID
               Unsigned 16-bit integer
               Originator ID

           fc.parameter  Parameter
               Unsigned 32-bit integer
               Parameter

           fc.r_ctl  R_CTL
               Unsigned 8-bit integer
               R_CTL

           fc.reassembled  Reassembled Frame
               Boolean

           fc.relative_offset  Relative Offset
               Unsigned 32-bit integer
               Relative offset of data

           fc.rx_id  RX_ID
               Unsigned 16-bit integer
               Receiver ID

           fc.s_id  Src Addr
               String
               Source Address

           fc.seq_cnt  SEQ_CNT
               Unsigned 16-bit integer
               Sequence Count

           fc.seq_id  SEQ_ID
               Unsigned 8-bit integer
               Sequence ID

           fc.time  Time from Exchange First
               Time duration
               Time since the first frame of the Exchange

           fc.type  Type
               Unsigned 8-bit integer

           fc.vft  VFT Header
               Unsigned 16-bit integer
               VFT Header

           fc.vft.hop_ct  HopCT
               Unsigned 8-bit integer
               Hop Count

           fc.vft.rctl  R_CTL
               Unsigned 8-bit integer
               R_CTL

           fc.vft.type  Type
               Unsigned 8-bit integer
               Type of tagged frame

           fc.vft.ver  Version
               Unsigned 8-bit integer
               Version of VFT header

           fc.vft.vf_id  VF_ID
               Unsigned 16-bit integer
               Virtual Fabric ID

   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 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.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
               Mount Path

           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
               number of volumes

           fmp.description  Error Description
               String
               Client Error Description

           fmp.devSig  Signature DATA
               String
               Signature DATA

           fmp.dsi.ds.dsList.dskSigLst_val.dse.dskSigEnt_val  Celerra Signature
               String
               Celerra Signature

           fmp.dsi.ds.sig_offset  Sig Offset
               Unsigned 64-bit integer
               Sig Offset

           fmp.eof  EOF
               Unsigned 64-bit integer
               End Of File

           fmp.extentList_len  Extent List Length
               Unsigned 32-bit integer
               FMP Extent List Length

           fmp.extentState  Extent State
               Unsigned 32-bit integer
               FMP Extent State

           fmp.fileSize  File Size
               Unsigned 64-bit integer
               File Size

           fmp.firstLogBlk  firstLogBlk
               Unsigned 32-bit integer
               First Logical File Block

           fmp.firstLogBlk64  First Logical Block
               Unsigned 64-bit integer

           fmp.fmpFHandle  FMP File Handle
               Byte array
               FMP File Handle

           fmp.fsBlkSz  FS Block Size
               Unsigned 32-bit integer
               File System Block Size

           fmp.fsID  File System ID
               Unsigned 32-bit integer
               File System ID

           fmp.hostID  Host ID
               String
               Host ID

           fmp.minBlks  Minimum Blocks to Grant
               Unsigned 32-bit integer
               Minimum Blocks to Grant

           fmp.mount_path  Native Protocol: PATH
               String
               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
               NFS File Handle

           fmp.nfsv3Attr_fileid  File ID
               Unsigned 64-bit integer
               fileid

           fmp.nfsv3Attr_fsid  fsid
               Unsigned 64-bit integer
               fsid

           fmp.nfsv3Attr_gid  gid
               Unsigned 32-bit integer
               GID

           fmp.nfsv3Attr_mod  Mode
               Unsigned 32-bit integer
               Mode

           fmp.nfsv3Attr_nlink  nlink
               Unsigned 32-bit integer
               nlink

           fmp.nfsv3Attr_rdev  rdev
               Unsigned 64-bit integer
               rdev

           fmp.nfsv3Attr_type  Type
               Unsigned 32-bit integer
               NFSV3 Attr Type

           fmp.nfsv3Attr_uid  uid
               Unsigned 32-bit integer
               UID

           fmp.nfsv3Attr_used  Used
               Unsigned 64-bit integer
               used

           fmp.notifyPort  Notify Port
               Unsigned 32-bit integer
               FMP Notify Port

           fmp.numBlks  Number Blocks
               Unsigned 32-bit integer
               Number of Blocks

           fmp.numBlksReq  Extent Length
               Unsigned 32-bit integer
               Extent Length

           fmp.offset64  offset
               Unsigned 64-bit integer
               offset

           fmp.os_build  OS Build
               Unsigned 32-bit integer
               OS Build

           fmp.os_major  OS Major
               Unsigned 32-bit integer
               FMP OS Major

           fmp.os_minor  OS Minor
               Unsigned 32-bit integer
               FMP OS Minor

           fmp.os_name  OS Name
               String
               OS Name

           fmp.os_patch  OS Path
               Unsigned 32-bit integer
               OS Path

           fmp.plugIn  Plug In Args
               Byte array
               FMP Plug In Arguments

           fmp.plugInID  Plug In Cmd ID
               Byte array
               Plug In Command ID

           fmp.procedure  Procedure
               Unsigned 32-bit integer
               Procedure

           fmp.server_version_string  Server Version String
               String
               Server Version String

           fmp.sessHandle  Session Handle
               Byte array
               FMP Session Handle

           fmp.slice_size  size of the slice
               Unsigned 64-bit integer
               size of the slice

           fmp.startOffset  Start Offset
               Unsigned 32-bit integer
               FMP Start Offset

           fmp.start_offset64  Start offset
               Unsigned 64-bit integer
               Start Offset of extentEx

           fmp.status  Status
               Unsigned 32-bit integer
               Reply Status

           fmp.stripeSize  size of the stripe
               Unsigned 64-bit integer
               size of the stripe

           fmp.topVolumeId  Top Volume ID
               Unsigned 32-bit integer
               Top Volume ID

           fmp.volHandle  Volume Handle
               String
               FMP Volume Handle

           fmp.volID  Volume ID inside DART
               Unsigned 32-bit integer
               FMP Volume ID inside DART

           fmp.volume  Volume ID's
               Unsigned 32-bit integer
               FMP Volume ID's

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

           fmp_notify.firstLogBlk  First Logical Block
               Unsigned 32-bit integer
               First Logical File Block

           fmp_notify.fmpFHandle  FMP File Handle
               Byte array
               FMP File Handle

           fmp_notify.fmp_notify_procedure  Procedure
               Unsigned 32-bit integer
               Procedure

           fmp_notify.fsBlkSz  FS Block Size
               Unsigned 32-bit integer
               File System Block Size

           fmp_notify.fsID  File System ID
               Unsigned 32-bit integer
               File System ID

           fmp_notify.handleListLength  Number File Handles
               Unsigned 32-bit integer
               Number of File Handles

           fmp_notify.msgNum  Message Number
               Unsigned 32-bit integer
               FMP Message Number

           fmp_notify.numBlksReq  Number Blocks Requested
               Unsigned 32-bit integer
               Number Blocks Requested

           fmp_notify.sessHandle  Session Handle
               Byte array
               FMP Session Handle

           fmp_notify.status  Status
               Unsigned 32-bit integer
               Reply Status

   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
               Account (1)

           fix.AccountType  AccountType (581)
               String
               AccountType (581)

           fix.AccruedInterestAmt  AccruedInterestAmt (159)
               String
               AccruedInterestAmt (159)

           fix.AccruedInterestRate  AccruedInterestRate (158)
               String
               AccruedInterestRate (158)

           fix.AcctIDSource  AcctIDSource (660)
               String
               AcctIDSource (660)

           fix.Adjustment  Adjustment (334)
               String
               Adjustment (334)

           fix.AdjustmentType  AdjustmentType (718)
               String
               AdjustmentType (718)

           fix.AdvId  AdvId (2)
               String
               AdvId (2)

           fix.AdvRefID  AdvRefID (3)
               String
               AdvRefID (3)

           fix.AdvSide  AdvSide (4)
               String
               AdvSide (4)

           fix.AdvTransType  AdvTransType (5)
               String
               AdvTransType (5)

           fix.AffectedOrderID  AffectedOrderID (535)
               String
               AffectedOrderID (535)

           fix.AffectedSecondaryOrderID  AffectedSecondaryOrderID (536)
               String
               AffectedSecondaryOrderID (536)

           fix.AffirmStatus  AffirmStatus (940)
               String
               AffirmStatus (940)

           fix.AggregatedBook  AggregatedBook (266)
               String
               AggregatedBook (266)

           fix.AgreementCurrency  AgreementCurrency (918)
               String
               AgreementCurrency (918)

           fix.AgreementDate  AgreementDate (915)
               String
               AgreementDate (915)

           fix.AgreementDesc  AgreementDesc (913)
               String
               AgreementDesc (913)

           fix.AgreementID  AgreementID (914)
               String
               AgreementID (914)

           fix.AllocAccount  AllocAccount (79)
               String
               AllocAccount (79)

           fix.AllocAccountType  AllocAccountType (798)
               String
               AllocAccountType (798)

           fix.AllocAccruedInterestAmt  AllocAccruedInterestAmt (742)
               String
               AllocAccruedInterestAmt (742)

           fix.AllocAcctIDSource  AllocAcctIDSource (661)
               String
               AllocAcctIDSource (661)

           fix.AllocAvgPx  AllocAvgPx (153)
               String
               AllocAvgPx (153)

           fix.AllocCancReplaceReason  AllocCancReplaceReason (796)
               String
               AllocCancReplaceReason (796)

           fix.AllocHandlInst  AllocHandlInst (209)
               String
               AllocHandlInst (209)

           fix.AllocID  AllocID (70)
               String
               AllocID (70)

           fix.AllocInterestAtMaturity  AllocInterestAtMaturity (741)
               String
               AllocInterestAtMaturity (741)

           fix.AllocIntermedReqType  AllocIntermedReqType (808)
               String
               AllocIntermedReqType (808)

           fix.AllocLinkID  AllocLinkID (196)
               String
               AllocLinkID (196)

           fix.AllocLinkType  AllocLinkType (197)
               String
               AllocLinkType (197)

           fix.AllocNetMoney  AllocNetMoney (154)
               String
               AllocNetMoney (154)

           fix.AllocNoOrdersType  AllocNoOrdersType (857)
               String
               AllocNoOrdersType (857)

           fix.AllocPrice  AllocPrice (366)
               String
               AllocPrice (366)

           fix.AllocQty  AllocQty (80)
               String
               AllocQty (80)

           fix.AllocRejCode  AllocRejCode (88)
               String
               AllocRejCode (88)

           fix.AllocReportID  AllocReportID (755)
               String
               AllocReportID (755)

           fix.AllocReportRefID  AllocReportRefID (795)
               String
               AllocReportRefID (795)

           fix.AllocReportType  AllocReportType (794)
               String
               AllocReportType (794)

           fix.AllocSettlCurrAmt  AllocSettlCurrAmt (737)
               String
               AllocSettlCurrAmt (737)

           fix.AllocSettlCurrency  AllocSettlCurrency (736)
               String
               AllocSettlCurrency (736)

           fix.AllocSettlInstType  AllocSettlInstType (780)
               String
               AllocSettlInstType (780)

           fix.AllocStatus  AllocStatus (87)
               String
               AllocStatus (87)

           fix.AllocText  AllocText (161)
               String
               AllocText (161)

           fix.AllocTransType  AllocTransType (71)
               String
               AllocTransType (71)

           fix.AllocType  AllocType (626)
               String
               AllocType (626)

           fix.AllowableOneSidednessCurr  AllowableOneSidednessCurr (767)
               String
               AllowableOneSidednessCurr (767)

           fix.AllowableOneSidednessPct  AllowableOneSidednessPct (765)
               String
               AllowableOneSidednessPct (765)

           fix.AllowableOneSidednessValue  AllowableOneSidednessValue (766)
               String
               AllowableOneSidednessValue (766)

           fix.AltMDSourceID  AltMDSourceID (817)
               String
               AltMDSourceID (817)

           fix.ApplQueueAction  ApplQueueAction (815)
               String
               ApplQueueAction (815)

           fix.ApplQueueDepth  ApplQueueDepth (813)
               String
               ApplQueueDepth (813)

           fix.ApplQueueMax  ApplQueueMax (812)
               String
               ApplQueueMax (812)

           fix.ApplQueueResolution  ApplQueueResolution (814)
               String
               ApplQueueResolution (814)

           fix.AsgnReqID  AsgnReqID (831)
               String
               AsgnReqID (831)

           fix.AsgnRptID  AsgnRptID (833)
               String
               AsgnRptID (833)

           fix.AssignmentMethod  AssignmentMethod (744)
               String
               AssignmentMethod (744)

           fix.AssignmentUnit  AssignmentUnit (745)
               String
               AssignmentUnit (745)

           fix.AutoAcceptIndicator  AutoAcceptIndicator (754)
               String
               AutoAcceptIndicator (754)

           fix.AvgParPx  AvgParPx (860)
               String
               AvgParPx (860)

           fix.AvgPx  AvgPx (6)
               String
               AvgPx (6)

           fix.AvgPxIndicator  AvgPxIndicator (819)
               String
               AvgPxIndicator (819)

           fix.AvgPxPrecision  AvgPxPrecision (74)
               String
               AvgPxPrecision (74)

           fix.BasisFeatureDate  BasisFeatureDate (259)
               String
               BasisFeatureDate (259)

           fix.BasisFeaturePrice  BasisFeaturePrice (260)
               String
               BasisFeaturePrice (260)

           fix.BasisPxType  BasisPxType (419)
               String
               BasisPxType (419)

           fix.BeginSeqNo  BeginSeqNo (7)
               String
               BeginSeqNo (7)

           fix.BeginString  BeginString (8)
               String
               BeginString (8)

           fix.Benchmark  Benchmark (219)
               String
               Benchmark (219)

           fix.BenchmarkCurveCurrency  BenchmarkCurveCurrency (220)
               String
               BenchmarkCurveCurrency (220)

           fix.BenchmarkCurveName  BenchmarkCurveName (221)
               String
               BenchmarkCurveName (221)

           fix.BenchmarkCurvePoint  BenchmarkCurvePoint (222)
               String
               BenchmarkCurvePoint (222)

           fix.BenchmarkPrice  BenchmarkPrice (662)
               String
               BenchmarkPrice (662)

           fix.BenchmarkPriceType  BenchmarkPriceType (663)
               String
               BenchmarkPriceType (663)

           fix.BenchmarkSecurityID  BenchmarkSecurityID (699)
               String
               BenchmarkSecurityID (699)

           fix.BenchmarkSecurityIDSource  BenchmarkSecurityIDSource (761)
               String
               BenchmarkSecurityIDSource (761)

           fix.BidDescriptor  BidDescriptor (400)
               String
               BidDescriptor (400)

           fix.BidDescriptorType  BidDescriptorType (399)
               String
               BidDescriptorType (399)

           fix.BidForwardPoints  BidForwardPoints (189)
               String
               BidForwardPoints (189)

           fix.BidForwardPoints2  BidForwardPoints2 (642)
               String
               BidForwardPoints2 (642)

           fix.BidID  BidID (390)
               String
               BidID (390)

           fix.BidPx  BidPx (132)
               String
               BidPx (132)

           fix.BidRequestTransType  BidRequestTransType (374)
               String
               BidRequestTransType (374)

           fix.BidSize  BidSize (134)
               String
               BidSize (134)

           fix.BidSpotRate  BidSpotRate (188)
               String
               BidSpotRate (188)

           fix.BidTradeType  BidTradeType (418)
               String
               BidTradeType (418)

           fix.BidType  BidType (394)
               String
               BidType (394)

           fix.BidYield  BidYield (632)
               String
               BidYield (632)

           fix.BodyLength  BodyLength (9)
               String
               BodyLength (9)

           fix.BookingRefID  BookingRefID (466)
               String
               BookingRefID (466)

           fix.BookingType  BookingType (775)
               String
               BookingType (775)

           fix.BookingUnit  BookingUnit (590)
               String
               BookingUnit (590)

           fix.BrokerOfCredit  BrokerOfCredit (92)
               String
               BrokerOfCredit (92)

           fix.BusinessRejectReason  BusinessRejectReason (380)
               String
               BusinessRejectReason (380)

           fix.BusinessRejectRefID  BusinessRejectRefID (379)
               String
               BusinessRejectRefID (379)

           fix.BuyVolume  BuyVolume (330)
               String
               BuyVolume (330)

           fix.CFICode  CFICode (461)
               String
               CFICode (461)

           fix.CPProgram  CPProgram (875)
               String
               CPProgram (875)

           fix.CPRegType  CPRegType (876)
               String
               CPRegType (876)

           fix.CancellationRights  CancellationRights (480)
               String
               CancellationRights (480)

           fix.CardExpDate  CardExpDate (490)
               String
               CardExpDate (490)

           fix.CardHolderName  CardHolderName (488)
               String
               CardHolderName (488)

           fix.CardIssNum  CardIssNum (491)
               String
               CardIssNum (491)

           fix.CardNumber  CardNumber (489)
               String
               CardNumber (489)

           fix.CardStartDate  CardStartDate (503)
               String
               CardStartDate (503)

           fix.CashDistribAgentAcctName  CashDistribAgentAcctName (502)
               String
               CashDistribAgentAcctName (502)

           fix.CashDistribAgentAcctNumber  CashDistribAgentAcctNumber (500)
               String
               CashDistribAgentAcctNumber (500)

           fix.CashDistribAgentCode  CashDistribAgentCode (499)
               String
               CashDistribAgentCode (499)

           fix.CashDistribAgentName  CashDistribAgentName (498)
               String
               CashDistribAgentName (498)

           fix.CashDistribCurr  CashDistribCurr (478)
               String
               CashDistribCurr (478)

           fix.CashDistribPayRef  CashDistribPayRef (501)
               String
               CashDistribPayRef (501)

           fix.CashMargin  CashMargin (544)
               String
               CashMargin (544)

           fix.CashOrderQty  CashOrderQty (152)
               String
               CashOrderQty (152)

           fix.CashOutstanding  CashOutstanding (901)
               String
               CashOutstanding (901)

           fix.CashSettlAgentAcctName  CashSettlAgentAcctName (185)
               String
               CashSettlAgentAcctName (185)

           fix.CashSettlAgentAcctNum  CashSettlAgentAcctNum (184)
               String
               CashSettlAgentAcctNum (184)

           fix.CashSettlAgentCode  CashSettlAgentCode (183)
               String
               CashSettlAgentCode (183)

           fix.CashSettlAgentContactName  CashSettlAgentContactName (186)
               String
               CashSettlAgentContactName (186)

           fix.CashSettlAgentContactPhone  CashSettlAgentContactPhone (187)
               String
               CashSettlAgentContactPhone (187)

           fix.CashSettlAgentName  CashSettlAgentName (182)
               String
               CashSettlAgentName (182)

           fix.CheckSum  CheckSum (10)
               String
               CheckSum (10)

           fix.ClOrdID  ClOrdID (11)
               String
               ClOrdID (11)

           fix.ClOrdLinkID  ClOrdLinkID (583)
               String
               ClOrdLinkID (583)

           fix.ClearingAccount  ClearingAccount (440)
               String
               ClearingAccount (440)

           fix.ClearingBusinessDate  ClearingBusinessDate (715)
               String
               ClearingBusinessDate (715)

           fix.ClearingFeeIndicator  ClearingFeeIndicator (635)
               String
               ClearingFeeIndicator (635)

           fix.ClearingFirm  ClearingFirm (439)
               String
               ClearingFirm (439)

           fix.ClearingInstruction  ClearingInstruction (577)
               String
               ClearingInstruction (577)

           fix.ClientBidID  ClientBidID (391)
               String
               ClientBidID (391)

           fix.ClientID  ClientID (109)
               String
               ClientID (109)

           fix.CollAction  CollAction (944)
               String
               CollAction (944)

           fix.CollAsgnID  CollAsgnID (902)
               String
               CollAsgnID (902)

           fix.CollAsgnReason  CollAsgnReason (895)
               String
               CollAsgnReason (895)

           fix.CollAsgnRefID  CollAsgnRefID (907)
               String
               CollAsgnRefID (907)

           fix.CollAsgnRejectReason  CollAsgnRejectReason (906)
               String
               CollAsgnRejectReason (906)

           fix.CollAsgnRespType  CollAsgnRespType (905)
               String
               CollAsgnRespType (905)

           fix.CollAsgnTransType  CollAsgnTransType (903)
               String
               CollAsgnTransType (903)

           fix.CollInquiryID  CollInquiryID (909)
               String
               CollInquiryID (909)

           fix.CollInquiryQualifier  CollInquiryQualifier (896)
               String
               CollInquiryQualifier (896)

           fix.CollInquiryResult  CollInquiryResult (946)
               String
               CollInquiryResult (946)

           fix.CollInquiryStatus  CollInquiryStatus (945)
               String
               CollInquiryStatus (945)

           fix.CollReqID  CollReqID (894)
               String
               CollReqID (894)

           fix.CollRespID  CollRespID (904)
               String
               CollRespID (904)

           fix.CollRptID  CollRptID (908)
               String
               CollRptID (908)

           fix.CollStatus  CollStatus (910)
               String
               CollStatus (910)

           fix.CommCurrency  CommCurrency (479)
               String
               CommCurrency (479)

           fix.CommType  CommType (13)
               String
               CommType (13)

           fix.Commission  Commission (12)
               String
               Commission (12)

           fix.ComplianceID  ComplianceID (376)
               String
               ComplianceID (376)

           fix.Concession  Concession (238)
               String
               Concession (238)

           fix.ConfirmID  ConfirmID (664)
               String
               ConfirmID (664)

           fix.ConfirmRefID  ConfirmRefID (772)
               String
               ConfirmRefID (772)

           fix.ConfirmRejReason  ConfirmRejReason (774)
               String
               ConfirmRejReason (774)

           fix.ConfirmReqID  ConfirmReqID (859)
               String
               ConfirmReqID (859)

           fix.ConfirmStatus  ConfirmStatus (665)
               String
               ConfirmStatus (665)

           fix.ConfirmTransType  ConfirmTransType (666)
               String
               ConfirmTransType (666)

           fix.ConfirmType  ConfirmType (773)
               String
               ConfirmType (773)

           fix.ContAmtCurr  ContAmtCurr (521)
               String
               ContAmtCurr (521)

           fix.ContAmtType  ContAmtType (519)
               String
               ContAmtType (519)

           fix.ContAmtValue  ContAmtValue (520)
               String
               ContAmtValue (520)

           fix.ContraBroker  ContraBroker (375)
               String
               ContraBroker (375)

           fix.ContraLegRefID  ContraLegRefID (655)
               String
               ContraLegRefID (655)

           fix.ContraTradeQty  ContraTradeQty (437)
               String
               ContraTradeQty (437)

           fix.ContraTradeTime  ContraTradeTime (438)
               String
               ContraTradeTime (438)

           fix.ContraTrader  ContraTrader (337)
               String
               ContraTrader (337)

           fix.ContractMultiplier  ContractMultiplier (231)
               String
               ContractMultiplier (231)

           fix.ContractSettlMonth  ContractSettlMonth (667)
               String
               ContractSettlMonth (667)

           fix.ContraryInstructionIndicator  ContraryInstructionIndicator (719)
               String
               ContraryInstructionIndicator (719)

           fix.CopyMsgIndicator  CopyMsgIndicator (797)
               String
               CopyMsgIndicator (797)

           fix.CorporateAction  CorporateAction (292)
               String
               CorporateAction (292)

           fix.Country  Country (421)
               String
               Country (421)

           fix.CountryOfIssue  CountryOfIssue (470)
               String
               CountryOfIssue (470)

           fix.CouponPaymentDate  CouponPaymentDate (224)
               String
               CouponPaymentDate (224)

           fix.CouponRate  CouponRate (223)
               String
               CouponRate (223)

           fix.CoveredOrUncovered  CoveredOrUncovered (203)
               String
               CoveredOrUncovered (203)

           fix.CreditRating  CreditRating (255)
               String
               CreditRating (255)

           fix.CrossID  CrossID (548)
               String
               CrossID (548)

           fix.CrossPercent  CrossPercent (413)
               String
               CrossPercent (413)

           fix.CrossPrioritization  CrossPrioritization (550)
               String
               CrossPrioritization (550)

           fix.CrossType  CrossType (549)
               String
               CrossType (549)

           fix.CumQty  CumQty (14)
               String
               CumQty (14)

           fix.Currency  Currency (15)
               String
               Currency (15)

           fix.CustOrderCapacity  CustOrderCapacity (582)
               String
               CustOrderCapacity (582)

           fix.CustomerOrFirm  CustomerOrFirm (204)
               String
               CustomerOrFirm (204)

           fix.CxlQty  CxlQty (84)
               String
               CxlQty (84)

           fix.CxlRejReason  CxlRejReason (102)
               String
               CxlRejReason (102)

           fix.CxlRejResponseTo  CxlRejResponseTo (434)
               String
               CxlRejResponseTo (434)

           fix.CxlType  CxlType (125)
               String
               CxlType (125)

           fix.DKReason  DKReason (127)
               String
               DKReason (127)

           fix.DateOfBirth  DateOfBirth (486)
               String
               DateOfBirth (486)

           fix.DatedDate  DatedDate (873)
               String
               DatedDate (873)

           fix.DayAvgPx  DayAvgPx (426)
               String
               DayAvgPx (426)

           fix.DayBookingInst  DayBookingInst (589)
               String
               DayBookingInst (589)

           fix.DayCumQty  DayCumQty (425)
               String
               DayCumQty (425)

           fix.DayOrderQty  DayOrderQty (424)
               String
               DayOrderQty (424)

           fix.DefBidSize  DefBidSize (293)
               String
               DefBidSize (293)

           fix.DefOfferSize  DefOfferSize (294)
               String
               DefOfferSize (294)

           fix.DeleteReason  DeleteReason (285)
               String
               DeleteReason (285)

           fix.DeliverToCompID  DeliverToCompID (128)
               String
               DeliverToCompID (128)

           fix.DeliverToLocationID  DeliverToLocationID (145)
               String
               DeliverToLocationID (145)

           fix.DeliverToSubID  DeliverToSubID (129)
               String
               DeliverToSubID (129)

           fix.DeliveryDate  DeliveryDate (743)
               String
               DeliveryDate (743)

           fix.DeliveryForm  DeliveryForm (668)
               String
               DeliveryForm (668)

           fix.DeliveryType  DeliveryType (919)
               String
               DeliveryType (919)

           fix.Designation  Designation (494)
               String
               Designation (494)

           fix.DeskID  DeskID (284)
               String
               DeskID (284)

           fix.DiscretionInst  DiscretionInst (388)
               String
               DiscretionInst (388)

           fix.DiscretionLimitType  DiscretionLimitType (843)
               String
               DiscretionLimitType (843)

           fix.DiscretionMoveType  DiscretionMoveType (841)
               String
               DiscretionMoveType (841)

           fix.DiscretionOffsetType  DiscretionOffsetType (842)
               String
               DiscretionOffsetType (842)

           fix.DiscretionOffsetValue  DiscretionOffsetValue (389)
               String
               DiscretionOffsetValue (389)

           fix.DiscretionPrice  DiscretionPrice (845)
               String
               DiscretionPrice (845)

           fix.DiscretionRoundDirection  DiscretionRoundDirection (844)
               String
               DiscretionRoundDirection (844)

           fix.DiscretionScope  DiscretionScope (846)
               String
               DiscretionScope (846)

           fix.DistribPaymentMethod  DistribPaymentMethod (477)
               String
               DistribPaymentMethod (477)

           fix.DistribPercentage  DistribPercentage (512)
               String
               DistribPercentage (512)

           fix.DlvyInst  DlvyInst (86)
               String
               DlvyInst (86)

           fix.DlvyInstType  DlvyInstType (787)
               String
               DlvyInstType (787)

           fix.DueToRelated  DueToRelated (329)
               String
               DueToRelated (329)

           fix.EFPTrackingError  EFPTrackingError (405)
               String
               EFPTrackingError (405)

           fix.EffectiveTime  EffectiveTime (168)
               String
               EffectiveTime (168)

           fix.EmailThreadID  EmailThreadID (164)
               String
               EmailThreadID (164)

           fix.EmailType  EmailType (94)
               String
               EmailType (94)

           fix.EncodedAllocText  EncodedAllocText (361)
               String
               EncodedAllocText (361)

           fix.EncodedAllocTextLen  EncodedAllocTextLen (360)
               String
               EncodedAllocTextLen (360)

           fix.EncodedHeadline  EncodedHeadline (359)
               String
               EncodedHeadline (359)

           fix.EncodedHeadlineLen  EncodedHeadlineLen (358)
               String
               EncodedHeadlineLen (358)

           fix.EncodedIssuer  EncodedIssuer (349)
               String
               EncodedIssuer (349)

           fix.EncodedIssuerLen  EncodedIssuerLen (348)
               String
               EncodedIssuerLen (348)

           fix.EncodedLegIssuer  EncodedLegIssuer (619)
               String
               EncodedLegIssuer (619)

           fix.EncodedLegIssuerLen  EncodedLegIssuerLen (618)
               String
               EncodedLegIssuerLen (618)

           fix.EncodedLegSecurityDesc  EncodedLegSecurityDesc (622)
               String
               EncodedLegSecurityDesc (622)

           fix.EncodedLegSecurityDescLen  EncodedLegSecurityDescLen (621)
               String
               EncodedLegSecurityDescLen (621)

           fix.EncodedListExecInst  EncodedListExecInst (353)
               String
               EncodedListExecInst (353)

           fix.EncodedListExecInstLen  EncodedListExecInstLen (352)
               String
               EncodedListExecInstLen (352)

           fix.EncodedListStatusText  EncodedListStatusText (446)
               String
               EncodedListStatusText (446)

           fix.EncodedListStatusTextLen  EncodedListStatusTextLen (445)
               String
               EncodedListStatusTextLen (445)

           fix.EncodedSecurityDesc  EncodedSecurityDesc (351)
               String
               EncodedSecurityDesc (351)

           fix.EncodedSecurityDescLen  EncodedSecurityDescLen (350)
               String
               EncodedSecurityDescLen (350)

           fix.EncodedSubject  EncodedSubject (357)
               String
               EncodedSubject (357)

           fix.EncodedSubjectLen  EncodedSubjectLen (356)
               String
               EncodedSubjectLen (356)

           fix.EncodedText  EncodedText (355)
               String
               EncodedText (355)

           fix.EncodedTextLen  EncodedTextLen (354)
               String
               EncodedTextLen (354)

           fix.EncodedUnderlyingIssuer  EncodedUnderlyingIssuer (363)
               String
               EncodedUnderlyingIssuer (363)

           fix.EncodedUnderlyingIssuerLen  EncodedUnderlyingIssuerLen (362)
               String
               EncodedUnderlyingIssuerLen (362)

           fix.EncodedUnderlyingSecurityDesc  EncodedUnderlyingSecurityDesc (365)
               String
               EncodedUnderlyingSecurityDesc (365)

           fix.EncodedUnderlyingSecurityDescLen  EncodedUnderlyingSecurityDescLen (364)
               String
               EncodedUnderlyingSecurityDescLen (364)

           fix.EncryptMethod  EncryptMethod (98)
               String
               EncryptMethod (98)

           fix.EndAccruedInterestAmt  EndAccruedInterestAmt (920)
               String
               EndAccruedInterestAmt (920)

           fix.EndCash  EndCash (922)
               String
               EndCash (922)

           fix.EndDate  EndDate (917)
               String
               EndDate (917)

           fix.EndSeqNo  EndSeqNo (16)
               String
               EndSeqNo (16)

           fix.EventDate  EventDate (866)
               String
               EventDate (866)

           fix.EventPx  EventPx (867)
               String
               EventPx (867)

           fix.EventText  EventText (868)
               String
               EventText (868)

           fix.EventType  EventType (865)
               String
               EventType (865)

           fix.ExDate  ExDate (230)
               String
               ExDate (230)

           fix.ExDestination  ExDestination (100)
               String
               ExDestination (100)

           fix.ExchangeForPhysical  ExchangeForPhysical (411)
               String
               ExchangeForPhysical (411)

           fix.ExchangeRule  ExchangeRule (825)
               String
               ExchangeRule (825)

           fix.ExecBroker  ExecBroker (76)
               String
               ExecBroker (76)

           fix.ExecID  ExecID (17)
               String
               ExecID (17)

           fix.ExecInst  ExecInst (18)
               String
               ExecInst (18)

           fix.ExecPriceAdjustment  ExecPriceAdjustment (485)
               String
               ExecPriceAdjustment (485)

           fix.ExecPriceType  ExecPriceType (484)
               String
               ExecPriceType (484)

           fix.ExecRefID  ExecRefID (19)
               String
               ExecRefID (19)

           fix.ExecRestatementReason  ExecRestatementReason (378)
               String
               ExecRestatementReason (378)

           fix.ExecTransType  ExecTransType (20)
               String
               ExecTransType (20)

           fix.ExecType  ExecType (150)
               String
               ExecType (150)

           fix.ExecValuationPoint  ExecValuationPoint (515)
               String
               ExecValuationPoint (515)

           fix.ExerciseMethod  ExerciseMethod (747)
               String
               ExerciseMethod (747)

           fix.ExpirationCycle  ExpirationCycle (827)
               String
               ExpirationCycle (827)

           fix.ExpireDate  ExpireDate (432)
               String
               ExpireDate (432)

           fix.ExpireTime  ExpireTime (126)
               String
               ExpireTime (126)

           fix.Factor  Factor (228)
               String
               Factor (228)

           fix.FairValue  FairValue (406)
               String
               FairValue (406)

           fix.FinancialStatus  FinancialStatus (291)
               String
               FinancialStatus (291)

           fix.ForexReq  ForexReq (121)
               String
               ForexReq (121)

           fix.FundRenewWaiv  FundRenewWaiv (497)
               String
               FundRenewWaiv (497)

           fix.GTBookingInst  GTBookingInst (427)
               String
               GTBookingInst (427)

           fix.GapFillFlag  GapFillFlag (123)
               String
               GapFillFlag (123)

           fix.GrossTradeAmt  GrossTradeAmt (381)
               String
               GrossTradeAmt (381)

           fix.HaltReason  HaltReason (327)
               String
               HaltReason (327)

           fix.HandlInst  HandlInst (21)
               String
               HandlInst (21)

           fix.Headline  Headline (148)
               String
               Headline (148)

           fix.HeartBtInt  HeartBtInt (108)
               String
               HeartBtInt (108)

           fix.HighPx  HighPx (332)
               String
               HighPx (332)

           fix.HopCompID  HopCompID (628)
               String
               HopCompID (628)

           fix.HopRefID  HopRefID (630)
               String
               HopRefID (630)

           fix.HopSendingTime  HopSendingTime (629)
               String
               HopSendingTime (629)

           fix.IOINaturalFlag  IOINaturalFlag (130)
               String
               IOINaturalFlag (130)

           fix.IOIOthSvc  IOIOthSvc (24)
               String
               IOIOthSvc (24)

           fix.IOIQltyInd  IOIQltyInd (25)
               String
               IOIQltyInd (25)

           fix.IOIQty  IOIQty (27)
               String
               IOIQty (27)

           fix.IOIQualifier  IOIQualifier (104)
               String
               IOIQualifier (104)

           fix.IOIRefID  IOIRefID (26)
               String
               IOIRefID (26)

           fix.IOITransType  IOITransType (28)
               String
               IOITransType (28)

           fix.IOIid  IOIid (23)
               String
               IOIid (23)

           fix.InViewOfCommon  InViewOfCommon (328)
               String
               InViewOfCommon (328)

           fix.IncTaxInd  IncTaxInd (416)
               String
               IncTaxInd (416)

           fix.IndividualAllocID  IndividualAllocID (467)
               String
               IndividualAllocID (467)

           fix.IndividualAllocRejCode  IndividualAllocRejCode (776)
               String
               IndividualAllocRejCode (776)

           fix.InstrAttribType  InstrAttribType (871)
               String
               InstrAttribType (871)

           fix.InstrAttribValue  InstrAttribValue (872)
               String
               InstrAttribValue (872)

           fix.InstrRegistry  InstrRegistry (543)
               String
               InstrRegistry (543)

           fix.InterestAccrualDate  InterestAccrualDate (874)
               String
               InterestAccrualDate (874)

           fix.InterestAtMaturity  InterestAtMaturity (738)
               String
               InterestAtMaturity (738)

           fix.InvestorCountryOfResidence  InvestorCountryOfResidence (475)
               String
               InvestorCountryOfResidence (475)

           fix.IssueDate  IssueDate (225)
               String
               IssueDate (225)

           fix.Issuer  Issuer (106)
               String
               Issuer (106)

           fix.LastCapacity  LastCapacity (29)
               String
               LastCapacity (29)

           fix.LastForwardPoints  LastForwardPoints (195)
               String
               LastForwardPoints (195)

           fix.LastForwardPoints2  LastForwardPoints2 (641)
               String
               LastForwardPoints2 (641)

           fix.LastFragment  LastFragment (893)
               String
               LastFragment (893)

           fix.LastLiquidityInd  LastLiquidityInd (851)
               String
               LastLiquidityInd (851)

           fix.LastMkt  LastMkt (30)
               String
               LastMkt (30)

           fix.LastMsgSeqNumProcessed  LastMsgSeqNumProcessed (369)
               String
               LastMsgSeqNumProcessed (369)

           fix.LastNetworkResponseID  LastNetworkResponseID (934)
               String
               LastNetworkResponseID (934)

           fix.LastParPx  LastParPx (669)
               String
               LastParPx (669)

           fix.LastPx  LastPx (31)
               String
               LastPx (31)

           fix.LastQty  LastQty (32)
               String
               LastQty (32)

           fix.LastRptRequested  LastRptRequested (912)
               String
               LastRptRequested (912)

           fix.LastSpotRate  LastSpotRate (194)
               String
               LastSpotRate (194)

           fix.LastUpdateTime  LastUpdateTime (779)
               String
               LastUpdateTime (779)

           fix.LeavesQty  LeavesQty (151)
               String
               LeavesQty (151)

           fix.LegAllocAccount  LegAllocAccount (671)
               String
               LegAllocAccount (671)

           fix.LegAllocAcctIDSource  LegAllocAcctIDSource (674)
               String
               LegAllocAcctIDSource (674)

           fix.LegAllocQty  LegAllocQty (673)
               String
               LegAllocQty (673)

           fix.LegBenchmarkCurveCurrency  LegBenchmarkCurveCurrency (676)
               String
               LegBenchmarkCurveCurrency (676)

           fix.LegBenchmarkCurveName  LegBenchmarkCurveName (677)
               String
               LegBenchmarkCurveName (677)

           fix.LegBenchmarkCurvePoint  LegBenchmarkCurvePoint (678)
               String
               LegBenchmarkCurvePoint (678)

           fix.LegBenchmarkPrice  LegBenchmarkPrice (679)
               String
               LegBenchmarkPrice (679)

           fix.LegBenchmarkPriceType  LegBenchmarkPriceType (680)
               String
               LegBenchmarkPriceType (680)

           fix.LegBidPx  LegBidPx (681)
               String
               LegBidPx (681)

           fix.LegCFICode  LegCFICode (608)
               String
               LegCFICode (608)

           fix.LegContractMultiplier  LegContractMultiplier (614)
               String
               LegContractMultiplier (614)

           fix.LegContractSettlMonth  LegContractSettlMonth (955)
               String
               LegContractSettlMonth (955)

           fix.LegCountryOfIssue  LegCountryOfIssue (596)
               String
               LegCountryOfIssue (596)

           fix.LegCouponPaymentDate  LegCouponPaymentDate (248)
               String
               LegCouponPaymentDate (248)

           fix.LegCouponRate  LegCouponRate (615)
               String
               LegCouponRate (615)

           fix.LegCoveredOrUncovered  LegCoveredOrUncovered (565)
               String
               LegCoveredOrUncovered (565)

           fix.LegCreditRating  LegCreditRating (257)
               String
               LegCreditRating (257)

           fix.LegCurrency  LegCurrency (556)
               String
               LegCurrency (556)

           fix.LegDatedDate  LegDatedDate (739)
               String
               LegDatedDate (739)

           fix.LegFactor  LegFactor (253)
               String
               LegFactor (253)

           fix.LegIOIQty  LegIOIQty (682)
               String
               LegIOIQty (682)

           fix.LegIndividualAllocID  LegIndividualAllocID (672)
               String
               LegIndividualAllocID (672)

           fix.LegInstrRegistry  LegInstrRegistry (599)
               String
               LegInstrRegistry (599)

           fix.LegInterestAccrualDate  LegInterestAccrualDate (956)
               String
               LegInterestAccrualDate (956)

           fix.LegIssueDate  LegIssueDate (249)
               String
               LegIssueDate (249)

           fix.LegIssuer  LegIssuer (617)
               String
               LegIssuer (617)

           fix.LegLastPx  LegLastPx (637)
               String
               LegLastPx (637)

           fix.LegLocaleOfIssue  LegLocaleOfIssue (598)
               String
               LegLocaleOfIssue (598)

           fix.LegMaturityDate  LegMaturityDate (611)
               String
               LegMaturityDate (611)

           fix.LegMaturityMonthYear  LegMaturityMonthYear (610)
               String
               LegMaturityMonthYear (610)

           fix.LegOfferPx  LegOfferPx (684)
               String
               LegOfferPx (684)

           fix.LegOptAttribute  LegOptAttribute (613)
               String
               LegOptAttribute (613)

           fix.LegOrderQty  LegOrderQty (685)
               String
               LegOrderQty (685)

           fix.LegPool  LegPool (740)
               String
               LegPool (740)

           fix.LegPositionEffect  LegPositionEffect (564)
               String
               LegPositionEffect (564)

           fix.LegPrice  LegPrice (566)
               String
               LegPrice (566)

           fix.LegPriceType  LegPriceType (686)
               String
               LegPriceType (686)

           fix.LegProduct  LegProduct (607)
               String
               LegProduct (607)

           fix.LegQty  LegQty (687)
               String
               LegQty (687)

           fix.LegRatioQty  LegRatioQty (623)
               String
               LegRatioQty (623)

           fix.LegRedemptionDate  LegRedemptionDate (254)
               String
               LegRedemptionDate (254)

           fix.LegRefID  LegRefID (654)
               String
               LegRefID (654)

           fix.LegRepoCollateralSecurityType  LegRepoCollateralSecurityType (250)
               String
               LegRepoCollateralSecurityType (250)

           fix.LegRepurchaseRate  LegRepurchaseRate (252)
               String
               LegRepurchaseRate (252)

           fix.LegRepurchaseTerm  LegRepurchaseTerm (251)
               String
               LegRepurchaseTerm (251)

           fix.LegSecurityAltID  LegSecurityAltID (605)
               String
               LegSecurityAltID (605)

           fix.LegSecurityAltIDSource  LegSecurityAltIDSource (606)
               String
               LegSecurityAltIDSource (606)

           fix.LegSecurityDesc  LegSecurityDesc (620)
               String
               LegSecurityDesc (620)

           fix.LegSecurityExchange  LegSecurityExchange (616)
               String
               LegSecurityExchange (616)

           fix.LegSecurityID  LegSecurityID (602)
               String
               LegSecurityID (602)

           fix.LegSecurityIDSource  LegSecurityIDSource (603)
               String
               LegSecurityIDSource (603)

           fix.LegSecuritySubType  LegSecuritySubType (764)
               String
               LegSecuritySubType (764)

           fix.LegSecurityType  LegSecurityType (609)
               String
               LegSecurityType (609)

           fix.LegSettlCurrency  LegSettlCurrency (675)
               String
               LegSettlCurrency (675)

           fix.LegSettlDate  LegSettlDate (588)
               String
               LegSettlDate (588)

           fix.LegSettlType  LegSettlType (587)
               String
               LegSettlType (587)

           fix.LegSide  LegSide (624)
               String
               LegSide (624)

           fix.LegStateOrProvinceOfIssue  LegStateOrProvinceOfIssue (597)
               String
               LegStateOrProvinceOfIssue (597)

           fix.LegStipulationType  LegStipulationType (688)
               String
               LegStipulationType (688)

           fix.LegStipulationValue  LegStipulationValue (689)
               String
               LegStipulationValue (689)

           fix.LegStrikeCurrency  LegStrikeCurrency (942)
               String
               LegStrikeCurrency (942)

           fix.LegStrikePrice  LegStrikePrice (612)
               String
               LegStrikePrice (612)

           fix.LegSwapType  LegSwapType (690)
               String
               LegSwapType (690)

           fix.LegSymbol  LegSymbol (600)
               String
               LegSymbol (600)

           fix.LegSymbolSfx  LegSymbolSfx (601)
               String
               LegSymbolSfx (601)

           fix.LegalConfirm  LegalConfirm (650)
               String
               LegalConfirm (650)

           fix.LinesOfText  LinesOfText (33)
               String
               LinesOfText (33)

           fix.LiquidityIndType  LiquidityIndType (409)
               String
               LiquidityIndType (409)

           fix.LiquidityNumSecurities  LiquidityNumSecurities (441)
               String
               LiquidityNumSecurities (441)

           fix.LiquidityPctHigh  LiquidityPctHigh (403)
               String
               LiquidityPctHigh (403)

           fix.LiquidityPctLow  LiquidityPctLow (402)
               String
               LiquidityPctLow (402)

           fix.LiquidityValue  LiquidityValue (404)
               String
               LiquidityValue (404)

           fix.ListExecInst  ListExecInst (69)
               String
               ListExecInst (69)

           fix.ListExecInstType  ListExecInstType (433)
               String
               ListExecInstType (433)

           fix.ListID  ListID (66)
               String
               ListID (66)

           fix.ListName  ListName (392)
               String
               ListName (392)

           fix.ListOrderStatus  ListOrderStatus (431)
               String
               ListOrderStatus (431)

           fix.ListSeqNo  ListSeqNo (67)
               String
               ListSeqNo (67)

           fix.ListStatusText  ListStatusText (444)
               String
               ListStatusText (444)

           fix.ListStatusType  ListStatusType (429)
               String
               ListStatusType (429)

           fix.LocaleOfIssue  LocaleOfIssue (472)
               String
               LocaleOfIssue (472)

           fix.LocateReqd  LocateReqd (114)
               String
               LocateReqd (114)

           fix.LocationID  LocationID (283)
               String
               LocationID (283)

           fix.LongQty  LongQty (704)
               String
               LongQty (704)

           fix.LowPx  LowPx (333)
               String
               LowPx (333)

           fix.MDEntryBuyer  MDEntryBuyer (288)
               String
               MDEntryBuyer (288)

           fix.MDEntryDate  MDEntryDate (272)
               String
               MDEntryDate (272)

           fix.MDEntryID  MDEntryID (278)
               String
               MDEntryID (278)

           fix.MDEntryOriginator  MDEntryOriginator (282)
               String
               MDEntryOriginator (282)

           fix.MDEntryPositionNo  MDEntryPositionNo (290)
               String
               MDEntryPositionNo (290)

           fix.MDEntryPx  MDEntryPx (270)
               String
               MDEntryPx (270)

           fix.MDEntryRefID  MDEntryRefID (280)
               String
               MDEntryRefID (280)

           fix.MDEntrySeller  MDEntrySeller (289)
               String
               MDEntrySeller (289)

           fix.MDEntrySize  MDEntrySize (271)
               String
               MDEntrySize (271)

           fix.MDEntryTime  MDEntryTime (273)
               String
               MDEntryTime (273)

           fix.MDEntryType  MDEntryType (269)
               String
               MDEntryType (269)

           fix.MDImplicitDelete  MDImplicitDelete (547)
               String
               MDImplicitDelete (547)

           fix.MDMkt  MDMkt (275)
               String
               MDMkt (275)

           fix.MDReqID  MDReqID (262)
               String
               MDReqID (262)

           fix.MDReqRejReason  MDReqRejReason (281)
               String
               MDReqRejReason (281)

           fix.MDUpdateAction  MDUpdateAction (279)
               String
               MDUpdateAction (279)

           fix.MDUpdateType  MDUpdateType (265)
               String
               MDUpdateType (265)

           fix.MailingDtls  MailingDtls (474)
               String
               MailingDtls (474)

           fix.MailingInst  MailingInst (482)
               String
               MailingInst (482)

           fix.MarginExcess  MarginExcess (899)
               String
               MarginExcess (899)

           fix.MarginRatio  MarginRatio (898)
               String
               MarginRatio (898)

           fix.MarketDepth  MarketDepth (264)
               String
               MarketDepth (264)

           fix.MassCancelRejectReason  MassCancelRejectReason (532)
               String
               MassCancelRejectReason (532)

           fix.MassCancelRequestType  MassCancelRequestType (530)
               String
               MassCancelRequestType (530)

           fix.MassCancelResponse  MassCancelResponse (531)
               String
               MassCancelResponse (531)

           fix.MassStatusReqID  MassStatusReqID (584)
               String
               MassStatusReqID (584)

           fix.MassStatusReqType  MassStatusReqType (585)
               String
               MassStatusReqType (585)

           fix.MatchStatus  MatchStatus (573)
               String
               MatchStatus (573)

           fix.MatchType  MatchType (574)
               String
               MatchType (574)

           fix.MaturityDate  MaturityDate (541)
               String
               MaturityDate (541)

           fix.MaturityDay  MaturityDay (205)
               String
               MaturityDay (205)

           fix.MaturityMonthYear  MaturityMonthYear (200)
               String
               MaturityMonthYear (200)

           fix.MaturityNetMoney  MaturityNetMoney (890)
               String
               MaturityNetMoney (890)

           fix.MaxFloor  MaxFloor (111)
               String
               MaxFloor (111)

           fix.MaxMessageSize  MaxMessageSize (383)
               String
               MaxMessageSize (383)

           fix.MaxShow  MaxShow (210)
               String
               MaxShow (210)

           fix.MessageEncoding  MessageEncoding (347)
               String
               MessageEncoding (347)

           fix.MidPx  MidPx (631)
               String
               MidPx (631)

           fix.MidYield  MidYield (633)
               String
               MidYield (633)

           fix.MinBidSize  MinBidSize (647)
               String
               MinBidSize (647)

           fix.MinOfferSize  MinOfferSize (648)
               String
               MinOfferSize (648)

           fix.MinQty  MinQty (110)
               String
               MinQty (110)

           fix.MinTradeVol  MinTradeVol (562)
               String
               MinTradeVol (562)

           fix.MiscFeeAmt  MiscFeeAmt (137)
               String
               MiscFeeAmt (137)

           fix.MiscFeeBasis  MiscFeeBasis (891)
               String
               MiscFeeBasis (891)

           fix.MiscFeeCurr  MiscFeeCurr (138)
               String
               MiscFeeCurr (138)

           fix.MiscFeeType  MiscFeeType (139)
               String
               MiscFeeType (139)

           fix.MktBidPx  MktBidPx (645)
               String
               MktBidPx (645)

           fix.MktOfferPx  MktOfferPx (646)
               String
               MktOfferPx (646)

           fix.MoneyLaunderingStatus  MoneyLaunderingStatus (481)
               String
               MoneyLaunderingStatus (481)

           fix.MsgDirection  MsgDirection (385)
               String
               MsgDirection (385)

           fix.MsgSeqNum  MsgSeqNum (34)
               String
               MsgSeqNum (34)

           fix.MsgType  MsgType (35)
               String
               MsgType (35)

           fix.MultiLegReportingType  MultiLegReportingType (442)
               String
               MultiLegReportingType (442)

           fix.MultiLegRptTypeReq  MultiLegRptTypeReq (563)
               String
               MultiLegRptTypeReq (563)

           fix.Nested2PartyID  Nested2PartyID (757)
               String
               Nested2PartyID (757)

           fix.Nested2PartyIDSource  Nested2PartyIDSource (758)
               String
               Nested2PartyIDSource (758)

           fix.Nested2PartyRole  Nested2PartyRole (759)
               String
               Nested2PartyRole (759)

           fix.Nested2PartySubID  Nested2PartySubID (760)
               String
               Nested2PartySubID (760)

           fix.Nested2PartySubIDType  Nested2PartySubIDType (807)
               String
               Nested2PartySubIDType (807)

           fix.Nested3PartyID  Nested3PartyID (949)
               String
               Nested3PartyID (949)

           fix.Nested3PartyIDSource  Nested3PartyIDSource (950)
               String
               Nested3PartyIDSource (950)

           fix.Nested3PartyRole  Nested3PartyRole (951)
               String
               Nested3PartyRole (951)

           fix.Nested3PartySubID  Nested3PartySubID (953)
               String
               Nested3PartySubID (953)

           fix.Nested3PartySubIDType  Nested3PartySubIDType (954)
               String
               Nested3PartySubIDType (954)

           fix.NestedPartyID  NestedPartyID (524)
               String
               NestedPartyID (524)

           fix.NestedPartyIDSource  NestedPartyIDSource (525)
               String
               NestedPartyIDSource (525)

           fix.NestedPartyRole  NestedPartyRole (538)
               String
               NestedPartyRole (538)

           fix.NestedPartySubID  NestedPartySubID (545)
               String
               NestedPartySubID (545)

           fix.NestedPartySubIDType  NestedPartySubIDType (805)
               String
               NestedPartySubIDType (805)

           fix.NetChgPrevDay  NetChgPrevDay (451)
               String
               NetChgPrevDay (451)

           fix.NetGrossInd  NetGrossInd (430)
               String
               NetGrossInd (430)

           fix.NetMoney  NetMoney (118)
               String
               NetMoney (118)

           fix.NetworkRequestID  NetworkRequestID (933)
               String
               NetworkRequestID (933)

           fix.NetworkRequestType  NetworkRequestType (935)
               String
               NetworkRequestType (935)

           fix.NetworkResponseID  NetworkResponseID (932)
               String
               NetworkResponseID (932)

           fix.NetworkStatusResponseType  NetworkStatusResponseType (937)
               String
               NetworkStatusResponseType (937)

           fix.NewPassword  NewPassword (925)
               String
               NewPassword (925)

           fix.NewSeqNo  NewSeqNo (36)
               String
               NewSeqNo (36)

           fix.NextExpectedMsgSeqNum  NextExpectedMsgSeqNum (789)
               String
               NextExpectedMsgSeqNum (789)

           fix.NoAffectedOrders  NoAffectedOrders (534)
               String
               NoAffectedOrders (534)

           fix.NoAllocs  NoAllocs (78)
               String
               NoAllocs (78)

           fix.NoAltMDSource  NoAltMDSource (816)
               String
               NoAltMDSource (816)

           fix.NoBidComponents  NoBidComponents (420)
               String
               NoBidComponents (420)

           fix.NoBidDescriptors  NoBidDescriptors (398)
               String
               NoBidDescriptors (398)

           fix.NoCapacities  NoCapacities (862)
               String
               NoCapacities (862)

           fix.NoClearingInstructions  NoClearingInstructions (576)
               String
               NoClearingInstructions (576)

           fix.NoCollInquiryQualifier  NoCollInquiryQualifier (938)
               String
               NoCollInquiryQualifier (938)

           fix.NoCompIDs  NoCompIDs (936)
               String
               NoCompIDs (936)

           fix.NoContAmts  NoContAmts (518)
               String
               NoContAmts (518)

           fix.NoContraBrokers  NoContraBrokers (382)
               String
               NoContraBrokers (382)

           fix.NoDates  NoDates (580)
               String
               NoDates (580)

           fix.NoDistribInsts  NoDistribInsts (510)
               String
               NoDistribInsts (510)

           fix.NoDlvyInst  NoDlvyInst (85)
               String
               NoDlvyInst (85)

           fix.NoEvents  NoEvents (864)
               String
               NoEvents (864)

           fix.NoExecs  NoExecs (124)
               String
               NoExecs (124)

           fix.NoHops  NoHops (627)
               String
               NoHops (627)

           fix.NoIOIQualifiers  NoIOIQualifiers (199)
               String
               NoIOIQualifiers (199)

           fix.NoInstrAttrib  NoInstrAttrib (870)
               String
               NoInstrAttrib (870)

           fix.NoLegAllocs  NoLegAllocs (670)
               String
               NoLegAllocs (670)

           fix.NoLegSecurityAltID  NoLegSecurityAltID (604)
               String
               NoLegSecurityAltID (604)

           fix.NoLegStipulations  NoLegStipulations (683)
               String
               NoLegStipulations (683)

           fix.NoLegs  NoLegs (555)
               String
               NoLegs (555)

           fix.NoMDEntries  NoMDEntries (268)
               String
               NoMDEntries (268)

           fix.NoMDEntryTypes  NoMDEntryTypes (267)
               String
               NoMDEntryTypes (267)

           fix.NoMiscFees  NoMiscFees (136)
               String
               NoMiscFees (136)

           fix.NoMsgTypes  NoMsgTypes (384)
               String
               NoMsgTypes (384)

           fix.NoNested2PartyIDs  NoNested2PartyIDs (756)
               String
               NoNested2PartyIDs (756)

           fix.NoNested2PartySubIDs  NoNested2PartySubIDs (806)
               String
               NoNested2PartySubIDs (806)

           fix.NoNested3PartyIDs  NoNested3PartyIDs (948)
               String
               NoNested3PartyIDs (948)

           fix.NoNested3PartySubIDs  NoNested3PartySubIDs (952)
               String
               NoNested3PartySubIDs (952)

           fix.NoNestedPartyIDs  NoNestedPartyIDs (539)
               String
               NoNestedPartyIDs (539)

           fix.NoNestedPartySubIDs  NoNestedPartySubIDs (804)
               String
               NoNestedPartySubIDs (804)

           fix.NoOrders  NoOrders (73)
               String
               NoOrders (73)

           fix.NoPartyIDs  NoPartyIDs (453)
               String
               NoPartyIDs (453)

           fix.NoPartySubIDs  NoPartySubIDs (802)
               String
               NoPartySubIDs (802)

           fix.NoPosAmt  NoPosAmt (753)
               String
               NoPosAmt (753)

           fix.NoPositions  NoPositions (702)
               String
               NoPositions (702)

           fix.NoQuoteEntries  NoQuoteEntries (295)
               String
               NoQuoteEntries (295)

           fix.NoQuoteQualifiers  NoQuoteQualifiers (735)
               String
               NoQuoteQualifiers (735)

           fix.NoQuoteSets  NoQuoteSets (296)
               String
               NoQuoteSets (296)

           fix.NoRegistDtls  NoRegistDtls (473)
               String
               NoRegistDtls (473)

           fix.NoRelatedSym  NoRelatedSym (146)
               String
               NoRelatedSym (146)

           fix.NoRoutingIDs  NoRoutingIDs (215)
               String
               NoRoutingIDs (215)

           fix.NoRpts  NoRpts (82)
               String
               NoRpts (82)

           fix.NoSecurityAltID  NoSecurityAltID (454)
               String
               NoSecurityAltID (454)

           fix.NoSecurityTypes  NoSecurityTypes (558)
               String
               NoSecurityTypes (558)

           fix.NoSettlInst  NoSettlInst (778)
               String
               NoSettlInst (778)

           fix.NoSettlPartyIDs  NoSettlPartyIDs (781)
               String
               NoSettlPartyIDs (781)

           fix.NoSettlPartySubIDs  NoSettlPartySubIDs (801)
               String
               NoSettlPartySubIDs (801)

           fix.NoSides  NoSides (552)
               String
               NoSides (552)

           fix.NoStipulations  NoStipulations (232)
               String
               NoStipulations (232)

           fix.NoStrikes  NoStrikes (428)
               String
               NoStrikes (428)

           fix.NoTrades  NoTrades (897)
               String
               NoTrades (897)

           fix.NoTradingSessions  NoTradingSessions (386)
               String
               NoTradingSessions (386)

           fix.NoTrdRegTimestamps  NoTrdRegTimestamps (768)
               String
               NoTrdRegTimestamps (768)

           fix.NoUnderlyingSecurityAltID  NoUnderlyingSecurityAltID (457)
               String
               NoUnderlyingSecurityAltID (457)

           fix.NoUnderlyingStips  NoUnderlyingStips (887)
               String
               NoUnderlyingStips (887)

           fix.NoUnderlyings  NoUnderlyings (711)
               String
               NoUnderlyings (711)

           fix.NotifyBrokerOfCredit  NotifyBrokerOfCredit (208)
               String
               NotifyBrokerOfCredit (208)

           fix.NumBidders  NumBidders (417)
               String
               NumBidders (417)

           fix.NumDaysInterest  NumDaysInterest (157)
               String
               NumDaysInterest (157)

           fix.NumTickets  NumTickets (395)
               String
               NumTickets (395)

           fix.NumberOfOrders  NumberOfOrders (346)
               String
               NumberOfOrders (346)

           fix.OddLot  OddLot (575)
               String
               OddLot (575)

           fix.OfferForwardPoints  OfferForwardPoints (191)
               String
               OfferForwardPoints (191)

           fix.OfferForwardPoints2  OfferForwardPoints2 (643)
               String
               OfferForwardPoints2 (643)

           fix.OfferPx  OfferPx (133)
               String
               OfferPx (133)

           fix.OfferSize  OfferSize (135)
               String
               OfferSize (135)

           fix.OfferSpotRate  OfferSpotRate (190)
               String
               OfferSpotRate (190)

           fix.OfferYield  OfferYield (634)
               String
               OfferYield (634)

           fix.OnBehalfOfCompID  OnBehalfOfCompID (115)
               String
               OnBehalfOfCompID (115)

           fix.OnBehalfOfLocationID  OnBehalfOfLocationID (144)
               String
               OnBehalfOfLocationID (144)

           fix.OnBehalfOfSendingTime  OnBehalfOfSendingTime (370)
               String
               OnBehalfOfSendingTime (370)

           fix.OnBehalfOfSubID  OnBehalfOfSubID (116)
               String
               OnBehalfOfSubID (116)

           fix.OpenCloseSettlFlag  OpenCloseSettlFlag (286)
               String
               OpenCloseSettlFlag (286)

           fix.OpenInterest  OpenInterest (746)
               String
               OpenInterest (746)

           fix.OptAttribute  OptAttribute (206)
               String
               OptAttribute (206)

           fix.OrdRejReason  OrdRejReason (103)
               String
               OrdRejReason (103)

           fix.OrdStatus  OrdStatus (39)
               String
               OrdStatus (39)

           fix.OrdStatusReqID  OrdStatusReqID (790)
               String
               OrdStatusReqID (790)

           fix.OrdType  OrdType (40)
               String
               OrdType (40)

           fix.OrderAvgPx  OrderAvgPx (799)
               String
               OrderAvgPx (799)

           fix.OrderBookingQty  OrderBookingQty (800)
               String
               OrderBookingQty (800)

           fix.OrderCapacity  OrderCapacity (528)
               String
               OrderCapacity (528)

           fix.OrderCapacityQty  OrderCapacityQty (863)
               String
               OrderCapacityQty (863)

           fix.OrderID  OrderID (37)
               String
               OrderID (37)

           fix.OrderInputDevice  OrderInputDevice (821)
               String
               OrderInputDevice (821)

           fix.OrderPercent  OrderPercent (516)
               String
               OrderPercent (516)

           fix.OrderQty  OrderQty (38)
               String
               OrderQty (38)

           fix.OrderQty2  OrderQty2 (192)
               String
               OrderQty2 (192)

           fix.OrderRestrictions  OrderRestrictions (529)
               String
               OrderRestrictions (529)

           fix.OrigClOrdID  OrigClOrdID (41)
               String
               OrigClOrdID (41)

           fix.OrigCrossID  OrigCrossID (551)
               String
               OrigCrossID (551)

           fix.OrigOrdModTime  OrigOrdModTime (586)
               String
               OrigOrdModTime (586)

           fix.OrigPosReqRefID  OrigPosReqRefID (713)
               String
               OrigPosReqRefID (713)

           fix.OrigSendingTime  OrigSendingTime (122)
               String
               OrigSendingTime (122)

           fix.OrigTime  OrigTime (42)
               String
               OrigTime (42)

           fix.OutMainCntryUIndex  OutMainCntryUIndex (412)
               String
               OutMainCntryUIndex (412)

           fix.OutsideIndexPct  OutsideIndexPct (407)
               String
               OutsideIndexPct (407)

           fix.OwnerType  OwnerType (522)
               String
               OwnerType (522)

           fix.OwnershipType  OwnershipType (517)
               String
               OwnershipType (517)

           fix.ParticipationRate  ParticipationRate (849)
               String
               ParticipationRate (849)

           fix.PartyID  PartyID (448)
               String
               PartyID (448)

           fix.PartyIDSource  PartyIDSource (447)
               String
               PartyIDSource (447)

           fix.PartyRole  PartyRole (452)
               String
               PartyRole (452)

           fix.PartySubID  PartySubID (523)
               String
               PartySubID (523)

           fix.PartySubIDType  PartySubIDType (803)
               String
               PartySubIDType (803)

           fix.Password  Password (554)
               String
               Password (554)

           fix.PaymentDate  PaymentDate (504)
               String
               PaymentDate (504)

           fix.PaymentMethod  PaymentMethod (492)
               String
               PaymentMethod (492)

           fix.PaymentRef  PaymentRef (476)
               String
               PaymentRef (476)

           fix.PaymentRemitterID  PaymentRemitterID (505)
               String
               PaymentRemitterID (505)

           fix.PctAtRisk  PctAtRisk (869)
               String
               PctAtRisk (869)

           fix.PegLimitType  PegLimitType (837)
               String
               PegLimitType (837)

           fix.PegMoveType  PegMoveType (835)
               String
               PegMoveType (835)

           fix.PegOffsetType  PegOffsetType (836)
               String
               PegOffsetType (836)

           fix.PegOffsetValue  PegOffsetValue (211)
               String
               PegOffsetValue (211)

           fix.PegRoundDirection  PegRoundDirection (838)
               String
               PegRoundDirection (838)

           fix.PegScope  PegScope (840)
               String
               PegScope (840)

           fix.PeggedPrice  PeggedPrice (839)
               String
               PeggedPrice (839)

           fix.Pool  Pool (691)
               String
               Pool (691)

           fix.PosAmt  PosAmt (708)
               String
               PosAmt (708)

           fix.PosAmtType  PosAmtType (707)
               String
               PosAmtType (707)

           fix.PosMaintAction  PosMaintAction (712)
               String
               PosMaintAction (712)

           fix.PosMaintResult  PosMaintResult (723)
               String
               PosMaintResult (723)

           fix.PosMaintRptID  PosMaintRptID (721)
               String
               PosMaintRptID (721)

           fix.PosMaintRptRefID  PosMaintRptRefID (714)
               String
               PosMaintRptRefID (714)

           fix.PosMaintStatus  PosMaintStatus (722)
               String
               PosMaintStatus (722)

           fix.PosQtyStatus  PosQtyStatus (706)
               String
               PosQtyStatus (706)

           fix.PosReqID  PosReqID (710)
               String
               PosReqID (710)

           fix.PosReqResult  PosReqResult (728)
               String
               PosReqResult (728)

           fix.PosReqStatus  PosReqStatus (729)
               String
               PosReqStatus (729)

           fix.PosReqType  PosReqType (724)
               String
               PosReqType (724)

           fix.PosTransType  PosTransType (709)
               String
               PosTransType (709)

           fix.PosType  PosType (703)
               String
               PosType (703)

           fix.PositionEffect  PositionEffect (77)
               String
               PositionEffect (77)

           fix.PossDupFlag  PossDupFlag (43)
               String
               PossDupFlag (43)

           fix.PossResend  PossResend (97)
               String
               PossResend (97)

           fix.PreallocMethod  PreallocMethod (591)
               String
               PreallocMethod (591)

           fix.PrevClosePx  PrevClosePx (140)
               String
               PrevClosePx (140)

           fix.PreviouslyReported  PreviouslyReported (570)
               String
               PreviouslyReported (570)

           fix.Price  Price (44)
               String
               Price (44)

           fix.Price2  Price2 (640)
               String
               Price2 (640)

           fix.PriceDelta  PriceDelta (811)
               String
               PriceDelta (811)

           fix.PriceImprovement  PriceImprovement (639)
               String
               PriceImprovement (639)

           fix.PriceType  PriceType (423)
               String
               PriceType (423)

           fix.PriorSettlPrice  PriorSettlPrice (734)
               String
               PriorSettlPrice (734)

           fix.PriorSpreadIndicator  PriorSpreadIndicator (720)
               String
               PriorSpreadIndicator (720)

           fix.PriorityIndicator  PriorityIndicator (638)
               String
               PriorityIndicator (638)

           fix.ProcessCode  ProcessCode (81)
               String
               ProcessCode (81)

           fix.Product  Product (460)
               String
               Product (460)

           fix.ProgPeriodInterval  ProgPeriodInterval (415)
               String
               ProgPeriodInterval (415)

           fix.ProgRptReqs  ProgRptReqs (414)
               String
               ProgRptReqs (414)

           fix.PublishTrdIndicator  PublishTrdIndicator (852)
               String
               PublishTrdIndicator (852)

           fix.PutOrCall  PutOrCall (201)
               String
               PutOrCall (201)

           fix.QtyType  QtyType (854)
               String
               QtyType (854)

           fix.Quantity  Quantity (53)
               String
               Quantity (53)

           fix.QuantityType  QuantityType (465)
               String
               QuantityType (465)

           fix.QuoteCancelType  QuoteCancelType (298)
               String
               QuoteCancelType (298)

           fix.QuoteCondition  QuoteCondition (276)
               String
               QuoteCondition (276)

           fix.QuoteEntryID  QuoteEntryID (299)
               String
               QuoteEntryID (299)

           fix.QuoteEntryRejectReason  QuoteEntryRejectReason (368)
               String
               QuoteEntryRejectReason (368)

           fix.QuoteID  QuoteID (117)
               String
               QuoteID (117)

           fix.QuotePriceType  QuotePriceType (692)
               String
               QuotePriceType (692)

           fix.QuoteQualifier  QuoteQualifier (695)
               String
               QuoteQualifier (695)

           fix.QuoteRejectReason  QuoteRejectReason (300)
               String
               QuoteRejectReason (300)

           fix.QuoteReqID  QuoteReqID (131)
               String
               QuoteReqID (131)

           fix.QuoteRequestRejectReason  QuoteRequestRejectReason (658)
               String
               QuoteRequestRejectReason (658)

           fix.QuoteRequestType  QuoteRequestType (303)
               String
               QuoteRequestType (303)

           fix.QuoteRespID  QuoteRespID (693)
               String
               QuoteRespID (693)

           fix.QuoteRespType  QuoteRespType (694)
               String
               QuoteRespType (694)

           fix.QuoteResponseLevel  QuoteResponseLevel (301)
               String
               QuoteResponseLevel (301)

           fix.QuoteSetID  QuoteSetID (302)
               String
               QuoteSetID (302)

           fix.QuoteSetValidUntilTime  QuoteSetValidUntilTime (367)
               String
               QuoteSetValidUntilTime (367)

           fix.QuoteStatus  QuoteStatus (297)
               String
               QuoteStatus (297)

           fix.QuoteStatusReqID  QuoteStatusReqID (649)
               String
               QuoteStatusReqID (649)

           fix.QuoteType  QuoteType (537)
               String
               QuoteType (537)

           fix.RFQReqID  RFQReqID (644)
               String
               RFQReqID (644)

           fix.RatioQty  RatioQty (319)
               String
               RatioQty (319)

           fix.RawData  RawData (96)
               String
               RawData (96)

           fix.RawDataLength  RawDataLength (95)
               String
               RawDataLength (95)

           fix.RedemptionDate  RedemptionDate (240)
               String
               RedemptionDate (240)

           fix.RefAllocID  RefAllocID (72)
               String
               RefAllocID (72)

           fix.RefCompID  RefCompID (930)
               String
               RefCompID (930)

           fix.RefMsgType  RefMsgType (372)
               String
               RefMsgType (372)

           fix.RefSeqNum  RefSeqNum (45)
               String
               RefSeqNum (45)

           fix.RefSubID  RefSubID (931)
               String
               RefSubID (931)

           fix.RefTagID  RefTagID (371)
               String
               RefTagID (371)

           fix.RegistAcctType  RegistAcctType (493)
               String
               RegistAcctType (493)

           fix.RegistDtls  RegistDtls (509)
               String
               RegistDtls (509)

           fix.RegistEmail  RegistEmail (511)
               String
               RegistEmail (511)

           fix.RegistID  RegistID (513)
               String
               RegistID (513)

           fix.RegistRefID  RegistRefID (508)
               String
               RegistRefID (508)

           fix.RegistRejReasonCode  RegistRejReasonCode (507)
               String
               RegistRejReasonCode (507)

           fix.RegistRejReasonText  RegistRejReasonText (496)
               String
               RegistRejReasonText (496)

           fix.RegistStatus  RegistStatus (506)
               String
               RegistStatus (506)

           fix.RegistTransType  RegistTransType (514)
               String
               RegistTransType (514)

           fix.RelatdSym  RelatdSym (46)
               String
               RelatdSym (46)

           fix.RepoCollateralSecurityType  RepoCollateralSecurityType (239)
               String
               RepoCollateralSecurityType (239)

           fix.ReportToExch  ReportToExch (113)
               String
               ReportToExch (113)

           fix.ReportedPx  ReportedPx (861)
               String
               ReportedPx (861)

           fix.RepurchaseRate  RepurchaseRate (227)
               String
               RepurchaseRate (227)

           fix.RepurchaseTerm  RepurchaseTerm (226)
               String
               RepurchaseTerm (226)

           fix.ResetSeqNumFlag  ResetSeqNumFlag (141)
               String
               ResetSeqNumFlag (141)

           fix.ResponseDestination  ResponseDestination (726)
               String
               ResponseDestination (726)

           fix.ResponseTransportType  ResponseTransportType (725)
               String
               ResponseTransportType (725)

           fix.ReversalIndicator  ReversalIndicator (700)
               String
               ReversalIndicator (700)

           fix.RoundLot  RoundLot (561)
               String
               RoundLot (561)

           fix.RoundingDirection  RoundingDirection (468)
               String
               RoundingDirection (468)

           fix.RoundingModulus  RoundingModulus (469)
               String
               RoundingModulus (469)

           fix.RoutingID  RoutingID (217)
               String
               RoutingID (217)

           fix.RoutingType  RoutingType (216)
               String
               RoutingType (216)

           fix.RptSeq  RptSeq (83)
               String
               RptSeq (83)

           fix.Rule80A  Rule80A (47)
               String
               Rule80A (47)

           fix.Scope  Scope (546)
               String
               Scope (546)

           fix.SecDefStatus  SecDefStatus (653)
               String
               SecDefStatus (653)

           fix.SecondaryAllocID  SecondaryAllocID (793)
               String
               SecondaryAllocID (793)

           fix.SecondaryClOrdID  SecondaryClOrdID (526)
               String
               SecondaryClOrdID (526)

           fix.SecondaryExecID  SecondaryExecID (527)
               String
               SecondaryExecID (527)

           fix.SecondaryOrderID  SecondaryOrderID (198)
               String
               SecondaryOrderID (198)

           fix.SecondaryTradeReportID  SecondaryTradeReportID (818)
               String
               SecondaryTradeReportID (818)

           fix.SecondaryTradeReportRefID  SecondaryTradeReportRefID (881)
               String
               SecondaryTradeReportRefID (881)

           fix.SecondaryTrdType  SecondaryTrdType (855)
               String
               SecondaryTrdType (855)

           fix.SecureData  SecureData (91)
               String
               SecureData (91)

           fix.SecureDataLen  SecureDataLen (90)
               String
               SecureDataLen (90)

           fix.SecurityAltID  SecurityAltID (455)
               String
               SecurityAltID (455)

           fix.SecurityAltIDSource  SecurityAltIDSource (456)
               String
               SecurityAltIDSource (456)

           fix.SecurityDesc  SecurityDesc (107)
               String
               SecurityDesc (107)

           fix.SecurityExchange  SecurityExchange (207)
               String
               SecurityExchange (207)

           fix.SecurityID  SecurityID (48)
               String
               SecurityID (48)

           fix.SecurityIDSource  SecurityIDSource (22)
               String
               SecurityIDSource (22)

           fix.SecurityListRequestType  SecurityListRequestType (559)
               String
               SecurityListRequestType (559)

           fix.SecurityReqID  SecurityReqID (320)
               String
               SecurityReqID (320)

           fix.SecurityRequestResult  SecurityRequestResult (560)
               String
               SecurityRequestResult (560)

           fix.SecurityRequestType  SecurityRequestType (321)
               String
               SecurityRequestType (321)

           fix.SecurityResponseID  SecurityResponseID (322)
               String
               SecurityResponseID (322)

           fix.SecurityResponseType  SecurityResponseType (323)
               String
               SecurityResponseType (323)

           fix.SecuritySettlAgentAcctName  SecuritySettlAgentAcctName (179)
               String
               SecuritySettlAgentAcctName (179)

           fix.SecuritySettlAgentAcctNum  SecuritySettlAgentAcctNum (178)
               String
               SecuritySettlAgentAcctNum (178)

           fix.SecuritySettlAgentCode  SecuritySettlAgentCode (177)
               String
               SecuritySettlAgentCode (177)

           fix.SecuritySettlAgentContactName  SecuritySettlAgentContactName (180)
               String
               SecuritySettlAgentContactName (180)

           fix.SecuritySettlAgentContactPhone  SecuritySettlAgentContactPhone (181)
               String
               SecuritySettlAgentContactPhone (181)

           fix.SecuritySettlAgentName  SecuritySettlAgentName (176)
               String
               SecuritySettlAgentName (176)

           fix.SecurityStatusReqID  SecurityStatusReqID (324)
               String
               SecurityStatusReqID (324)

           fix.SecuritySubType  SecuritySubType (762)
               String
               SecuritySubType (762)

           fix.SecurityTradingStatus  SecurityTradingStatus (326)
               String
               SecurityTradingStatus (326)

           fix.SecurityType  SecurityType (167)
               String
               SecurityType (167)

           fix.SellVolume  SellVolume (331)
               String
               SellVolume (331)

           fix.SellerDays  SellerDays (287)
               String
               SellerDays (287)

           fix.SenderCompID  SenderCompID (49)
               String
               SenderCompID (49)

           fix.SenderLocationID  SenderLocationID (142)
               String
               SenderLocationID (142)

           fix.SenderSubID  SenderSubID (50)
               String
               SenderSubID (50)

           fix.SendingDate  SendingDate (51)
               String
               SendingDate (51)

           fix.SendingTime  SendingTime (52)
               String
               SendingTime (52)

           fix.SessionRejectReason  SessionRejectReason (373)
               String
               SessionRejectReason (373)

           fix.SettlBrkrCode  SettlBrkrCode (174)
               String
               SettlBrkrCode (174)

           fix.SettlCurrAmt  SettlCurrAmt (119)
               String
               SettlCurrAmt (119)

           fix.SettlCurrBidFxRate  SettlCurrBidFxRate (656)
               String
               SettlCurrBidFxRate (656)

           fix.SettlCurrFxRate  SettlCurrFxRate (155)
               String
               SettlCurrFxRate (155)

           fix.SettlCurrFxRateCalc  SettlCurrFxRateCalc (156)
               String
               SettlCurrFxRateCalc (156)

           fix.SettlCurrOfferFxRate  SettlCurrOfferFxRate (657)
               String
               SettlCurrOfferFxRate (657)

           fix.SettlCurrency  SettlCurrency (120)
               String
               SettlCurrency (120)

           fix.SettlDate  SettlDate (64)
               String
               SettlDate (64)

           fix.SettlDate2  SettlDate2 (193)
               String
               SettlDate2 (193)

           fix.SettlDeliveryType  SettlDeliveryType (172)
               String
               SettlDeliveryType (172)

           fix.SettlDepositoryCode  SettlDepositoryCode (173)
               String
               SettlDepositoryCode (173)

           fix.SettlInstCode  SettlInstCode (175)
               String
               SettlInstCode (175)

           fix.SettlInstID  SettlInstID (162)
               String
               SettlInstID (162)

           fix.SettlInstMode  SettlInstMode (160)
               String
               SettlInstMode (160)

           fix.SettlInstMsgID  SettlInstMsgID (777)
               String
               SettlInstMsgID (777)

           fix.SettlInstRefID  SettlInstRefID (214)
               String
               SettlInstRefID (214)

           fix.SettlInstReqID  SettlInstReqID (791)
               String
               SettlInstReqID (791)

           fix.SettlInstReqRejCode  SettlInstReqRejCode (792)
               String
               SettlInstReqRejCode (792)

           fix.SettlInstSource  SettlInstSource (165)
               String
               SettlInstSource (165)

           fix.SettlInstTransType  SettlInstTransType (163)
               String
               SettlInstTransType (163)

           fix.SettlLocation  SettlLocation (166)
               String
               SettlLocation (166)

           fix.SettlPartyID  SettlPartyID (782)
               String
               SettlPartyID (782)

           fix.SettlPartyIDSource  SettlPartyIDSource (783)
               String
               SettlPartyIDSource (783)

           fix.SettlPartyRole  SettlPartyRole (784)
               String
               SettlPartyRole (784)

           fix.SettlPartySubID  SettlPartySubID (785)
               String
               SettlPartySubID (785)

           fix.SettlPartySubIDType  SettlPartySubIDType (786)
               String
               SettlPartySubIDType (786)

           fix.SettlPrice  SettlPrice (730)
               String
               SettlPrice (730)

           fix.SettlPriceType  SettlPriceType (731)
               String
               SettlPriceType (731)

           fix.SettlSessID  SettlSessID (716)
               String
               SettlSessID (716)

           fix.SettlSessSubID  SettlSessSubID (717)
               String
               SettlSessSubID (717)

           fix.SettlType  SettlType (63)
               String
               SettlType (63)

           fix.SharedCommission  SharedCommission (858)
               String
               SharedCommission (858)

           fix.ShortQty  ShortQty (705)
               String
               ShortQty (705)

           fix.ShortSaleReason  ShortSaleReason (853)
               String
               ShortSaleReason (853)

           fix.Side  Side (54)
               String
               Side (54)

           fix.SideComplianceID  SideComplianceID (659)
               String
               SideComplianceID (659)

           fix.SideMultiLegReportingType  SideMultiLegReportingType (752)
               String
               SideMultiLegReportingType (752)

           fix.SideValue1  SideValue1 (396)
               String
               SideValue1 (396)

           fix.SideValue2  SideValue2 (397)
               String
               SideValue2 (397)

           fix.SideValueInd  SideValueInd (401)
               String
               SideValueInd (401)

           fix.Signature  Signature (89)
               String
               Signature (89)

           fix.SignatureLength  SignatureLength (93)
               String
               SignatureLength (93)

           fix.SolicitedFlag  SolicitedFlag (377)
               String
               SolicitedFlag (377)

           fix.Spread  Spread (218)
               String
               Spread (218)

           fix.StandInstDbID  StandInstDbID (171)
               String
               StandInstDbID (171)

           fix.StandInstDbName  StandInstDbName (170)
               String
               StandInstDbName (170)

           fix.StandInstDbType  StandInstDbType (169)
               String
               StandInstDbType (169)

           fix.StartCash  StartCash (921)
               String
               StartCash (921)

           fix.StartDate  StartDate (916)
               String
               StartDate (916)

           fix.StateOrProvinceOfIssue  StateOrProvinceOfIssue (471)
               String
               StateOrProvinceOfIssue (471)

           fix.StatusText  StatusText (929)
               String
               StatusText (929)

           fix.StatusValue  StatusValue (928)
               String
               StatusValue (928)

           fix.StipulationType  StipulationType (233)
               String
               StipulationType (233)

           fix.StipulationValue  StipulationValue (234)
               String
               StipulationValue (234)

           fix.StopPx  StopPx (99)
               String
               StopPx (99)

           fix.StrikeCurrency  StrikeCurrency (947)
               String
               StrikeCurrency (947)

           fix.StrikePrice  StrikePrice (202)
               String
               StrikePrice (202)

           fix.StrikeTime  StrikeTime (443)
               String
               StrikeTime (443)

           fix.Subject  Subject (147)
               String
               Subject (147)

           fix.SubscriptionRequestType  SubscriptionRequestType (263)
               String
               SubscriptionRequestType (263)

           fix.Symbol  Symbol (55)
               String
               Symbol (55)

           fix.SymbolSfx  SymbolSfx (65)
               String
               SymbolSfx (65)

           fix.TargetCompID  TargetCompID (56)
               String
               TargetCompID (56)

           fix.TargetLocationID  TargetLocationID (143)
               String
               TargetLocationID (143)

           fix.TargetStrategy  TargetStrategy (847)
               String
               TargetStrategy (847)

           fix.TargetStrategyParameters  TargetStrategyParameters (848)
               String
               TargetStrategyParameters (848)

           fix.TargetStrategyPerformance  TargetStrategyPerformance (850)
               String
               TargetStrategyPerformance (850)

           fix.TargetSubID  TargetSubID (57)
               String
               TargetSubID (57)

           fix.TaxAdvantageType  TaxAdvantageType (495)
               String
               TaxAdvantageType (495)

           fix.TerminationType  TerminationType (788)
               String
               TerminationType (788)

           fix.TestMessageIndicator  TestMessageIndicator (464)
               String
               TestMessageIndicator (464)

           fix.TestReqID  TestReqID (112)
               String
               TestReqID (112)

           fix.Text  Text (58)
               String
               Text (58)

           fix.ThresholdAmount  ThresholdAmount (834)
               String
               ThresholdAmount (834)

           fix.TickDirection  TickDirection (274)
               String
               TickDirection (274)

           fix.TimeBracket  TimeBracket (943)
               String
               TimeBracket (943)

           fix.TimeInForce  TimeInForce (59)
               String
               TimeInForce (59)

           fix.TotNoAllocs  TotNoAllocs (892)
               String
               TotNoAllocs (892)

           fix.TotNoOrders  TotNoOrders (68)
               String
               TotNoOrders (68)

           fix.TotNoQuoteEntries  TotNoQuoteEntries (304)
               String
               TotNoQuoteEntries (304)

           fix.TotNoRelatedSym  TotNoRelatedSym (393)
               String
               TotNoRelatedSym (393)

           fix.TotNoSecurityTypes  TotNoSecurityTypes (557)
               String
               TotNoSecurityTypes (557)

           fix.TotNoStrikes  TotNoStrikes (422)
               String
               TotNoStrikes (422)

           fix.TotNumAssignmentReports  TotNumAssignmentReports (832)
               String
               TotNumAssignmentReports (832)

           fix.TotNumReports  TotNumReports (911)
               String
               TotNumReports (911)

           fix.TotNumTradeReports  TotNumTradeReports (748)
               String
               TotNumTradeReports (748)

           fix.TotalAccruedInterestAmt  TotalAccruedInterestAmt (540)
               String
               TotalAccruedInterestAmt (540)

           fix.TotalAffectedOrders  TotalAffectedOrders (533)
               String
               TotalAffectedOrders (533)

           fix.TotalNetValue  TotalNetValue (900)
               String
               TotalNetValue (900)

           fix.TotalNumPosReports  TotalNumPosReports (727)
               String
               TotalNumPosReports (727)

           fix.TotalTakedown  TotalTakedown (237)
               String
               TotalTakedown (237)

           fix.TotalVolumeTraded  TotalVolumeTraded (387)
               String
               TotalVolumeTraded (387)

           fix.TotalVolumeTradedDate  TotalVolumeTradedDate (449)
               String
               TotalVolumeTradedDate (449)

           fix.TotalVolumeTradedTime  TotalVolumeTradedTime (450)
               String
               TotalVolumeTradedTime (450)

           fix.TradSesCloseTime  TradSesCloseTime (344)
               String
               TradSesCloseTime (344)

           fix.TradSesEndTime  TradSesEndTime (345)
               String
               TradSesEndTime (345)

           fix.TradSesMethod  TradSesMethod (338)
               String
               TradSesMethod (338)

           fix.TradSesMode  TradSesMode (339)
               String
               TradSesMode (339)

           fix.TradSesOpenTime  TradSesOpenTime (342)
               String
               TradSesOpenTime (342)

           fix.TradSesPreCloseTime  TradSesPreCloseTime (343)
               String
               TradSesPreCloseTime (343)

           fix.TradSesReqID  TradSesReqID (335)
               String
               TradSesReqID (335)

           fix.TradSesStartTime  TradSesStartTime (341)
               String
               TradSesStartTime (341)

           fix.TradSesStatus  TradSesStatus (340)
               String
               TradSesStatus (340)

           fix.TradSesStatusRejReason  TradSesStatusRejReason (567)
               String
               TradSesStatusRejReason (567)

           fix.TradeAllocIndicator  TradeAllocIndicator (826)
               String
               TradeAllocIndicator (826)

           fix.TradeCondition  TradeCondition (277)
               String
               TradeCondition (277)

           fix.TradeDate  TradeDate (75)
               String
               TradeDate (75)

           fix.TradeInputDevice  TradeInputDevice (579)
               String
               TradeInputDevice (579)

           fix.TradeInputSource  TradeInputSource (578)
               String
               TradeInputSource (578)

           fix.TradeLegRefID  TradeLegRefID (824)
               String
               TradeLegRefID (824)

           fix.TradeLinkID  TradeLinkID (820)
               String
               TradeLinkID (820)

           fix.TradeOriginationDate  TradeOriginationDate (229)
               String
               TradeOriginationDate (229)

           fix.TradeReportID  TradeReportID (571)
               String
               TradeReportID (571)

           fix.TradeReportRefID  TradeReportRefID (572)
               String
               TradeReportRefID (572)

           fix.TradeReportRejectReason  TradeReportRejectReason (751)
               String
               TradeReportRejectReason (751)

           fix.TradeReportTransType  TradeReportTransType (487)
               String
               TradeReportTransType (487)

           fix.TradeReportType  TradeReportType (856)
               String
               TradeReportType (856)

           fix.TradeRequestID  TradeRequestID (568)
               String
               TradeRequestID (568)

           fix.TradeRequestResult  TradeRequestResult (749)
               String
               TradeRequestResult (749)

           fix.TradeRequestStatus  TradeRequestStatus (750)
               String
               TradeRequestStatus (750)

           fix.TradeRequestType  TradeRequestType (569)
               String
               TradeRequestType (569)

           fix.TradedFlatSwitch  TradedFlatSwitch (258)
               String
               TradedFlatSwitch (258)

           fix.TradingSessionID  TradingSessionID (336)
               String
               TradingSessionID (336)

           fix.TradingSessionSubID  TradingSessionSubID (625)
               String
               TradingSessionSubID (625)

           fix.TransBkdTime  TransBkdTime (483)
               String
               TransBkdTime (483)

           fix.TransactTime  TransactTime (60)
               String
               TransactTime (60)

           fix.TransferReason  TransferReason (830)
               String
               TransferReason (830)

           fix.TrdMatchID  TrdMatchID (880)
               String
               TrdMatchID (880)

           fix.TrdRegTimestamp  TrdRegTimestamp (769)
               String
               TrdRegTimestamp (769)

           fix.TrdRegTimestampOrigin  TrdRegTimestampOrigin (771)
               String
               TrdRegTimestampOrigin (771)

           fix.TrdRegTimestampType  TrdRegTimestampType (770)
               String
               TrdRegTimestampType (770)

           fix.TrdRptStatus  TrdRptStatus (939)
               String
               TrdRptStatus (939)

           fix.TrdSubType  TrdSubType (829)
               String
               TrdSubType (829)

           fix.TrdType  TrdType (828)
               String
               TrdType (828)

           fix.URLLink  URLLink (149)
               String
               URLLink (149)

           fix.UnderlyingCFICode  UnderlyingCFICode (463)
               String
               UnderlyingCFICode (463)

           fix.UnderlyingCPProgram  UnderlyingCPProgram (877)
               String
               UnderlyingCPProgram (877)

           fix.UnderlyingCPRegType  UnderlyingCPRegType (878)
               String
               UnderlyingCPRegType (878)

           fix.UnderlyingContractMultiplier  UnderlyingContractMultiplier (436)
               String
               UnderlyingContractMultiplier (436)

           fix.UnderlyingCountryOfIssue  UnderlyingCountryOfIssue (592)
               String
               UnderlyingCountryOfIssue (592)

           fix.UnderlyingCouponPaymentDate  UnderlyingCouponPaymentDate (241)
               String
               UnderlyingCouponPaymentDate (241)

           fix.UnderlyingCouponRate  UnderlyingCouponRate (435)
               String
               UnderlyingCouponRate (435)

           fix.UnderlyingCreditRating  UnderlyingCreditRating (256)
               String
               UnderlyingCreditRating (256)

           fix.UnderlyingCurrency  UnderlyingCurrency (318)
               String
               UnderlyingCurrency (318)

           fix.UnderlyingCurrentValue  UnderlyingCurrentValue (885)
               String
               UnderlyingCurrentValue (885)

           fix.UnderlyingDirtyPrice  UnderlyingDirtyPrice (882)
               String
               UnderlyingDirtyPrice (882)

           fix.UnderlyingEndPrice  UnderlyingEndPrice (883)
               String
               UnderlyingEndPrice (883)

           fix.UnderlyingEndValue  UnderlyingEndValue (886)
               String
               UnderlyingEndValue (886)

           fix.UnderlyingFactor  UnderlyingFactor (246)
               String
               UnderlyingFactor (246)

           fix.UnderlyingInstrRegistry  UnderlyingInstrRegistry (595)
               String
               UnderlyingInstrRegistry (595)

           fix.UnderlyingIssueDate  UnderlyingIssueDate (242)
               String
               UnderlyingIssueDate (242)

           fix.UnderlyingIssuer  UnderlyingIssuer (306)
               String
               UnderlyingIssuer (306)

           fix.UnderlyingLastPx  UnderlyingLastPx (651)
               String
               UnderlyingLastPx (651)

           fix.UnderlyingLastQty  UnderlyingLastQty (652)
               String
               UnderlyingLastQty (652)

           fix.UnderlyingLocaleOfIssue  UnderlyingLocaleOfIssue (594)
               String
               UnderlyingLocaleOfIssue (594)

           fix.UnderlyingMaturityDate  UnderlyingMaturityDate (542)
               String
               UnderlyingMaturityDate (542)

           fix.UnderlyingMaturityDay  UnderlyingMaturityDay (314)
               String
               UnderlyingMaturityDay (314)

           fix.UnderlyingMaturityMonthYear  UnderlyingMaturityMonthYear (313)
               String
               UnderlyingMaturityMonthYear (313)

           fix.UnderlyingOptAttribute  UnderlyingOptAttribute (317)
               String
               UnderlyingOptAttribute (317)

           fix.UnderlyingProduct  UnderlyingProduct (462)
               String
               UnderlyingProduct (462)

           fix.UnderlyingPutOrCall  UnderlyingPutOrCall (315)
               String
               UnderlyingPutOrCall (315)

           fix.UnderlyingPx  UnderlyingPx (810)
               String
               UnderlyingPx (810)

           fix.UnderlyingQty  UnderlyingQty (879)
               String
               UnderlyingQty (879)

           fix.UnderlyingRedemptionDate  UnderlyingRedemptionDate (247)
               String
               UnderlyingRedemptionDate (247)

           fix.UnderlyingRepoCollateralSecurityType  UnderlyingRepoCollateralSecurityType (243)
               String
               UnderlyingRepoCollateralSecurityType (243)

           fix.UnderlyingRepurchaseRate  UnderlyingRepurchaseRate (245)
               String
               UnderlyingRepurchaseRate (245)

           fix.UnderlyingRepurchaseTerm  UnderlyingRepurchaseTerm (244)
               String
               UnderlyingRepurchaseTerm (244)

           fix.UnderlyingSecurityAltID  UnderlyingSecurityAltID (458)
               String
               UnderlyingSecurityAltID (458)

           fix.UnderlyingSecurityAltIDSource  UnderlyingSecurityAltIDSource (459)
               String
               UnderlyingSecurityAltIDSource (459)

           fix.UnderlyingSecurityDesc  UnderlyingSecurityDesc (307)
               String
               UnderlyingSecurityDesc (307)

           fix.UnderlyingSecurityExchange  UnderlyingSecurityExchange (308)
               String
               UnderlyingSecurityExchange (308)

           fix.UnderlyingSecurityID  UnderlyingSecurityID (309)
               String
               UnderlyingSecurityID (309)

           fix.UnderlyingSecurityIDSource  UnderlyingSecurityIDSource (305)
               String
               UnderlyingSecurityIDSource (305)

           fix.UnderlyingSecuritySubType  UnderlyingSecuritySubType (763)
               String
               UnderlyingSecuritySubType (763)

           fix.UnderlyingSecurityType  UnderlyingSecurityType (310)
               String
               UnderlyingSecurityType (310)

           fix.UnderlyingSettlPrice  UnderlyingSettlPrice (732)
               String
               UnderlyingSettlPrice (732)

           fix.UnderlyingSettlPriceType  UnderlyingSettlPriceType (733)
               String
               UnderlyingSettlPriceType (733)

           fix.UnderlyingStartValue  UnderlyingStartValue (884)
               String
               UnderlyingStartValue (884)

           fix.UnderlyingStateOrProvinceOfIssue  UnderlyingStateOrProvinceOfIssue (593)
               String
               UnderlyingStateOrProvinceOfIssue (593)

           fix.UnderlyingStipType  UnderlyingStipType (888)
               String
               UnderlyingStipType (888)

           fix.UnderlyingStipValue  UnderlyingStipValue (889)
               String
               UnderlyingStipValue (889)

           fix.UnderlyingStrikeCurrency  UnderlyingStrikeCurrency (941)
               String
               UnderlyingStrikeCurrency (941)

           fix.UnderlyingStrikePrice  UnderlyingStrikePrice (316)
               String
               UnderlyingStrikePrice (316)

           fix.UnderlyingSymbol  UnderlyingSymbol (311)
               String
               UnderlyingSymbol (311)

           fix.UnderlyingSymbolSfx  UnderlyingSymbolSfx (312)
               String
               UnderlyingSymbolSfx (312)

           fix.UnderlyingTradingSessionID  UnderlyingTradingSessionID (822)
               String
               UnderlyingTradingSessionID (822)

           fix.UnderlyingTradingSessionSubID  UnderlyingTradingSessionSubID (823)
               String
               UnderlyingTradingSessionSubID (823)

           fix.UnsolicitedIndicator  UnsolicitedIndicator (325)
               String
               UnsolicitedIndicator (325)

           fix.Urgency  Urgency (61)
               String
               Urgency (61)

           fix.UserRequestID  UserRequestID (923)
               String
               UserRequestID (923)

           fix.UserRequestType  UserRequestType (924)
               String
               UserRequestType (924)

           fix.UserStatus  UserStatus (926)
               String
               UserStatus (926)

           fix.UserStatusText  UserStatusText (927)
               String
               UserStatusText (927)

           fix.Username  Username (553)
               String
               Username (553)

           fix.ValidUntilTime  ValidUntilTime (62)
               String
               ValidUntilTime (62)

           fix.ValueOfFutures  ValueOfFutures (408)
               String
               ValueOfFutures (408)

           fix.WaveNo  WaveNo (105)
               String
               WaveNo (105)

           fix.WorkingIndicator  WorkingIndicator (636)
               String
               WorkingIndicator (636)

           fix.WtAverageLiquidity  WtAverageLiquidity (410)
               String
               WtAverageLiquidity (410)

           fix.XmlData  XmlData (213)
               String
               XmlData (213)

           fix.XmlDataLen  XmlDataLen (212)
               String
               XmlDataLen (212)

           fix.Yield  Yield (236)
               String
               Yield (236)

           fix.YieldCalcDate  YieldCalcDate (701)
               String
               YieldCalcDate (701)

           fix.YieldRedemptionDate  YieldRedemptionDate (696)
               String
               YieldRedemptionDate (696)

           fix.YieldRedemptionPrice  YieldRedemptionPrice (697)
               String
               YieldRedemptionPrice (697)

           fix.YieldRedemptionPriceType  YieldRedemptionPriceType (698)
               String
               YieldRedemptionPriceType (698)

           fix.YieldType  YieldType (235)
               String
               YieldType (235)

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

           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.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_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
               LPC_B5...LPC_B0

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

           goose.RequestResults  RequestResults
               Unsigned 32-bit integer
               goose.RequestResults

           goose.allData  allData
               Unsigned 32-bit integer
               goose.SEQUENCE_OF_Data

           goose.appid  APPID
               Unsigned 16-bit integer

           goose.array  array
               Unsigned 32-bit integer
               goose.SEQUENCE_OF_Data

           goose.bcd  bcd
               Signed 32-bit integer
               goose.INTEGER

           goose.binary_time  binary-time
               Byte array
               goose.TimeOfDay

           goose.bit_string  bit-string
               Byte array
               goose.BIT_STRING

           goose.boolean  boolean
               Boolean
               goose.BOOLEAN

           goose.booleanArray  booleanArray
               Byte array
               goose.BIT_STRING

           goose.confRev  confRev
               Signed 32-bit integer
               goose.INTEGER

           goose.datSet  datSet
               String
               goose.VisibleString

           goose.error  error
               Signed 32-bit integer
               goose.ErrorReason

           goose.floating_point  floating-point
               Byte array
               goose.FloatingPoint

           goose.getGOOSEElementNumber  getGOOSEElementNumber
               No value
               goose.GetElementRequestPdu

           goose.getGSSEDataOffset  getGSSEDataOffset
               No value
               goose.GetElementRequestPdu

           goose.getGoReference  getGoReference
               No value
               goose.GetReferenceRequestPdu

           goose.getGsReference  getGsReference
               No value
               goose.GetReferenceRequestPdu

           goose.goID  goID
               String
               goose.VisibleString

           goose.gocbRef  gocbRef
               String
               goose.VisibleString

           goose.goosePdu  goosePdu
               No value
               goose.IECGoosePdu

           goose.gseMngtNotSupported  gseMngtNotSupported
               No value
               goose.NULL

           goose.gseMngtPdu  gseMngtPdu
               No value
               goose.GSEMngtPdu

           goose.ident  ident
               String
               goose.VisibleString

           goose.integer  integer
               Signed 32-bit integer
               goose.INTEGER

           goose.length  Length
               Unsigned 16-bit integer

           goose.ndsCom  ndsCom
               Boolean
               goose.BOOLEAN

           goose.numDatSetEntries  numDatSetEntries
               Signed 32-bit integer
               goose.INTEGER

           goose.octet_string  octet-string
               Byte array
               goose.OCTET_STRING

           goose.offset  offset
               Unsigned 32-bit integer
               goose.T_offset

           goose.offset_item  offset item
               Signed 32-bit integer
               goose.INTEGER

           goose.posNeg  posNeg
               Unsigned 32-bit integer
               goose.PositiveNegative

           goose.real  real
               Double-precision floating point
               goose.REAL

           goose.reference  reference
               String
               goose.IA5String

           goose.references  references
               Unsigned 32-bit integer
               goose.T_references

           goose.references_item  references item
               String
               goose.VisibleString

           goose.requestResp  requestResp
               Unsigned 32-bit integer
               goose.RequestResponse

           goose.requests  requests
               Unsigned 32-bit integer
               goose.GSEMngtRequests

           goose.reserve1  Reserved 1
               Unsigned 16-bit integer

           goose.reserve2  Reserved 2
               Unsigned 16-bit integer

           goose.responseNegative  responseNegative
               Signed 32-bit integer
               goose.GlbErrors

           goose.responsePositive  responsePositive
               No value
               goose.T_responsePositive

           goose.responses  responses
               Unsigned 32-bit integer
               goose.GSEMngtResponses

           goose.result  result
               Unsigned 32-bit integer
               goose.SEQUENCE_OF_RequestResults

           goose.sqNum  sqNum
               Signed 32-bit integer
               goose.INTEGER

           goose.stNum  stNum
               Signed 32-bit integer
               goose.INTEGER

           goose.stateID  stateID
               Signed 32-bit integer
               goose.INTEGER

           goose.structure  structure
               Unsigned 32-bit integer
               goose.SEQUENCE_OF_Data

           goose.t  t
               Byte array
               goose.UtcTime

           goose.test  test
               Boolean
               goose.BOOLEAN

           goose.timeAllowedtoLive  timeAllowedtoLive
               Signed 32-bit integer
               goose.INTEGER

           goose.unsigned  unsigned
               Signed 32-bit integer
               goose.INTEGER

           goose.visible_string  visible-string
               String
               goose.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
               Certificate

           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)
           gprs_ns.bvci  BVCI
               Unsigned 16-bit integer
               Cell ID

           gprs_ns.cause  Cause
               Unsigned 8-bit integer
               Cause

           gprs_ns.ielength  IE Length
               Unsigned 16-bit integer
               IE Length

           gprs_ns.ietype  IE Type
               Unsigned 8-bit integer
               IE Type

           gprs_ns.nsei  NSEI
               Unsigned 16-bit integer
               Network Service Entity Id

           gprs_ns.nsvci  NSVCI
               Unsigned 16-bit integer
               Network Service Virtual Connection id

           gprs_ns.pdutype  PDU Type
               Unsigned 8-bit integer
               NS Command

           gprs_ns.spare  Spare octet
               Unsigned 8-bit integer

   GPRS Tunneling Protocol (gtp)
           gtp.apn  APN
               String
               Access Point Name

           gtp.bssgp_cause  BSSGP Cause
               Unsigned 8-bit integer
               BSSGP Cause

           gtp.cause  Cause
               Unsigned 8-bit integer
               Cause of operation

           gtp.chrg_char  Charging characteristics
               Unsigned 16-bit integer
               Charging characteristics

           gtp.chrg_char_f  Flat rate charging
               Unsigned 16-bit integer
               Flat rate charging

           gtp.chrg_char_h  Hot billing charging
               Unsigned 16-bit integer
               Hot billing charging

           gtp.chrg_char_n  Normal charging
               Unsigned 16-bit integer
               Normal charging

           gtp.chrg_char_p  Prepaid charging
               Unsigned 16-bit integer
               Prepaid charging

           gtp.chrg_char_r  Reserved
               Unsigned 16-bit integer
               Reserved

           gtp.chrg_char_s  Spare
               Unsigned 16-bit integer
               Spare

           gtp.chrg_id  Charging ID
               Unsigned 32-bit integer
               Charging ID

           gtp.chrg_ipv4  CG address IPv4
               IPv4 address
               Charging Gateway address IPv4

           gtp.chrg_ipv6  CG address IPv6
               IPv6 address
               Charging Gateway address IPv6

           gtp.cksn_ksi  Ciphering Key Sequence Number (CKSN)/Key Set Identifier (KSI)
               Unsigned 8-bit integer
               CKSN/KSI

           gtp.cmn_flg.mbs_cnt_inf  MBMS Counting Information
               Boolean
               MBMS Counting Information

           gtp.cmn_flg.mbs_srv_type  MBMS Service Type
               Boolean
               MBMS Service Type

           gtp.cmn_flg.no_qos_neg  No QoS negotiation
               Boolean
               No QoS negotiation

           gtp.cmn_flg.nrsn  NRSN bit field
               Boolean
               NRSN bit field

           gtp.cmn_flg.ppc  Prohibit Payload Compression
               Boolean
               Prohibit Payload Compression

           gtp.cmn_flg.ran_pcd_rd  RAN Procedures Ready
               Boolean
               RAN Procedures Ready

           gtp.dti  Direct Tunnel Indicator (DTI)
               Unsigned 8-bit integer
               Direct Tunnel Indicator (DTI)

           gtp.ei  Error Indication (EI)
               Unsigned 8-bit integer
               Error Indication (EI)

           gtp.ext_apn_res  Restriction Type
               Unsigned 8-bit integer
               Restriction Type

           gtp.ext_flow_label  Flow Label Data I
               Unsigned 16-bit integer
               Flow label data

           gtp.ext_geo_loc_type  Geographic Location Type
               Unsigned 8-bit integer
               Geographic Location Type

           gtp.ext_id  Extension identifier
               Unsigned 16-bit integer
               Extension Identifier

           gtp.ext_imeisv  IMEI(SV)
               String
               IMEI(SV)

           gtp.ext_length  Length
               Unsigned 16-bit integer
               IE Length

           gtp.ext_rat_type  RAT Type
               Unsigned 8-bit integer
               RAT Type

           gtp.ext_sac  SAC
               Unsigned 16-bit integer
               SAC

           gtp.ext_val  Extension value
               Byte array
               Extension Value

           gtp.flags  Flags
               Unsigned 8-bit integer
               Ver/PT/Spare...

           gtp.flags.e  Is Next Extension Header present?
               Boolean
               Is Next Extension Header present? (1 = yes, 0 = no)

           gtp.flags.payload  Protocol type
               Unsigned 8-bit integer
               Protocol Type

           gtp.flags.pn  Is N-PDU number present?
               Boolean
               Is N-PDU number present? (1 = yes, 0 = no)

           gtp.flags.reserved  Reserved
               Unsigned 8-bit integer
               Reserved (shall be sent as '111' )

           gtp.flags.s  Is Sequence Number present?
               Boolean
               Is Sequence Number present? (1 = yes, 0 = no)

           gtp.flags.snn  Is SNDCP N-PDU included?
               Boolean
               Is SNDCP N-PDU LLC Number included? (1 = yes, 0 = no)

           gtp.flags.version  Version
               Unsigned 8-bit integer
               GTP Version

           gtp.flow_ii  Flow Label Data II
               Unsigned 16-bit integer
               Downlink flow label data

           gtp.flow_label  Flow label
               Unsigned 16-bit integer
               Flow label

           gtp.flow_sig  Flow label Signalling
               Unsigned 16-bit integer
               Flow label signalling

           gtp.gcsi  GPRS-CSI (GCSI)
               Unsigned 8-bit integer
               GPRS-CSI (GCSI)

           gtp.gsn_addr_len  GSN Address Length
               Unsigned 8-bit integer
               GSN Address Length

           gtp.gsn_addr_type  GSN Address Type
               Unsigned 8-bit integer
               GSN Address Type

           gtp.gsn_ipv4  GSN address IPv4
               IPv4 address
               GSN address IPv4

           gtp.gsn_ipv6  GSN address IPv6
               IPv6 address
               GSN address IPv6

           gtp.imsi  IMSI
               String
               International Mobile Subscriber Identity number

           gtp.lac  LAC
               Unsigned 16-bit integer
               Location Area Code

           gtp.length  Length
               Unsigned 16-bit integer
               Length (i.e. number of octets after TID or TEID)

           gtp.map_cause  MAP cause
               Unsigned 8-bit integer
               MAP cause

           gtp.mbms_sa_code  MBMS service area code
               Unsigned 16-bit integer
               MBMS service area code

           gtp.mbms_ses_dur_days  Estimated session duration days
               Unsigned 8-bit integer
               Estimated session duration days

           gtp.mbms_ses_dur_s  Estimated session duration seconds
               Unsigned 24-bit integer
               Estimated session duration seconds

           gtp.mbs_2g_3g_ind  MBMS 2G/3G Indicator
               Unsigned 8-bit integer
               MBMS 2G/3G Indicator

           gtp.mcc  MCC
               Unsigned 16-bit integer
               Mobile Country Code

           gtp.message  Message Type
               Unsigned 8-bit integer
               GTP Message Type

           gtp.mnc  MNC
               Unsigned 8-bit integer
               Mobile Network Code

           gtp.ms_reason  MS not reachable reason
               Unsigned 8-bit integer
               MS Not Reachable Reason

           gtp.ms_valid  MS validated
               Boolean
               MS validated

           gtp.msisdn  MSISDN
               String
               MS international PSTN/ISDN number

           gtp.next  Next extension header type
               Unsigned 8-bit integer
               Next Extension Header Type

           gtp.no_of_mbms_sa_codes  Number of MBMS service area codes
               Unsigned 8-bit integer
               Number N of MBMS service area codes

           gtp.no_of_vectors  No of Vectors
               Unsigned 8-bit integer
               No of Vectors

           gtp.node_ipv4  Node address IPv4
               IPv4 address
               Recommended node address IPv4

           gtp.node_ipv6  Node address IPv6
               IPv6 address
               Recommended node address IPv6

           gtp.npdu_number  N-PDU Number
               Unsigned 8-bit integer
               N-PDU Number

           gtp.nsapi  NSAPI
               Unsigned 8-bit integer
               Network layer Service Access Point Identifier

           gtp.pkt_flow_id  Packet Flow ID
               Unsigned 8-bit integer
               Packet Flow ID

           gtp.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
               P-TMSI Signature

           gtp.qos_al_ret_priority  Allocation/Retention priority
               Unsigned 8-bit integer
               Allocation/Retention Priority

           gtp.qos_del_err_sdu  Delivery of erroneous SDU
               Unsigned 8-bit integer
               Delivery of Erroneous SDU

           gtp.qos_del_order  Delivery order
               Unsigned 8-bit integer
               Delivery Order

           gtp.qos_delay  QoS delay
               Unsigned 8-bit integer
               Quality of Service Delay Class

           gtp.qos_guar_dl  Guaranteed bit rate for downlink
               Unsigned 8-bit integer
               Guaranteed bit rate for downlink

           gtp.qos_guar_ul  Guaranteed bit rate for uplink
               Unsigned 8-bit integer
               Guaranteed bit rate for uplink

           gtp.qos_max_dl  Maximum bit rate for downlink
               Unsigned 8-bit integer
               Maximum bit rate for downlink

           gtp.qos_max_sdu_size  Maximum SDU size
               Unsigned 8-bit integer
               Maximum SDU size

           gtp.qos_max_ul  Maximum bit rate for uplink
               Unsigned 8-bit integer
               Maximum bit rate for uplink

           gtp.qos_mean  QoS mean
               Unsigned 8-bit integer
               Quality of Service Mean Throughput

           gtp.qos_peak  QoS peak
               Unsigned 8-bit integer
               Quality of Service Peak Throughput

           gtp.qos_precedence  QoS precedence
               Unsigned 8-bit integer
               Quality of Service Precedence Class

           gtp.qos_reliabilty  QoS reliability
               Unsigned 8-bit integer
               Quality of Service Reliability Class

           gtp.qos_res_ber  Residual BER
               Unsigned 8-bit integer
               Residual Bit Error Rate

           gtp.qos_sdu_err_ratio  SDU Error ratio
               Unsigned 8-bit integer
               SDU Error Ratio

           gtp.qos_spare1  Spare
               Unsigned 8-bit integer
               Spare (shall be sent as '00' )

           gtp.qos_spare2  Spare
               Unsigned 8-bit integer
               Spare (shall be sent as 0)

           gtp.qos_spare3  Spare
               Unsigned 8-bit integer
               Spare (shall be sent as '000' )

           gtp.qos_traf_class  Traffic class
               Unsigned 8-bit integer
               Traffic Class

           gtp.qos_traf_handl_prio  Traffic handling priority
               Unsigned 8-bit integer
               Traffic Handling Priority

           gtp.qos_trans_delay  Transfer delay
               Unsigned 8-bit integer
               Transfer Delay

           gtp.qos_version  Version
               String
               Version of the QoS Profile

           gtp.rab_gtp_dn  Downlink GTP-U seq number
               Unsigned 16-bit integer
               Downlink GTP-U sequence number

           gtp.rab_gtp_up  Uplink GTP-U seq number
               Unsigned 16-bit integer
               Uplink GTP-U sequence number

           gtp.rab_pdu_dn  Downlink next PDCP-PDU seq number
               Unsigned 16-bit integer
               Downlink next PDCP-PDU sequence number

           gtp.rab_pdu_up  Uplink next PDCP-PDU seq number
               Unsigned 16-bit integer
               Uplink next PDCP-PDU sequence number

           gtp.rac  RAC
               Unsigned 8-bit integer
               Routing Area Code

           gtp.ranap_cause  RANAP cause
               Unsigned 8-bit integer
               RANAP cause

           gtp.recovery  Recovery
               Unsigned 8-bit integer
               Restart counter

           gtp.reorder  Reordering required
               Boolean
               Reordering required

           gtp.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
               Security Mode

           gtp.sel_mode  Selection mode
               Unsigned 8-bit integer
               Selection Mode

           gtp.seq_number  Sequence number
               Unsigned 16-bit integer
               Sequence Number

           gtp.sig_ind  Signalling Indication
               Boolean
               Signalling Indication

           gtp.sndcp_number  SNDCP N-PDU LLC Number
               Unsigned 8-bit integer
               SNDCP N-PDU LLC Number

           gtp.src_stat_desc  Source Statistics Descriptor
               Unsigned 8-bit integer
               Source Statistics Descriptor

           gtp.targetRNC_ID  targetRNC-ID
               No value

           gtp.tear_ind  Teardown Indicator
               Boolean
               Teardown Indicator

           gtp.teid  TEID
               Unsigned 32-bit integer
               Tunnel Endpoint Identifier

           gtp.teid_cp  TEID Control Plane
               Unsigned 32-bit integer
               Tunnel Endpoint Identifier Control Plane

           gtp.teid_data  TEID Data I
               Unsigned 32-bit integer
               Tunnel Endpoint Identifier Data I

           gtp.teid_ii  TEID Data II
               Unsigned 32-bit integer
               Tunnel Endpoint Identifier Data II

           gtp.tft_code  TFT operation code
               Unsigned 8-bit integer
               TFT operation code

           gtp.tft_eval  Evaluation precedence
               Unsigned 8-bit integer
               Evaluation precedence

           gtp.tft_number  Number of packet filters
               Unsigned 8-bit integer
               Number of packet filters

           gtp.tft_spare  TFT spare bit
               Unsigned 8-bit integer
               TFT spare bit

           gtp.tid  TID
               String
               Tunnel Identifier

           gtp.time  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
               Time to MBMS Data Transfer

           gtp.tlli  TLLI
               Unsigned 32-bit integer
               Temporary Logical Link Identity

           gtp.tr_comm  Packet transfer command
               Unsigned 8-bit integer
               Packat transfer command

           gtp.trace_ref  Trace reference
               Unsigned 16-bit integer
               Trace reference

           gtp.trace_type  Trace type
               Unsigned 16-bit integer
               Trace type

           gtp.ulink_teid_cp  Uplink TEID Control Plane
               Unsigned 32-bit integer
               Uplink Tunnel Endpoint Identifier Control Plane

           gtp.ulink_teid_data  Uplink TEID Data I
               Unsigned 32-bit integer
               UplinkTunnel Endpoint Identifier Data I

           gtp.unknown  Unknown data (length)
               Unsigned 16-bit integer
               Unknown data

           gtp.user_addr_pdp_org  PDP type organization
               Unsigned 8-bit integer
               PDP type organization

           gtp.user_addr_pdp_type  PDP type number
               Unsigned 8-bit integer
               PDP type

           gtp.user_ipv4  End user address IPv4
               IPv4 address
               End user address IPv4

           gtp.user_ipv6  End user address IPv6
               IPv6 address
               End user address IPv6

   GPRS Tunneling Protocol V2 (gtpv2)
           gtpv2.apn  APN
               String
               Access Point Name

           gtpv2.cause  Cause
               Unsigned 8-bit integer
               cause

           gtpv2.cng_rep_act  Change Reporting Action
               Unsigned 8-bit integer
               Change Reporting Action

           gtpv2.cr  CR flag
               Unsigned 8-bit integer
               CR flag

           gtpv2.daf  DAF (Dual Address Bearer Flag)
               Boolean
               DAF

           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
               EPS Bearer ID (EBI)

           gtpv2.flags  Flags
               Unsigned 8-bit integer
               Flags

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

           gtpv2.instance  Instance
               Unsigned 8-bit integer
               Instance

           gtpv2.israi  ISRAI (Idle mode Signalling Reduction Activation Indication)
               Boolean
               ISRAI

           gtpv2.isrsi  ISRSI (Idle mode Signalling Reduction Supported Indication)
               Boolean
               ISRSI

           gtpv2.message_type  Message Type
               Unsigned 8-bit integer
               Message Type

           gtpv2.msg_lengt  Message Length
               Unsigned 16-bit integer
               Message Length

           gtpv2.msv  MSV (MS Validated)
               Boolean
               MSV

           gtpv2.oi  OI (Operation Indication)
               Boolean
               OI

           gtpv2.pdn_ipv4  PDN IPv4
               IPv4 address
               PDN IPv4

           gtpv2.pdn_ipv6  PDN IPv6
               IPv6 address
               PDN IPv6

           gtpv2.pdn_ipv6_len  IPv6 Prefix Length
               Unsigned 8-bit integer
               IPv6 Prefix Length

           gtpv2.pdn_type  PDN Type
               Unsigned 8-bit integer
               PDN Type

           gtpv2.pt  PT (Protocol Type)
               Boolean
               PT

           gtpv2.rat_type  RAT Type
               Unsigned 8-bit integer
               RAT Type

           gtpv2.rec  Restart Counter
               Unsigned 8-bit integer
               Restart Counter

           gtpv2.seq  Sequence Number
               Unsigned 16-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
               Spare

           gtpv2.t  T
               Unsigned 8-bit integer
               If TEID field is present or not

           gtpv2.tdi  TDI (Teardown Indication)
               Boolean
               TDI

           gtpv2.teid  Tunnel Endpoint Identifier
               Unsigned 32-bit integer
               TEID

           gtpv2.uli_cgi_flg  CGI Present Flag)
               Boolean

           gtpv2.uli_ecgi_flg  ECGI Present Flag)
               Boolean

           gtpv2.uli_rai_flg  RAI Present Flag)
               Boolean

           gtpv2.uli_sai_flg  SAI Present Flag)
               Boolean

           gtpv2.uli_tai_flg  TAI Present Flag)
               Boolean

           gtpv2.version  Version
               Unsigned 8-bit integer
               Version

   GSM A-I/F BSSMAP (gsm_a_bssmap)
           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_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_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.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.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.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.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-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.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.egsmSupported  E-GSM or R-GSM Supported
               Unsigned 8-bit integer

           gsm_a.classmark3.ext_meas_cap  Extended Measurement Capability
               Unsigned 8-bit integer

           gsm_a.classmark3.gsm1800Supported  GSM 1800 Supported
               Unsigned 8-bit integer

           gsm_a.classmark3.ms_measurement_capability  MS measurement capability
               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.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.rsupport  R Support
               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.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.mbs_service_id  MBMS Service ID
               Byte array

           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  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.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_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.numbering_plan_id  Numbering plan identification
               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_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.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.sm  (SM_VALUE) Switch-Measure
               Unsigned 8-bit integer

           gsm_a.gm.sms  SMS_VALUE (Switch-Measure-Switch)
               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.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.sdu_err_rat  SDU error ratio
               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.tft.e_bit  E bit
               Boolean

           gsm_a.tft.ip4_address  IPv4 adress
               IPv4 address

           gsm_a.tft.ip4_mask  IPv4 address mask
               IPv4 address

           gsm_a.tft.ip6_address  IPv6 adress
               IPv6 address

           gsm_a.tft.ip6_mask  IPv6 adress mask
               IPv6 address

           gsm_a.tft.op_code  TFT operation code
               Unsigned 8-bit integer

           gsm_a.tft.pkt_flt  Number of packet filters
               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.HLR_Id

           gsm_map.PlmnContainer  PlmnContainer
               No value
               gsm_map.PlmnContainer

           gsm_map.PrivateExtension  PrivateExtension
               No value
               gsm_map.PrivateExtension

           gsm_map.accessNetworkProtocolId  accessNetworkProtocolId
               Unsigned 32-bit integer
               gsm_map.AccessNetworkProtocolId

           gsm_map.address.digits  Address digits
               String
               Address digits

           gsm_map.bearerService  bearerService
               Unsigned 8-bit integer
               gsm_map.BearerServiceCode

           gsm_map.cbs.cbs_coding_grp15_mess_code  Message coding
               Unsigned 8-bit integer
               Message coding

           gsm_map.cbs.coding_grp  Coding Group
               Unsigned 8-bit integer
               Coding Group

           gsm_map.cbs.coding_grp0_lang  Language
               Unsigned 8-bit integer
               Language

           gsm_map.cbs.coding_grp1_lang  Language
               Unsigned 8-bit integer
               Language

           gsm_map.cbs.coding_grp2_lang  Language
               Unsigned 8-bit integer
               Language

           gsm_map.cbs.coding_grp3_lang  Language
               Unsigned 8-bit integer
               Language

           gsm_map.cbs.coding_grp4_7_char_set  Character set being used
               Unsigned 8-bit integer
               Character set being used

           gsm_map.cbs.coding_grp4_7_class  Message Class
               Unsigned 8-bit integer
               Message Class

           gsm_map.cbs.coding_grp4_7_class_ind  Message Class present
               Boolean
               Message Class present

           gsm_map.cbs.coding_grp4_7_comp  Compressed indicator
               Boolean
               Compressed indicator

           gsm_map.cbs.gsm_map_cbs_coding_grp15_class  Message Class
               Unsigned 8-bit integer
               Message Class

           gsm_map.cellGlobalIdOrServiceAreaIdFixedLength  cellGlobalIdOrServiceAreaIdFixedLength
               Byte array
               gsm_map.CellGlobalIdOrServiceAreaIdFixedLength

           gsm_map.ch.additionalSignalInfo  additionalSignalInfo
               No value
               gsm_map.Ext_ExternalSignalInfo

           gsm_map.ch.alertingPattern  alertingPattern
               Byte array
               gsm_map.AlertingPattern

           gsm_map.ch.allInformationSent  allInformationSent
               No value
               gsm_map_ch.NULL

           gsm_map.ch.allowedServices  allowedServices
               Byte array
               gsm_map_ch.AllowedServices

           gsm_map.ch.basicService  basicService
               Unsigned 32-bit integer
               gsm_map.Ext_BasicServiceCode

           gsm_map.ch.basicService2  basicService2
               Unsigned 32-bit integer
               gsm_map.Ext_BasicServiceCode

           gsm_map.ch.basicServiceGroup  basicServiceGroup
               Unsigned 32-bit integer
               gsm_map.Ext_BasicServiceCode

           gsm_map.ch.basicServiceGroup2  basicServiceGroup2
               Unsigned 32-bit integer
               gsm_map.Ext_BasicServiceCode

           gsm_map.ch.callDiversionTreatmentIndicator  callDiversionTreatmentIndicator
               Byte array
               gsm_map_ch.CallDiversionTreatmentIndicator

           gsm_map.ch.callInfo  callInfo
               No value
               gsm_map.ExternalSignalInfo

           gsm_map.ch.callOutcome  callOutcome
               Unsigned 32-bit integer
               gsm_map_ch.CallOutcome

           gsm_map.ch.callPriority  callPriority
               Unsigned 32-bit integer
               gsm_map.EMLPP_Priority

           gsm_map.ch.callReferenceNumber  callReferenceNumber
               Byte array
               gsm_map_ch.CallReferenceNumber

           gsm_map.ch.callReportdata  callReportdata
               No value
               gsm_map_ch.CallReportData

           gsm_map.ch.callTerminationIndicator  callTerminationIndicator
               Unsigned 32-bit integer
               gsm_map_ch.CallTerminationIndicator

           gsm_map.ch.camelInfo  camelInfo
               No value
               gsm_map_ch.CamelInfo

           gsm_map.ch.camelRoutingInfo  camelRoutingInfo
               No value
               gsm_map_ch.CamelRoutingInfo

           gsm_map.ch.ccbs_Call  ccbs-Call
               No value
               gsm_map_ch.NULL

           gsm_map.ch.ccbs_Feature  ccbs-Feature
               No value
               gsm_map_ss.CCBS_Feature

           gsm_map.ch.ccbs_Indicators  ccbs-Indicators
               No value
               gsm_map_ch.CCBS_Indicators

           gsm_map.ch.ccbs_Monitoring  ccbs-Monitoring
               Unsigned 32-bit integer
               gsm_map_ch.ReportingState

           gsm_map.ch.ccbs_Possible  ccbs-Possible
               No value
               gsm_map_ch.NULL

           gsm_map.ch.ccbs_SubscriberStatus  ccbs-SubscriberStatus
               Unsigned 32-bit integer
               gsm_map_ch.CCBS_SubscriberStatus

           gsm_map.ch.cugSubscriptionFlag  cugSubscriptionFlag
               No value
               gsm_map_ch.NULL

           gsm_map.ch.cug_CheckInfo  cug-CheckInfo
               No value
               gsm_map_ch.CUG_CheckInfo

           gsm_map.ch.cug_Interlock  cug-Interlock
               Byte array
               gsm_map_ms.CUG_Interlock

           gsm_map.ch.cug_OutgoingAccess  cug-OutgoingAccess
               No value
               gsm_map_ch.NULL

           gsm_map.ch.d_csi  d-csi
               No value
               gsm_map_ms.D_CSI

           gsm_map.ch.eventReportData  eventReportData
               No value
               gsm_map_ch.EventReportData

           gsm_map.ch.extendedRoutingInfo  extendedRoutingInfo
               Unsigned 32-bit integer
               gsm_map_ch.ExtendedRoutingInfo

           gsm_map.ch.extensionContainer  extensionContainer
               No value
               gsm_map.ExtensionContainer

           gsm_map.ch.firstServiceAllowed  firstServiceAllowed
               Boolean

           gsm_map.ch.forwardedToNumber  forwardedToNumber
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ch.forwardedToSubaddress  forwardedToSubaddress
               Byte array
               gsm_map.ISDN_SubaddressString

           gsm_map.ch.forwardingData  forwardingData
               No value
               gsm_map_ch.ForwardingData

           gsm_map.ch.forwardingInterrogationRequired  forwardingInterrogationRequired
               No value
               gsm_map_ch.NULL

           gsm_map.ch.forwardingOptions  forwardingOptions
               Byte array
               gsm_map_ss.ForwardingOptions

           gsm_map.ch.forwardingReason  forwardingReason
               Unsigned 32-bit integer
               gsm_map_ch.ForwardingReason

           gsm_map.ch.gmscCamelSubscriptionInfo  gmscCamelSubscriptionInfo
               No value
               gsm_map_ch.GmscCamelSubscriptionInfo

           gsm_map.ch.gmsc_Address  gmsc-Address
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ch.gmsc_OrGsmSCF_Address  gmsc-OrGsmSCF-Address
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ch.gsmSCF_InitiatedCall  gsmSCF-InitiatedCall
               No value
               gsm_map_ch.NULL

           gsm_map.ch.gsm_BearerCapability  gsm-BearerCapability
               No value
               gsm_map.ExternalSignalInfo

           gsm_map.ch.imsi  imsi
               Byte array
               gsm_map.IMSI

           gsm_map.ch.interrogationType  interrogationType
               Unsigned 32-bit integer
               gsm_map_ch.InterrogationType

           gsm_map.ch.istAlertTimer  istAlertTimer
               Unsigned 32-bit integer
               gsm_map_ms.IST_AlertTimerValue

           gsm_map.ch.istInformationWithdraw  istInformationWithdraw
               No value
               gsm_map_ch.NULL

           gsm_map.ch.istSupportIndicator  istSupportIndicator
               Unsigned 32-bit integer
               gsm_map_ms.IST_SupportIndicator

           gsm_map.ch.keepCCBS_CallIndicator  keepCCBS-CallIndicator
               No value
               gsm_map_ch.NULL

           gsm_map.ch.lmsi  lmsi
               Byte array
               gsm_map.LMSI

           gsm_map.ch.longFTN_Supported  longFTN-Supported
               No value
               gsm_map_ch.NULL

           gsm_map.ch.longForwardedToNumber  longForwardedToNumber
               Byte array
               gsm_map.FTN_AddressString

           gsm_map.ch.monitoringMode  monitoringMode
               Unsigned 32-bit integer
               gsm_map_ch.MonitoringMode

           gsm_map.ch.msc_Number  msc-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ch.msisdn  msisdn
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ch.msrn  msrn
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ch.mtRoamingRetry  mtRoamingRetry
               No value
               gsm_map_ch.NULL

           gsm_map.ch.mtRoamingRetrySupported  mtRoamingRetrySupported
               No value
               gsm_map_ch.NULL

           gsm_map.ch.naea_PreferredCI  naea-PreferredCI
               No value
               gsm_map.NAEA_PreferredCI

           gsm_map.ch.networkSignalInfo  networkSignalInfo
               No value
               gsm_map.ExternalSignalInfo

           gsm_map.ch.networkSignalInfo2  networkSignalInfo2
               No value
               gsm_map.ExternalSignalInfo

           gsm_map.ch.numberOfForwarding  numberOfForwarding
               Unsigned 32-bit integer
               gsm_map_ch.NumberOfForwarding

           gsm_map.ch.numberPortabilityStatus  numberPortabilityStatus
               Unsigned 32-bit integer
               gsm_map_ms.NumberPortabilityStatus

           gsm_map.ch.o_BcsmCamelTDPCriteriaList  o-BcsmCamelTDPCriteriaList
               Unsigned 32-bit integer
               gsm_map_ms.O_BcsmCamelTDPCriteriaList

           gsm_map.ch.o_BcsmCamelTDP_CriteriaList  o-BcsmCamelTDP-CriteriaList
               Unsigned 32-bit integer
               gsm_map_ms.O_BcsmCamelTDPCriteriaList

           gsm_map.ch.o_CSI  o-CSI
               No value
               gsm_map_ms.O_CSI

           gsm_map.ch.offeredCamel4CSIs  offeredCamel4CSIs
               Byte array
               gsm_map_ms.OfferedCamel4CSIs

           gsm_map.ch.offeredCamel4CSIsInInterrogatingNode  offeredCamel4CSIsInInterrogatingNode
               Byte array
               gsm_map_ms.OfferedCamel4CSIs

           gsm_map.ch.offeredCamel4CSIsInVMSC  offeredCamel4CSIsInVMSC
               Byte array
               gsm_map_ms.OfferedCamel4CSIs

           gsm_map.ch.orNotSupportedInGMSC  orNotSupportedInGMSC
               No value
               gsm_map_ch.NULL

           gsm_map.ch.or_Capability  or-Capability
               Unsigned 32-bit integer
               gsm_map_ch.OR_Phase

           gsm_map.ch.or_Interrogation  or-Interrogation
               No value
               gsm_map_ch.NULL

           gsm_map.ch.pagingArea  pagingArea
               Unsigned 32-bit integer
               gsm_map_ms.PagingArea

           gsm_map.ch.pre_pagingSupported  pre-pagingSupported
               No value
               gsm_map_ch.NULL

           gsm_map.ch.releaseResourcesSupported  releaseResourcesSupported
               No value
               gsm_map_ch.NULL

           gsm_map.ch.replaceB_Number  replaceB-Number
               No value
               gsm_map_ch.NULL

           gsm_map.ch.roamingNumber  roamingNumber
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ch.routingInfo  routingInfo
               Unsigned 32-bit integer
               gsm_map_ch.RoutingInfo

           gsm_map.ch.routingInfo2  routingInfo2
               Unsigned 32-bit integer
               gsm_map_ch.RoutingInfo

           gsm_map.ch.ruf_Outcome  ruf-Outcome
               Unsigned 32-bit integer
               gsm_map_ch.RUF_Outcome

           gsm_map.ch.secondServiceAllowed  secondServiceAllowed
               Boolean

           gsm_map.ch.ss_List  ss-List
               Unsigned 32-bit integer
               gsm_map_ss.SS_List

           gsm_map.ch.ss_List2  ss-List2
               Unsigned 32-bit integer
               gsm_map_ss.SS_List

           gsm_map.ch.subscriberInfo  subscriberInfo
               No value
               gsm_map_ms.SubscriberInfo

           gsm_map.ch.supportedCCBS_Phase  supportedCCBS-Phase
               Unsigned 32-bit integer
               gsm_map_ch.SupportedCCBS_Phase

           gsm_map.ch.supportedCamelPhases  supportedCamelPhases
               Byte array
               gsm_map_ms.SupportedCamelPhases

           gsm_map.ch.supportedCamelPhasesInInterrogatingNode  supportedCamelPhasesInInterrogatingNode
               Byte array
               gsm_map_ms.SupportedCamelPhases

           gsm_map.ch.supportedCamelPhasesInVMSC  supportedCamelPhasesInVMSC
               Byte array
               gsm_map_ms.SupportedCamelPhases

           gsm_map.ch.suppressCCBS  suppressCCBS
               Boolean

           gsm_map.ch.suppressCUG  suppressCUG
               Boolean

           gsm_map.ch.suppressIncomingCallBarring  suppressIncomingCallBarring
               No value
               gsm_map_ch.NULL

           gsm_map.ch.suppressMTSS  suppressMTSS
               Byte array
               gsm_map_ch.SuppressMTSS

           gsm_map.ch.suppress_T_CSI  suppress-T-CSI
               No value
               gsm_map_ch.NULL

           gsm_map.ch.suppress_VT_CSI  suppress-VT-CSI
               No value
               gsm_map_ch.NULL

           gsm_map.ch.suppressionOfAnnouncement  suppressionOfAnnouncement
               No value
               gsm_map_ch.SuppressionOfAnnouncement

           gsm_map.ch.t_BCSM_CAMEL_TDP_CriteriaList  t-BCSM-CAMEL-TDP-CriteriaList
               Unsigned 32-bit integer
               gsm_map_ms.T_BCSM_CAMEL_TDP_CriteriaList

           gsm_map.ch.t_CSI  t-CSI
               No value
               gsm_map_ms.T_CSI

           gsm_map.ch.translatedB_Number  translatedB-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ch.unavailabilityCause  unavailabilityCause
               Unsigned 32-bit integer
               gsm_map_ch.UnavailabilityCause

           gsm_map.ch.uuIndicator  uuIndicator
               Byte array
               gsm_map_ch.UUIndicator

           gsm_map.ch.uu_Data  uu-Data
               No value
               gsm_map_ch.UU_Data

           gsm_map.ch.uui  uui
               Byte array
               gsm_map_ch.UUI

           gsm_map.ch.uusCFInteraction  uusCFInteraction
               No value
               gsm_map_ch.NULL

           gsm_map.ch.vmsc_Address  vmsc-Address
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.currentPassword  currentPassword
               String

           gsm_map.defaultPriority  defaultPriority
               Unsigned 32-bit integer
               gsm_map.EMLPP_Priority

           gsm_map.dialogue.MAP_DialoguePDU  MAP-DialoguePDU
               Unsigned 32-bit integer
               gsm_map_dialogue.MAP_DialoguePDU

           gsm_map.dialogue.alternativeApplicationContext  alternativeApplicationContext
               Object Identifier
               gsm_map_dialogue.OBJECT_IDENTIFIER

           gsm_map.dialogue.applicationProcedureCancellation  applicationProcedureCancellation
               Unsigned 32-bit integer
               gsm_map_dialogue.ProcedureCancellationReason

           gsm_map.dialogue.destinationReference  destinationReference
               Byte array
               gsm_map.AddressString

           gsm_map.dialogue.extensionContainer  extensionContainer
               No value
               gsm_map.ExtensionContainer

           gsm_map.dialogue.map_ProviderAbortReason  map-ProviderAbortReason
               Unsigned 32-bit integer
               gsm_map_dialogue.MAP_ProviderAbortReason

           gsm_map.dialogue.map_UserAbortChoice  map-UserAbortChoice
               Unsigned 32-bit integer
               gsm_map_dialogue.MAP_UserAbortChoice

           gsm_map.dialogue.map_accept  map-accept
               No value
               gsm_map_dialogue.MAP_AcceptInfo

           gsm_map.dialogue.map_close  map-close
               No value
               gsm_map_dialogue.MAP_CloseInfo

           gsm_map.dialogue.map_open  map-open
               No value
               gsm_map_dialogue.MAP_OpenInfo

           gsm_map.dialogue.map_providerAbort  map-providerAbort
               No value
               gsm_map_dialogue.MAP_ProviderAbortInfo

           gsm_map.dialogue.map_refuse  map-refuse
               No value
               gsm_map_dialogue.MAP_RefuseInfo

           gsm_map.dialogue.map_userAbort  map-userAbort
               No value
               gsm_map_dialogue.MAP_UserAbortInfo

           gsm_map.dialogue.originationReference  originationReference
               Byte array
               gsm_map.AddressString

           gsm_map.dialogue.reason  reason
               Unsigned 32-bit integer
               gsm_map_dialogue.Reason

           gsm_map.dialogue.resourceUnavailable  resourceUnavailable
               Unsigned 32-bit integer
               gsm_map_dialogue.ResourceUnavailableReason

           gsm_map.dialogue.userResourceLimitation  userResourceLimitation
               No value
               gsm_map_dialogue.NULL

           gsm_map.dialogue.userSpecificReason  userSpecificReason
               No value
               gsm_map_dialogue.NULL

           gsm_map.disc_par  Discrimination parameter
               Unsigned 8-bit integer
               Discrimination parameter

           gsm_map.er.absentSubscriberDiagnosticSM  absentSubscriberDiagnosticSM
               Unsigned 32-bit integer
               gsm_map_er.AbsentSubscriberDiagnosticSM

           gsm_map.er.absentSubscriberReason  absentSubscriberReason
               Unsigned 32-bit integer
               gsm_map_er.AbsentSubscriberReason

           gsm_map.er.additionalAbsentSubscriberDiagnosticSM  additionalAbsentSubscriberDiagnosticSM
               Unsigned 32-bit integer
               gsm_map_er.AbsentSubscriberDiagnosticSM

           gsm_map.er.additionalNetworkResource  additionalNetworkResource
               Unsigned 32-bit integer
               gsm_map.AdditionalNetworkResource

           gsm_map.er.additionalRoamingNotAllowedCause  additionalRoamingNotAllowedCause
               Unsigned 32-bit integer
               gsm_map_er.AdditionalRoamingNotAllowedCause

           gsm_map.er.basicService  basicService
               Unsigned 32-bit integer
               gsm_map.BasicServiceCode

           gsm_map.er.callBarringCause  callBarringCause
               Unsigned 32-bit integer
               gsm_map_er.CallBarringCause

           gsm_map.er.ccbs_Busy  ccbs-Busy
               No value
               gsm_map_er.NULL

           gsm_map.er.ccbs_Possible  ccbs-Possible
               No value
               gsm_map_er.NULL

           gsm_map.er.cug_RejectCause  cug-RejectCause
               Unsigned 32-bit integer
               gsm_map_er.CUG_RejectCause

           gsm_map.er.diagnosticInfo  diagnosticInfo
               Byte array
               gsm_map.SignalInfo

           gsm_map.er.extensibleCallBarredParam  extensibleCallBarredParam
               No value
               gsm_map_er.ExtensibleCallBarredParam

           gsm_map.er.extensibleSystemFailureParam  extensibleSystemFailureParam
               No value
               gsm_map_er.ExtensibleSystemFailureParam

           gsm_map.er.extensionContainer  extensionContainer
               No value
               gsm_map.ExtensionContainer

           gsm_map.er.failureCauseParam  failureCauseParam
               Unsigned 32-bit integer
               gsm_map_er.FailureCauseParam

           gsm_map.er.gprsConnectionSuspended  gprsConnectionSuspended
               No value
               gsm_map_er.NULL

           gsm_map.er.neededLcsCapabilityNotSupportedInServingNode  neededLcsCapabilityNotSupportedInServingNode
               No value
               gsm_map_er.NULL

           gsm_map.er.networkResource  networkResource
               Unsigned 32-bit integer
               gsm_map.NetworkResource

           gsm_map.er.positionMethodFailure_Diagnostic  positionMethodFailure-Diagnostic
               Unsigned 32-bit integer
               gsm_map_er.PositionMethodFailure_Diagnostic

           gsm_map.er.roamingNotAllowedCause  roamingNotAllowedCause
               Unsigned 32-bit integer
               gsm_map_er.RoamingNotAllowedCause

           gsm_map.er.shapeOfLocationEstimateNotSupported  shapeOfLocationEstimateNotSupported
               No value
               gsm_map_er.NULL

           gsm_map.er.sm_EnumeratedDeliveryFailureCause  sm-EnumeratedDeliveryFailureCause
               Unsigned 32-bit integer
               gsm_map_er.SM_EnumeratedDeliveryFailureCause

           gsm_map.er.ss_Code  ss-Code
               Unsigned 8-bit integer
               gsm_map.SS_Code

           gsm_map.er.ss_Status  ss-Status
               Byte array
               gsm_map_ss.SS_Status

           gsm_map.er.unauthorisedMessageOriginator  unauthorisedMessageOriginator
               No value
               gsm_map_er.NULL

           gsm_map.er.unauthorizedLCSClient_Diagnostic  unauthorizedLCSClient-Diagnostic
               Unsigned 32-bit integer
               gsm_map_er.UnauthorizedLCSClient_Diagnostic

           gsm_map.er.unknownSubscriberDiagnostic  unknownSubscriberDiagnostic
               Unsigned 32-bit integer
               gsm_map_er.UnknownSubscriberDiagnostic

           gsm_map.extId  extId
               Object Identifier
               gsm_map.T_extId

           gsm_map.extType  extType
               No value
               gsm_map.T_extType

           gsm_map.ext_BearerService  ext-BearerService
               Unsigned 8-bit integer
               gsm_map.Ext_BearerServiceCode

           gsm_map.ext_ProtocolId  ext-ProtocolId
               Unsigned 32-bit integer
               gsm_map.Ext_ProtocolId

           gsm_map.ext_Teleservice  ext-Teleservice
               Unsigned 8-bit integer
               gsm_map.Ext_TeleserviceCode

           gsm_map.ext_qos_subscribed_pri  Allocation/Retention priority
               Unsigned 8-bit integer
               Allocation/Retention priority

           gsm_map.extension  Extension
               Boolean
               Extension

           gsm_map.extensionContainer  extensionContainer
               No value
               gsm_map.ExtensionContainer

           gsm_map.externalAddress  externalAddress
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.forwarding_reason  Forwarding reason
               Unsigned 8-bit integer
               forwarding reason

           gsm_map.getPassword  getPassword
               Unsigned 8-bit integer
               getPassword

           gsm_map.gr.additionalInfo  additionalInfo
               Byte array
               gsm_map_ms.AdditionalInfo

           gsm_map.gr.additionalSubscriptions  additionalSubscriptions
               Byte array
               gsm_map_ms.AdditionalSubscriptions

           gsm_map.gr.an_APDU  an-APDU
               No value
               gsm_map.AccessNetworkSignalInfo

           gsm_map.gr.anchorMSC_Address  anchorMSC-Address
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.gr.asciCallReference  asciCallReference
               Byte array
               gsm_map.ASCI_CallReference

           gsm_map.gr.callOriginator  callOriginator
               No value
               gsm_map_gr.NULL

           gsm_map.gr.cellId  cellId
               Byte array
               gsm_map.GlobalCellId

           gsm_map.gr.cipheringAlgorithm  cipheringAlgorithm
               Byte array
               gsm_map_gr.CipheringAlgorithm

           gsm_map.gr.cksn  cksn
               Byte array
               gsm_map_ms.Cksn

           gsm_map.gr.codec_Info  codec-Info
               Byte array
               gsm_map_gr.CODEC_Info

           gsm_map.gr.downlinkAttached  downlinkAttached
               No value
               gsm_map_gr.NULL

           gsm_map.gr.dualCommunication  dualCommunication
               No value
               gsm_map_gr.NULL

           gsm_map.gr.emergencyModeResetCommandFlag  emergencyModeResetCommandFlag
               No value
               gsm_map_gr.NULL

           gsm_map.gr.extensionContainer  extensionContainer
               No value
               gsm_map.ExtensionContainer

           gsm_map.gr.groupCallNumber  groupCallNumber
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.gr.groupId  groupId
               Byte array
               gsm_map_ms.Long_GroupId

           gsm_map.gr.groupKey  groupKey
               Byte array
               gsm_map_ms.Kc

           gsm_map.gr.groupKeyNumber_Vk_Id  groupKeyNumber-Vk-Id
               Unsigned 32-bit integer
               gsm_map_gr.GroupKeyNumber

           gsm_map.gr.imsi  imsi
               Byte array
               gsm_map.IMSI

           gsm_map.gr.kc  kc
               Byte array
               gsm_map_ms.Kc

           gsm_map.gr.priority  priority
               Unsigned 32-bit integer
               gsm_map.EMLPP_Priority

           gsm_map.gr.releaseGroupCall  releaseGroupCall
               No value
               gsm_map_gr.NULL

           gsm_map.gr.requestedInfo  requestedInfo
               Unsigned 32-bit integer
               gsm_map_gr.RequestedInfo

           gsm_map.gr.sm_RP_UI  sm-RP-UI
               Byte array
               gsm_map.SignalInfo

           gsm_map.gr.stateAttributes  stateAttributes
               No value
               gsm_map_gr.StateAttributes

           gsm_map.gr.talkerChannelParameter  talkerChannelParameter
               No value
               gsm_map_gr.NULL

           gsm_map.gr.talkerPriority  talkerPriority
               Unsigned 32-bit integer
               gsm_map_gr.TalkerPriority

           gsm_map.gr.teleservice  teleservice
               Unsigned 8-bit integer
               gsm_map.Ext_TeleserviceCode

           gsm_map.gr.tmsi  tmsi
               Byte array
               gsm_map.TMSI

           gsm_map.gr.uplinkAttached  uplinkAttached
               No value
               gsm_map_gr.NULL

           gsm_map.gr.uplinkFree  uplinkFree
               No value
               gsm_map_gr.NULL

           gsm_map.gr.uplinkRejectCommand  uplinkRejectCommand
               No value
               gsm_map_gr.NULL

           gsm_map.gr.uplinkReleaseCommand  uplinkReleaseCommand
               No value
               gsm_map_gr.NULL

           gsm_map.gr.uplinkReleaseIndication  uplinkReleaseIndication
               No value
               gsm_map_gr.NULL

           gsm_map.gr.uplinkRequest  uplinkRequest
               No value
               gsm_map_gr.NULL

           gsm_map.gr.uplinkRequestAck  uplinkRequestAck
               No value
               gsm_map_gr.NULL

           gsm_map.gr.uplinkSeizedCommand  uplinkSeizedCommand
               No value
               gsm_map_gr.NULL

           gsm_map.gr.vstk  vstk
               Byte array
               gsm_map_gr.VSTK

           gsm_map.gr.vstk_rand  vstk-rand
               Byte array
               gsm_map_gr.VSTK_RAND

           gsm_map.gsnaddress_ipv4  GSN-Address IPv4
               IPv4 address
               IPAddress IPv4

           gsm_map.gsnaddress_ipv6  GSN Address IPv6
               IPv4 address
               IPAddress IPv6

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

           gsm_map.imsi_WithLMSI  imsi-WithLMSI
               No value
               gsm_map.IMSI_WithLMSI

           gsm_map.imsi_digits  IMSI digits
               String
               IMSI digits

           gsm_map.isdn.address.digits  ISDN Address digits
               String
               ISDN Address digits

           gsm_map.laiFixedLength  laiFixedLength
               Byte array
               gsm_map.LAIFixedLength

           gsm_map.lcs.Area  Area
               No value
               gsm_map_lcs.Area

           gsm_map.lcs.LCS_ClientID  LCS-ClientID
               No value
               gsm_map_lcs.LCS_ClientID

           gsm_map.lcs.ReportingPLMN  ReportingPLMN
               No value
               gsm_map_lcs.ReportingPLMN

           gsm_map.lcs.accuracyFulfilmentIndicator  accuracyFulfilmentIndicator
               Unsigned 32-bit integer
               gsm_map_lcs.AccuracyFulfilmentIndicator

           gsm_map.lcs.add_LocationEstimate  add-LocationEstimate
               Byte array
               gsm_map_lcs.Add_GeographicalInformation

           gsm_map.lcs.additional_LCS_CapabilitySets  additional-LCS-CapabilitySets
               Byte array
               gsm_map_ms.SupportedLCS_CapabilitySets

           gsm_map.lcs.additional_Number  additional-Number
               Unsigned 32-bit integer
               gsm_map_sm.Additional_Number

           gsm_map.lcs.additional_v_gmlc_Address  additional-v-gmlc-Address
               Byte array
               gsm_map_ms.GSN_Address

           gsm_map.lcs.ageOfLocationEstimate  ageOfLocationEstimate
               Unsigned 32-bit integer
               gsm_map.AgeOfLocationInformation

           gsm_map.lcs.areaDefinition  areaDefinition
               No value
               gsm_map_lcs.AreaDefinition

           gsm_map.lcs.areaEventInfo  areaEventInfo
               No value
               gsm_map_lcs.AreaEventInfo

           gsm_map.lcs.areaIdentification  areaIdentification
               Byte array
               gsm_map_lcs.AreaIdentification

           gsm_map.lcs.areaList  areaList
               Unsigned 32-bit integer
               gsm_map_lcs.AreaList

           gsm_map.lcs.areaType  areaType
               Unsigned 32-bit integer
               gsm_map_lcs.AreaType

           gsm_map.lcs.beingInsideArea  beingInsideArea
               Boolean

           gsm_map.lcs.callSessionRelated  callSessionRelated
               Unsigned 32-bit integer
               gsm_map_lcs.PrivacyCheckRelatedAction

           gsm_map.lcs.callSessionUnrelated  callSessionUnrelated
               Unsigned 32-bit integer
               gsm_map_lcs.PrivacyCheckRelatedAction

           gsm_map.lcs.cellIdOrSai  cellIdOrSai
               Unsigned 32-bit integer
               gsm_map.CellGlobalIdOrServiceAreaIdOrLAI

           gsm_map.lcs.dataCodingScheme  dataCodingScheme
               Byte array
               gsm_map_ss.USSD_DataCodingScheme

           gsm_map.lcs.deferredLocationEventType  deferredLocationEventType
               Byte array
               gsm_map_lcs.DeferredLocationEventType

           gsm_map.lcs.deferredmt_lrData  deferredmt-lrData
               No value
               gsm_map_lcs.Deferredmt_lrData

           gsm_map.lcs.deferredmt_lrResponseIndicator  deferredmt-lrResponseIndicator
               No value
               gsm_map_lcs.NULL

           gsm_map.lcs.ellipsoidArc  ellipsoidArc
               Boolean

           gsm_map.lcs.ellipsoidPoint  ellipsoidPoint
               Boolean

           gsm_map.lcs.ellipsoidPointWithAltitude  ellipsoidPointWithAltitude
               Boolean

           gsm_map.lcs.ellipsoidPointWithAltitudeAndUncertaintyElipsoid  ellipsoidPointWithAltitudeAndUncertaintyElipsoid
               Boolean

           gsm_map.lcs.ellipsoidPointWithUncertaintyCircle  ellipsoidPointWithUncertaintyCircle
               Boolean

           gsm_map.lcs.ellipsoidPointWithUncertaintyEllipse  ellipsoidPointWithUncertaintyEllipse
               Boolean

           gsm_map.lcs.enteringIntoArea  enteringIntoArea
               Boolean

           gsm_map.lcs.extensionContainer  extensionContainer
               No value
               gsm_map.ExtensionContainer

           gsm_map.lcs.geranPositioningData  geranPositioningData
               Byte array
               gsm_map_lcs.PositioningDataInformation

           gsm_map.lcs.gprsNodeIndicator  gprsNodeIndicator
               No value
               gsm_map_lcs.NULL

           gsm_map.lcs.h_gmlc_Address  h-gmlc-Address
               Byte array
               gsm_map_ms.GSN_Address

           gsm_map.lcs.horizontal_accuracy  horizontal-accuracy
               Byte array
               gsm_map_lcs.Horizontal_Accuracy

           gsm_map.lcs.imei  imei
               Byte array
               gsm_map.IMEI

           gsm_map.lcs.imsi  imsi
               Byte array
               gsm_map.IMSI

           gsm_map.lcs.intervalTime  intervalTime
               Unsigned 32-bit integer
               gsm_map_lcs.IntervalTime

           gsm_map.lcs.lcsAPN  lcsAPN
               Byte array
               gsm_map_ms.APN

           gsm_map.lcs.lcsClientDialedByMS  lcsClientDialedByMS
               Byte array
               gsm_map.AddressString

           gsm_map.lcs.lcsClientExternalID  lcsClientExternalID
               No value
               gsm_map.LCSClientExternalID

           gsm_map.lcs.lcsClientInternalID  lcsClientInternalID
               Unsigned 32-bit integer
               gsm_map.LCSClientInternalID

           gsm_map.lcs.lcsClientName  lcsClientName
               No value
               gsm_map_lcs.LCSClientName

           gsm_map.lcs.lcsClientType  lcsClientType
               Unsigned 32-bit integer
               gsm_map_lcs.LCSClientType

           gsm_map.lcs.lcsCodeword  lcsCodeword
               No value
               gsm_map_lcs.LCSCodeword

           gsm_map.lcs.lcsCodewordString  lcsCodewordString
               Byte array
               gsm_map_lcs.LCSCodewordString

           gsm_map.lcs.lcsLocationInfo  lcsLocationInfo
               No value
               gsm_map_lcs.LCSLocationInfo

           gsm_map.lcs.lcsRequestorID  lcsRequestorID
               No value
               gsm_map_lcs.LCSRequestorID

           gsm_map.lcs.lcsServiceTypeID  lcsServiceTypeID
               Unsigned 32-bit integer
               gsm_map.LCSServiceTypeID

           gsm_map.lcs.lcs_ClientID  lcs-ClientID
               No value
               gsm_map_lcs.LCS_ClientID

           gsm_map.lcs.lcs_Event  lcs-Event
               Unsigned 32-bit integer
               gsm_map_lcs.LCS_Event

           gsm_map.lcs.lcs_FormatIndicator  lcs-FormatIndicator
               Unsigned 32-bit integer
               gsm_map_lcs.LCS_FormatIndicator

           gsm_map.lcs.lcs_Priority  lcs-Priority
               Byte array
               gsm_map_lcs.LCS_Priority

           gsm_map.lcs.lcs_PrivacyCheck  lcs-PrivacyCheck
               No value
               gsm_map_lcs.LCS_PrivacyCheck

           gsm_map.lcs.lcs_QoS  lcs-QoS
               No value
               gsm_map_lcs.LCS_QoS

           gsm_map.lcs.lcs_ReferenceNumber  lcs-ReferenceNumber
               Byte array
               gsm_map_lcs.LCS_ReferenceNumber

           gsm_map.lcs.leavingFromArea  leavingFromArea
               Boolean

           gsm_map.lcs.lmsi  lmsi
               Byte array
               gsm_map.LMSI

           gsm_map.lcs.locationEstimate  locationEstimate
               Byte array
               gsm_map_lcs.Ext_GeographicalInformation

           gsm_map.lcs.locationEstimateType  locationEstimateType
               Unsigned 32-bit integer
               gsm_map_lcs.LocationEstimateType

           gsm_map.lcs.locationType  locationType
               No value
               gsm_map_lcs.LocationType

           gsm_map.lcs.mlcNumber  mlcNumber
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.lcs.mlc_Number  mlc-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.lcs.mo_lrShortCircuitIndicator  mo-lrShortCircuitIndicator
               No value
               gsm_map_lcs.NULL

           gsm_map.lcs.msAvailable  msAvailable
               Boolean

           gsm_map.lcs.msisdn  msisdn
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.lcs.na_ESRD  na-ESRD
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.lcs.na_ESRK  na-ESRK
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.lcs.nameString  nameString
               Byte array
               gsm_map_lcs.NameString

           gsm_map.lcs.networkNode_Number  networkNode-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.lcs.occurrenceInfo  occurrenceInfo
               Unsigned 32-bit integer
               gsm_map_lcs.OccurrenceInfo

           gsm_map.lcs.periodicLDR  periodicLDR
               Boolean

           gsm_map.lcs.periodicLDRInfo  periodicLDRInfo
               No value
               gsm_map_lcs.PeriodicLDRInfo

           gsm_map.lcs.plmn_Id  plmn-Id
               Byte array
               gsm_map.PLMN_Id

           gsm_map.lcs.plmn_List  plmn-List
               Unsigned 32-bit integer
               gsm_map_lcs.PLMNList

           gsm_map.lcs.plmn_ListPrioritized  plmn-ListPrioritized
               No value
               gsm_map_lcs.NULL

           gsm_map.lcs.polygon  polygon
               Boolean

           gsm_map.lcs.ppr_Address  ppr-Address
               Byte array
               gsm_map_ms.GSN_Address

           gsm_map.lcs.privacyOverride  privacyOverride
               No value
               gsm_map_lcs.NULL

           gsm_map.lcs.pseudonymIndicator  pseudonymIndicator
               No value
               gsm_map_lcs.NULL

           gsm_map.lcs.ran_PeriodicLocationSupport  ran-PeriodicLocationSupport
               No value
               gsm_map_lcs.NULL

           gsm_map.lcs.ran_Technology  ran-Technology
               Unsigned 32-bit integer
               gsm_map_lcs.RAN_Technology

           gsm_map.lcs.reportingAmount  reportingAmount
               Unsigned 32-bit integer
               gsm_map_lcs.ReportingAmount

           gsm_map.lcs.reportingInterval  reportingInterval
               Unsigned 32-bit integer
               gsm_map_lcs.ReportingInterval

           gsm_map.lcs.reportingPLMNList  reportingPLMNList
               No value
               gsm_map_lcs.ReportingPLMNList

           gsm_map.lcs.requestorIDString  requestorIDString
               Byte array
               gsm_map_lcs.RequestorIDString

           gsm_map.lcs.responseTime  responseTime
               No value
               gsm_map_lcs.ResponseTime

           gsm_map.lcs.responseTimeCategory  responseTimeCategory
               Unsigned 32-bit integer
               gsm_map_lcs.ResponseTimeCategory

           gsm_map.lcs.sai_Present  sai-Present
               No value
               gsm_map_lcs.NULL

           gsm_map.lcs.sequenceNumber  sequenceNumber
               Unsigned 32-bit integer
               gsm_map_lcs.SequenceNumber

           gsm_map.lcs.slr_ArgExtensionContainer  slr-ArgExtensionContainer
               No value
               gsm_map.SLR_ArgExtensionContainer

           gsm_map.lcs.supportedGADShapes  supportedGADShapes
               Byte array
               gsm_map_lcs.SupportedGADShapes

           gsm_map.lcs.supportedLCS_CapabilitySets  supportedLCS-CapabilitySets
               Byte array
               gsm_map_ms.SupportedLCS_CapabilitySets

           gsm_map.lcs.targetMS  targetMS
               Unsigned 32-bit integer
               gsm_map.SubscriberIdentity

           gsm_map.lcs.terminationCause  terminationCause
               Unsigned 32-bit integer
               gsm_map_lcs.TerminationCause

           gsm_map.lcs.utranPositioningData  utranPositioningData
               Byte array
               gsm_map_lcs.UtranPositioningDataInfo

           gsm_map.lcs.v_gmlc_Address  v-gmlc-Address
               Byte array
               gsm_map_ms.GSN_Address

           gsm_map.lcs.velocityEstimate  velocityEstimate
               Byte array
               gsm_map_lcs.VelocityEstimate

           gsm_map.lcs.velocityRequest  velocityRequest
               No value
               gsm_map_lcs.NULL

           gsm_map.lcs.verticalCoordinateRequest  verticalCoordinateRequest
               No value
               gsm_map_lcs.NULL

           gsm_map.lcs.vertical_accuracy  vertical-accuracy
               Byte array
               gsm_map_lcs.Vertical_Accuracy

           gsm_map.length  Length
               Unsigned 8-bit integer
               Length

           gsm_map.lmsi  lmsi
               Byte array
               gsm_map.LMSI

           gsm_map.maximumentitledPriority  maximumentitledPriority
               Unsigned 32-bit integer
               gsm_map.EMLPP_Priority

           gsm_map.ms.APN_Configuration  APN-Configuration
               No value
               gsm_map_ms.APN_Configuration

           gsm_map.ms.AuthenticationQuintuplet  AuthenticationQuintuplet
               No value
               gsm_map_ms.AuthenticationQuintuplet

           gsm_map.ms.AuthenticationTriplet  AuthenticationTriplet
               No value
               gsm_map_ms.AuthenticationTriplet

           gsm_map.ms.BSSMAP_ServiceHandoverInfo  BSSMAP-ServiceHandoverInfo
               No value
               gsm_map_ms.BSSMAP_ServiceHandoverInfo

           gsm_map.ms.CSG_SubscriptionData  CSG-SubscriptionData
               No value
               gsm_map_ms.CSG_SubscriptionData

           gsm_map.ms.CUG_Feature  CUG-Feature
               No value
               gsm_map_ms.CUG_Feature

           gsm_map.ms.CUG_Subscription  CUG-Subscription
               No value
               gsm_map_ms.CUG_Subscription

           gsm_map.ms.CauseValue  CauseValue
               Byte array
               gsm_map_ms.CauseValue

           gsm_map.ms.ContextId  ContextId
               Unsigned 32-bit integer
               gsm_map_ms.ContextId

           gsm_map.ms.DP_AnalysedInfoCriterium  DP-AnalysedInfoCriterium
               No value
               gsm_map_ms.DP_AnalysedInfoCriterium

           gsm_map.ms.DestinationNumberLengthList_item  DestinationNumberLengthList item
               Unsigned 32-bit integer
               gsm_map_ms.INTEGER_1_maxNumOfISDN_AddressDigits

           gsm_map.ms.EPC_AV  EPC-AV
               No value
               gsm_map_ms.EPC_AV

           gsm_map.ms.Ext_BasicServiceCode  Ext-BasicServiceCode
               Unsigned 32-bit integer
               gsm_map.Ext_BasicServiceCode

           gsm_map.ms.Ext_BearerServiceCode  Ext-BearerServiceCode
               Unsigned 8-bit integer
               gsm_map.Ext_BearerServiceCode

           gsm_map.ms.Ext_CallBarringFeature  Ext-CallBarringFeature
               No value
               gsm_map_ms.Ext_CallBarringFeature

           gsm_map.ms.Ext_ForwFeature  Ext-ForwFeature
               No value
               gsm_map_ms.Ext_ForwFeature

           gsm_map.ms.Ext_SS_Info  Ext-SS-Info
               Unsigned 32-bit integer
               gsm_map_ms.Ext_SS_Info

           gsm_map.ms.Ext_TeleserviceCode  Ext-TeleserviceCode
               Unsigned 8-bit integer
               gsm_map.Ext_TeleserviceCode

           gsm_map.ms.ExternalClient  ExternalClient
               No value
               gsm_map_ms.ExternalClient

           gsm_map.ms.GPRS_CamelTDPData  GPRS-CamelTDPData
               No value
               gsm_map_ms.GPRS_CamelTDPData

           gsm_map.ms.ISDN_AddressString  ISDN-AddressString
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ms.LCSClientInternalID  LCSClientInternalID
               Unsigned 32-bit integer
               gsm_map.LCSClientInternalID

           gsm_map.ms.LCS_PrivacyClass  LCS-PrivacyClass
               No value
               gsm_map_ms.LCS_PrivacyClass

           gsm_map.ms.LSAData  LSAData
               No value
               gsm_map_ms.LSAData

           gsm_map.ms.LSAIdentity  LSAIdentity
               Byte array
               gsm_map_ms.LSAIdentity

           gsm_map.ms.LocationArea  LocationArea
               Unsigned 32-bit integer
               gsm_map_ms.LocationArea

           gsm_map.ms.MM_Code  MM-Code
               Byte array
               gsm_map_ms.MM_Code

           gsm_map.ms.MOLR_Class  MOLR-Class
               No value
               gsm_map_ms.MOLR_Class

           gsm_map.ms.MSISDN_BS  MSISDN-BS
               No value
               gsm_map_ms.MSISDN_BS

           gsm_map.ms.MT_SMS_TPDU_Type  MT-SMS-TPDU-Type
               Unsigned 32-bit integer
               gsm_map_ms.MT_SMS_TPDU_Type

           gsm_map.ms.MT_smsCAMELTDP_Criteria  MT-smsCAMELTDP-Criteria
               No value
               gsm_map_ms.MT_smsCAMELTDP_Criteria

           gsm_map.ms.O_BcsmCamelTDPData  O-BcsmCamelTDPData
               No value
               gsm_map_ms.O_BcsmCamelTDPData

           gsm_map.ms.O_BcsmCamelTDP_Criteria  O-BcsmCamelTDP-Criteria
               No value
               gsm_map_ms.O_BcsmCamelTDP_Criteria

           gsm_map.ms.PDP_Context  PDP-Context
               No value
               gsm_map_ms.PDP_Context

           gsm_map.ms.PDP_ContextInfo  PDP-ContextInfo
               No value
               gsm_map_ms.PDP_ContextInfo

           gsm_map.ms.RadioResource  RadioResource
               No value
               gsm_map_ms.RadioResource

           gsm_map.ms.RelocationNumber  RelocationNumber
               No value
               gsm_map_ms.RelocationNumber

           gsm_map.ms.SMS_CAMEL_TDP_Data  SMS-CAMEL-TDP-Data
               No value
               gsm_map_ms.SMS_CAMEL_TDP_Data

           gsm_map.ms.SS_Code  SS-Code
               Unsigned 8-bit integer
               gsm_map.SS_Code

           gsm_map.ms.ServiceType  ServiceType
               No value
               gsm_map_ms.ServiceType

           gsm_map.ms.SpecificAPNInfo  SpecificAPNInfo
               No value
               gsm_map_ms.SpecificAPNInfo

           gsm_map.ms.T_BCSM_CAMEL_TDP_Criteria  T-BCSM-CAMEL-TDP-Criteria
               No value
               gsm_map_ms.T_BCSM_CAMEL_TDP_Criteria

           gsm_map.ms.T_BcsmCamelTDPData  T-BcsmCamelTDPData
               No value
               gsm_map_ms.T_BcsmCamelTDPData

           gsm_map.ms.VoiceBroadcastData  VoiceBroadcastData
               No value
               gsm_map_ms.VoiceBroadcastData

           gsm_map.ms.VoiceGroupCallData  VoiceGroupCallData
               No value
               gsm_map_ms.VoiceGroupCallData

           gsm_map.ms.ZoneCode  ZoneCode
               Byte array
               gsm_map_ms.ZoneCode

           gsm_map.ms.accessRestrictionData  accessRestrictionData
               Byte array
               gsm_map_ms.AccessRestrictionData

           gsm_map.ms.accessType  accessType
               Unsigned 32-bit integer
               gsm_map_ms.AccessType

           gsm_map.ms.add_Capability  add-Capability
               No value
               gsm_map_ms.NULL

           gsm_map.ms.add_info  add-info
               No value
               gsm_map_ms.ADD_Info

           gsm_map.ms.add_lcs_PrivacyExceptionList  add-lcs-PrivacyExceptionList
               Unsigned 32-bit integer
               gsm_map_ms.LCS_PrivacyExceptionList

           gsm_map.ms.additionalInfo  additionalInfo
               Byte array
               gsm_map_ms.AdditionalInfo

           gsm_map.ms.additionalRequestedCAMEL_SubscriptionInfo  additionalRequestedCAMEL-SubscriptionInfo
               Unsigned 32-bit integer
               gsm_map_ms.AdditionalRequestedCAMEL_SubscriptionInfo

           gsm_map.ms.additionalSubscriptions  additionalSubscriptions
               Byte array
               gsm_map_ms.AdditionalSubscriptions

           gsm_map.ms.additionalVectorsAreForEPS  additionalVectorsAreForEPS
               No value
               gsm_map_ms.NULL

           gsm_map.ms.ageOfLocationInformation  ageOfLocationInformation
               Unsigned 32-bit integer
               gsm_map.AgeOfLocationInformation

           gsm_map.ms.alertingDP  alertingDP
               Boolean

           gsm_map.ms.allECT-Barred  allECT-Barred
               Boolean

           gsm_map.ms.allEPS_Data  allEPS-Data
               No value
               gsm_map_ms.NULL

           gsm_map.ms.allGPRSData  allGPRSData
               No value
               gsm_map_ms.NULL

           gsm_map.ms.allIC-CallsBarred  allIC-CallsBarred
               Boolean

           gsm_map.ms.allInformationSent  allInformationSent
               No value
               gsm_map_ms.NULL

           gsm_map.ms.allLSAData  allLSAData
               No value
               gsm_map_ms.NULL

           gsm_map.ms.allOG-CallsBarred  allOG-CallsBarred
               Boolean

           gsm_map.ms.allPacketOrientedServicesBarred  allPacketOrientedServicesBarred
               Boolean

           gsm_map.ms.allocation_Retention_Priority  allocation-Retention-Priority
               No value
               gsm_map_ms.Allocation_Retention_Priority

           gsm_map.ms.allowedGSM_Algorithms  allowedGSM-Algorithms
               Byte array
               gsm_map_ms.AllowedGSM_Algorithms

           gsm_map.ms.allowedUMTS_Algorithms  allowedUMTS-Algorithms
               No value
               gsm_map_ms.AllowedUMTS_Algorithms

           gsm_map.ms.alternativeChannelType  alternativeChannelType
               Byte array
               gsm_map_ms.RadioResourceInformation

           gsm_map.ms.ambr  ambr
               No value
               gsm_map_ms.AMBR

           gsm_map.ms.an_APDU  an-APDU
               No value
               gsm_map.AccessNetworkSignalInfo

           gsm_map.ms.apn  apn
               Byte array
               gsm_map_ms.APN

           gsm_map.ms.apn_ConfigurationProfile  apn-ConfigurationProfile
               No value
               gsm_map_ms.APN_ConfigurationProfile

           gsm_map.ms.apn_InUse  apn-InUse
               Byte array
               gsm_map_ms.APN

           gsm_map.ms.apn_Subscribed  apn-Subscribed
               Byte array
               gsm_map_ms.APN

           gsm_map.ms.apn_oi_Replacement  apn-oi-Replacement
               Byte array
               gsm_map_ms.APN_OI_Replacement

           gsm_map.ms.apn_oi_replacementWithdraw  apn-oi-replacementWithdraw
               No value
               gsm_map_ms.NULL

           gsm_map.ms.asciCallReference  asciCallReference
               Byte array
               gsm_map.ASCI_CallReference

           gsm_map.ms.assumedIdle  assumedIdle
               No value
               gsm_map_ms.NULL

           gsm_map.ms.authenticationSetList  authenticationSetList
               Unsigned 32-bit integer
               gsm_map_ms.AuthenticationSetList

           gsm_map.ms.autn  autn
               Byte array
               gsm_map_ms.AUTN

           gsm_map.ms.auts  auts
               Byte array
               gsm_map_ms.AUTS

           gsm_map.ms.basicService  basicService
               Unsigned 32-bit integer
               gsm_map.Ext_BasicServiceCode

           gsm_map.ms.basicServiceCriteria  basicServiceCriteria
               Unsigned 32-bit integer
               gsm_map_ms.BasicServiceCriteria

           gsm_map.ms.basicServiceGroupList  basicServiceGroupList
               Unsigned 32-bit integer
               gsm_map_ms.Ext_BasicServiceGroupList

           gsm_map.ms.basicServiceList  basicServiceList
               Unsigned 32-bit integer
               gsm_map_ms.BasicServiceList

           gsm_map.ms.bearerServiceList  bearerServiceList
               Unsigned 32-bit integer
               gsm_map_ms.BearerServiceList

           gsm_map.ms.bmuef  bmuef
               No value
               gsm_map_ms.UESBI_Iu

           gsm_map.ms.broadcastInitEntitlement  broadcastInitEntitlement
               No value
               gsm_map_ms.NULL

           gsm_map.ms.bssmap_ServiceHandover  bssmap-ServiceHandover
               Byte array
               gsm_map_ms.BSSMAP_ServiceHandover

           gsm_map.ms.bssmap_ServiceHandoverList  bssmap-ServiceHandoverList
               Unsigned 32-bit integer
               gsm_map_ms.BSSMAP_ServiceHandoverList

           gsm_map.ms.callBarringData  callBarringData
               No value
               gsm_map_ms.CallBarringData

           gsm_map.ms.callBarringFeatureList  callBarringFeatureList
               Unsigned 32-bit integer
               gsm_map_ms.Ext_CallBarFeatureList

           gsm_map.ms.callBarringInfo  callBarringInfo
               No value
               gsm_map_ms.Ext_CallBarInfo

           gsm_map.ms.callBarringInfoFor_CSE  callBarringInfoFor-CSE
               No value
               gsm_map_ms.Ext_CallBarringInfoFor_CSE

           gsm_map.ms.callForwardingData  callForwardingData
               No value
               gsm_map_ms.CallForwardingData

           gsm_map.ms.callPriority  callPriority
               Unsigned 32-bit integer
               gsm_map.EMLPP_Priority

           gsm_map.ms.callTypeCriteria  callTypeCriteria
               Unsigned 32-bit integer
               gsm_map_ms.CallTypeCriteria

           gsm_map.ms.camelBusy  camelBusy
               No value
               gsm_map_ms.NULL

           gsm_map.ms.camelCapabilityHandling  camelCapabilityHandling
               Unsigned 32-bit integer
               gsm_map_ms.CamelCapabilityHandling

           gsm_map.ms.camelSubscriptionInfoWithdraw  camelSubscriptionInfoWithdraw
               No value
               gsm_map_ms.NULL

           gsm_map.ms.camel_SubscriptionInfo  camel-SubscriptionInfo
               No value
               gsm_map_ms.CAMEL_SubscriptionInfo

           gsm_map.ms.cancelSGSN  cancelSGSN
               Boolean

           gsm_map.ms.cancellationType  cancellationType
               Unsigned 32-bit integer
               gsm_map_ms.CancellationType

           gsm_map.ms.category  category
               Byte array
               gsm_map_ms.Category

           gsm_map.ms.cellGlobalIdOrServiceAreaIdOrLAI  cellGlobalIdOrServiceAreaIdOrLAI
               Unsigned 32-bit integer
               gsm_map.CellGlobalIdOrServiceAreaIdOrLAI

           gsm_map.ms.cf-Enhancements  cf-Enhancements
               Boolean

           gsm_map.ms.changeOfPositionDP  changeOfPositionDP
               Boolean

           gsm_map.ms.chargeableECT-Barred  chargeableECT-Barred
               Boolean

           gsm_map.ms.chargingCharacteristics  chargingCharacteristics
               Unsigned 16-bit integer
               gsm_map_ms.ChargingCharacteristics

           gsm_map.ms.chargingCharacteristicsWithdraw  chargingCharacteristicsWithdraw
               No value
               gsm_map_ms.NULL

           gsm_map.ms.chargingId  chargingId
               Byte array
               gsm_map_ms.GPRSChargingID

           gsm_map.ms.chargingIndicator  chargingIndicator
               Boolean

           gsm_map.ms.chosenChannelInfo  chosenChannelInfo
               Byte array
               gsm_map_ms.ChosenChannelInfo

           gsm_map.ms.chosenRadioResourceInformation  chosenRadioResourceInformation
               No value
               gsm_map_ms.ChosenRadioResourceInformation

           gsm_map.ms.chosenSpeechVersion  chosenSpeechVersion
               Byte array
               gsm_map_ms.ChosenSpeechVersion

           gsm_map.ms.ck  ck
               Byte array
               gsm_map_ms.CK

           gsm_map.ms.cksn  cksn
               Byte array
               gsm_map_ms.Cksn

           gsm_map.ms.clientIdentity  clientIdentity
               No value
               gsm_map.LCSClientExternalID

           gsm_map.ms.codec1  codec1
               Byte array
               gsm_map_ms.Codec

           gsm_map.ms.codec2  codec2
               Byte array
               gsm_map_ms.Codec

           gsm_map.ms.codec3  codec3
               Byte array
               gsm_map_ms.Codec

           gsm_map.ms.codec4  codec4
               Byte array
               gsm_map_ms.Codec

           gsm_map.ms.codec5  codec5
               Byte array
               gsm_map_ms.Codec

           gsm_map.ms.codec6  codec6
               Byte array
               gsm_map_ms.Codec

           gsm_map.ms.codec7  codec7
               Byte array
               gsm_map_ms.Codec

           gsm_map.ms.codec8  codec8
               Byte array
               gsm_map_ms.Codec

           gsm_map.ms.collectInformation  collectInformation
               Boolean

           gsm_map.ms.completeDataListIncluded  completeDataListIncluded
               No value
               gsm_map_ms.NULL

           gsm_map.ms.contextId  contextId
               Unsigned 32-bit integer
               gsm_map_ms.ContextId

           gsm_map.ms.contextIdList  contextIdList
               Unsigned 32-bit integer
               gsm_map_ms.ContextIdList

           gsm_map.ms.criteriaForChangeOfPositionDP  criteriaForChangeOfPositionDP
               Boolean

           gsm_map.ms.cs_AllocationRetentionPriority  cs-AllocationRetentionPriority
               Byte array
               gsm_map_ms.CS_AllocationRetentionPriority

           gsm_map.ms.cs_LCS_NotSupportedByUE  cs-LCS-NotSupportedByUE
               No value
               gsm_map_ms.NULL

           gsm_map.ms.csg_Id  csg-Id
               Byte array
               gsm_map_ms.CSG_Id

           gsm_map.ms.csg_SubscriptionDataList  csg-SubscriptionDataList
               Unsigned 32-bit integer
               gsm_map_ms.CSG_SubscriptionDataList

           gsm_map.ms.csg_SubscriptionDeleted  csg-SubscriptionDeleted
               No value
               gsm_map_ms.NULL

           gsm_map.ms.csiActive  csiActive
               No value
               gsm_map_ms.NULL

           gsm_map.ms.csi_Active  csi-Active
               No value
               gsm_map_ms.NULL

           gsm_map.ms.cug_FeatureList  cug-FeatureList
               Unsigned 32-bit integer
               gsm_map_ms.CUG_FeatureList

           gsm_map.ms.cug_Index  cug-Index
               Unsigned 32-bit integer
               gsm_map_ms.CUG_Index

           gsm_map.ms.cug_Info  cug-Info
               No value
               gsm_map_ms.CUG_Info

           gsm_map.ms.cug_Interlock  cug-Interlock
               Byte array
               gsm_map_ms.CUG_Interlock

           gsm_map.ms.cug_SubscriptionList  cug-SubscriptionList
               Unsigned 32-bit integer
               gsm_map_ms.CUG_SubscriptionList

           gsm_map.ms.currentLocation  currentLocation
               No value
               gsm_map_ms.NULL

           gsm_map.ms.currentLocationRetrieved  currentLocationRetrieved
               No value
               gsm_map_ms.NULL

           gsm_map.ms.currentSecurityContext  currentSecurityContext
               Unsigned 32-bit integer
               gsm_map_ms.CurrentSecurityContext

           gsm_map.ms.currentlyUsedCodec  currentlyUsedCodec
               Byte array
               gsm_map_ms.Codec

           gsm_map.ms.d-IM-CSI  d-IM-CSI
               Boolean

           gsm_map.ms.d-csi  d-csi
               Boolean

           gsm_map.ms.d_CSI  d-CSI
               No value
               gsm_map_ms.D_CSI

           gsm_map.ms.d_IM_CSI  d-IM-CSI
               No value
               gsm_map_ms.D_CSI

           gsm_map.ms.defaultCallHandling  defaultCallHandling
               Unsigned 32-bit integer
               gsm_map_ms.DefaultCallHandling

           gsm_map.ms.defaultContext  defaultContext
               Unsigned 32-bit integer
               gsm_map_ms.ContextId

           gsm_map.ms.defaultSMS_Handling  defaultSMS-Handling
               Unsigned 32-bit integer
               gsm_map_ms.DefaultSMS_Handling

           gsm_map.ms.defaultSessionHandling  defaultSessionHandling
               Unsigned 32-bit integer
               gsm_map_ms.DefaultGPRS_Handling

           gsm_map.ms.destinationNumberCriteria  destinationNumberCriteria
               No value
               gsm_map_ms.DestinationNumberCriteria

           gsm_map.ms.destinationNumberLengthList  destinationNumberLengthList
               Unsigned 32-bit integer
               gsm_map_ms.DestinationNumberLengthList

           gsm_map.ms.destinationNumberList  destinationNumberList
               Unsigned 32-bit integer
               gsm_map_ms.DestinationNumberList

           gsm_map.ms.dfc-WithArgument  dfc-WithArgument
               Boolean

           gsm_map.ms.dialledNumber  dialledNumber
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ms.disconnectLeg  disconnectLeg
               Boolean

           gsm_map.ms.doublyChargeableECT-Barred  doublyChargeableECT-Barred
               Boolean

           gsm_map.ms.dp_AnalysedInfoCriteriaList  dp-AnalysedInfoCriteriaList
               Unsigned 32-bit integer
               gsm_map_ms.DP_AnalysedInfoCriteriaList

           gsm_map.ms.dtmf-MidCall  dtmf-MidCall
               Boolean

           gsm_map.ms.e-utran  e-utran
               Boolean

           gsm_map.ms.e-utranNotAllowed  e-utranNotAllowed
               Boolean

           gsm_map.ms.emergencyReset  emergencyReset
               Boolean

           gsm_map.ms.emergencyUplinkRequest  emergencyUplinkRequest
               Boolean

           gsm_map.ms.emlpp_Info  emlpp-Info
               No value
               gsm_map.EMLPP_Info

           gsm_map.ms.encryptionAlgorithm  encryptionAlgorithm
               Byte array
               gsm_map_ms.ChosenEncryptionAlgorithm

           gsm_map.ms.encryptionAlgorithms  encryptionAlgorithms
               Byte array
               gsm_map_ms.PermittedEncryptionAlgorithms

           gsm_map.ms.encryptionInfo  encryptionInfo
               Byte array
               gsm_map_ms.EncryptionInformation

           gsm_map.ms.entityReleased  entityReleased
               Boolean

           gsm_map.ms.epsDataList  epsDataList
               Unsigned 32-bit integer
               gsm_map_ms.EPS_DataList

           gsm_map.ms.epsSubscriptionDataWithdraw  epsSubscriptionDataWithdraw
               Unsigned 32-bit integer
               gsm_map_ms.EPS_SubscriptionDataWithdraw

           gsm_map.ms.eps_AuthenticationSetList  eps-AuthenticationSetList
               Unsigned 32-bit integer
               gsm_map_ms.EPS_AuthenticationSetList

           gsm_map.ms.eps_SubscriptionData  eps-SubscriptionData
               No value
               gsm_map_ms.EPS_SubscriptionData

           gsm_map.ms.eps_info  eps-info
               Unsigned 32-bit integer
               gsm_map_ms.EPS_Info

           gsm_map.ms.eps_qos_Subscribed  eps-qos-Subscribed
               No value
               gsm_map_ms.EPS_QoS_Subscribed

           gsm_map.ms.equipmentStatus  equipmentStatus
               Unsigned 32-bit integer
               gsm_map_ms.EquipmentStatus

           gsm_map.ms.eventMet  eventMet
               Byte array
               gsm_map_ms.MM_Code

           gsm_map.ms.expirationDate  expirationDate
               Byte array
               gsm_map_ms.Time

           gsm_map.ms.ext2_QoS_Subscribed  ext2-QoS-Subscribed
               Byte array
               gsm_map_ms.Ext2_QoS_Subscribed

           gsm_map.ms.ext3_QoS_Subscribed  ext3-QoS-Subscribed
               Byte array
               gsm_map_ms.Ext3_QoS_Subscribed

           gsm_map.ms.ext_QoS_Subscribed  ext-QoS-Subscribed
               Byte array
               gsm_map_ms.Ext_QoS_Subscribed

           gsm_map.ms.ext_externalClientList  ext-externalClientList
               Unsigned 32-bit integer
               gsm_map_ms.Ext_ExternalClientList

           gsm_map.ms.extensionContainer  extensionContainer
               No value
               gsm_map.ExtensionContainer

           gsm_map.ms.externalClientList  externalClientList
               Unsigned 32-bit integer
               gsm_map_ms.ExternalClientList

           gsm_map.ms.failureCause  failureCause
               Unsigned 32-bit integer
               gsm_map_ms.FailureCause

           gsm_map.ms.forwardedToNumber  forwardedToNumber
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ms.forwardedToSubaddress  forwardedToSubaddress
               Byte array
               gsm_map.ISDN_SubaddressString

           gsm_map.ms.forwardingFeatureList  forwardingFeatureList
               Unsigned 32-bit integer
               gsm_map_ms.Ext_ForwFeatureList

           gsm_map.ms.forwardingInfo  forwardingInfo
               No value
               gsm_map_ms.Ext_ForwInfo

           gsm_map.ms.forwardingInfoFor_CSE  forwardingInfoFor-CSE
               No value
               gsm_map_ms.Ext_ForwardingInfoFor_CSE

           gsm_map.ms.forwardingOptions  forwardingOptions
               Byte array
               gsm_map_ms.T_forwardingOptions

           gsm_map.ms.freezeM_TMSI  freezeM-TMSI
               No value
               gsm_map_ms.NULL

           gsm_map.ms.freezeP_TMSI  freezeP-TMSI
               No value
               gsm_map_ms.NULL

           gsm_map.ms.freezeTMSI  freezeTMSI
               No value
               gsm_map_ms.NULL

           gsm_map.ms.gan  gan
               Boolean

           gsm_map.ms.ganNotAllowed  ganNotAllowed
               Boolean

           gsm_map.ms.geodeticInformation  geodeticInformation
               Byte array
               gsm_map_ms.GeodeticInformation

           gsm_map.ms.geographicalInformation  geographicalInformation
               Byte array
               gsm_map_ms.GeographicalInformation

           gsm_map.ms.geran  geran
               Boolean

           gsm_map.ms.geranCodecList  geranCodecList
               No value
               gsm_map_ms.CodecList

           gsm_map.ms.geranNotAllowed  geranNotAllowed
               Boolean

           gsm_map.ms.geran_classmark  geran-classmark
               Byte array
               gsm_map_ms.GERAN_Classmark

           gsm_map.ms.ggsn_Address  ggsn-Address
               Byte array
               gsm_map_ms.GSN_Address

           gsm_map.ms.ggsn_Number  ggsn-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ms.gmlc_List  gmlc-List
               Unsigned 32-bit integer
               gsm_map_ms.GMLC_List

           gsm_map.ms.gmlc_ListWithdraw  gmlc-ListWithdraw
               No value
               gsm_map_ms.NULL

           gsm_map.ms.gmlc_Restriction  gmlc-Restriction
               Unsigned 32-bit integer
               gsm_map_ms.GMLC_Restriction

           gsm_map.ms.gprs-csi  gprs-csi
               Boolean

           gsm_map.ms.gprsDataList  gprsDataList
               Unsigned 32-bit integer
               gsm_map_ms.GPRSDataList

           gsm_map.ms.gprsEnhancementsSupportIndicator  gprsEnhancementsSupportIndicator
               No value
               gsm_map_ms.NULL

           gsm_map.ms.gprsSubscriptionData  gprsSubscriptionData
               No value
               gsm_map_ms.GPRSSubscriptionData

           gsm_map.ms.gprsSubscriptionDataWithdraw  gprsSubscriptionDataWithdraw
               Unsigned 32-bit integer
               gsm_map_ms.GPRSSubscriptionDataWithdraw

           gsm_map.ms.gprs_CSI  gprs-CSI
               No value
               gsm_map_ms.GPRS_CSI

           gsm_map.ms.gprs_CamelTDPDataList  gprs-CamelTDPDataList
               Unsigned 32-bit integer
               gsm_map_ms.GPRS_CamelTDPDataList

           gsm_map.ms.gprs_MS_Class  gprs-MS-Class
               No value
               gsm_map_ms.GPRSMSClass

           gsm_map.ms.gprs_TriggerDetectionPoint  gprs-TriggerDetectionPoint
               Unsigned 32-bit integer
               gsm_map_ms.GPRS_TriggerDetectionPoint

           gsm_map.ms.groupId  groupId
               Byte array
               gsm_map_ms.GroupId

           gsm_map.ms.groupid  groupid
               Byte array
               gsm_map_ms.GroupId

           gsm_map.ms.gsmSCF_Address  gsmSCF-Address
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ms.gsm_SecurityContextData  gsm-SecurityContextData
               No value
               gsm_map_ms.GSM_SecurityContextData

           gsm_map.ms.handoverNumber  handoverNumber
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ms.hlr_List  hlr-List
               Unsigned 32-bit integer
               gsm_map.HLR_List

           gsm_map.ms.hlr_Number  hlr-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ms.ho-toNon3GPP-AccessNotAllowed  ho-toNon3GPP-AccessNotAllowed
               Boolean

           gsm_map.ms.ho_NumberNotRequired  ho-NumberNotRequired
               No value
               gsm_map_ms.NULL

           gsm_map.ms.hopCounter  hopCounter
               Unsigned 32-bit integer
               gsm_map_ms.HopCounter

           gsm_map.ms.i-hspa-evolution  i-hspa-evolution
               Boolean

           gsm_map.ms.i-hspa-evolutionNotAllowed  i-hspa-evolutionNotAllowed
               Boolean

           gsm_map.ms.iUSelectedCodec  iUSelectedCodec
               Byte array
               gsm_map_ms.Codec

           gsm_map.ms.ics_Indicator  ics-Indicator
               Boolean
               gsm_map_ms.BOOLEAN

           gsm_map.ms.identity  identity
               Unsigned 32-bit integer
               gsm_map.Identity

           gsm_map.ms.ik  ik
               Byte array
               gsm_map_ms.IK

           gsm_map.ms.imei  imei
               Byte array
               gsm_map.IMEI

           gsm_map.ms.imeisv  imeisv
               Byte array
               gsm_map.IMEI

           gsm_map.ms.immediateResponsePreferred  immediateResponsePreferred
               No value
               gsm_map_ms.NULL

           gsm_map.ms.imsi  imsi
               Byte array
               gsm_map.IMSI

           gsm_map.ms.informPreviousNetworkEntity  informPreviousNetworkEntity
               No value
               gsm_map_ms.NULL

           gsm_map.ms.initiateCallAttempt  initiateCallAttempt
               Boolean

           gsm_map.ms.integrityProtectionAlgorithm  integrityProtectionAlgorithm
               Byte array
               gsm_map_ms.ChosenIntegrityProtectionAlgorithm

           gsm_map.ms.integrityProtectionAlgorithms  integrityProtectionAlgorithms
               Byte array
               gsm_map_ms.PermittedIntegrityProtectionAlgorithms

           gsm_map.ms.integrityProtectionInfo  integrityProtectionInfo
               Byte array
               gsm_map_ms.IntegrityProtectionInformation

           gsm_map.ms.interCUG_Restrictions  interCUG-Restrictions
               Byte array
               gsm_map_ms.InterCUG_Restrictions

           gsm_map.ms.internationalECT-Barred  internationalECT-Barred
               Boolean

           gsm_map.ms.internationalOGCallsBarred  internationalOGCallsBarred
               Boolean

           gsm_map.ms.internationalOGCallsNotToHPLMN-CountryBarred  internationalOGCallsNotToHPLMN-CountryBarred
               Boolean

           gsm_map.ms.interzonalECT-Barred  interzonalECT-Barred
               Boolean

           gsm_map.ms.interzonalOGCallsAndInternationalOGCallsNotToHPLMN-CountryBarred  interzonalOGCallsAndInternationalOGCallsNotToHPLMN-CountryBarred
               Boolean

           gsm_map.ms.interzonalOGCallsBarred  interzonalOGCallsBarred
               Boolean

           gsm_map.ms.interzonalOGCallsNotToHPLMN-CountryBarred  interzonalOGCallsNotToHPLMN-CountryBarred
               Boolean

           gsm_map.ms.intraCUG_Options  intraCUG-Options
               Unsigned 32-bit integer
               gsm_map_ms.IntraCUG_Options

           gsm_map.ms.isr_Information  isr-Information
               Byte array
               gsm_map_ms.ISR_Information

           gsm_map.ms.istAlertTimer  istAlertTimer
               Unsigned 32-bit integer
               gsm_map_ms.IST_AlertTimerValue

           gsm_map.ms.istInformationWithdraw  istInformationWithdraw
               No value
               gsm_map_ms.NULL

           gsm_map.ms.istSupportIndicator  istSupportIndicator
               Unsigned 32-bit integer
               gsm_map_ms.IST_SupportIndicator

           gsm_map.ms.iuAvailableCodecsList  iuAvailableCodecsList
               No value
               gsm_map_ms.CodecList

           gsm_map.ms.iuCurrentlyUsedCodec  iuCurrentlyUsedCodec
               Byte array
               gsm_map_ms.Codec

           gsm_map.ms.iuSelectedCodec  iuSelectedCodec
               Byte array
               gsm_map_ms.Codec

           gsm_map.ms.iuSupportedCodecsList  iuSupportedCodecsList
               No value
               gsm_map_ms.SupportedCodecsList

           gsm_map.ms.kasme  kasme
               Byte array
               gsm_map_ms.KASME

           gsm_map.ms.kc  kc
               Byte array
               gsm_map_ms.Kc

           gsm_map.ms.keyStatus  keyStatus
               Unsigned 32-bit integer
               gsm_map_ms.KeyStatus

           gsm_map.ms.ksi  ksi
               Byte array
               gsm_map_ms.KSI

           gsm_map.ms.lac  lac
               Byte array
               gsm_map_ms.LAC

           gsm_map.ms.laiFixedLength  laiFixedLength
               Byte array
               gsm_map.LAIFixedLength

           gsm_map.ms.lcsCapabilitySet1  lcsCapabilitySet1
               Boolean

           gsm_map.ms.lcsCapabilitySet2  lcsCapabilitySet2
               Boolean

           gsm_map.ms.lcsCapabilitySet3  lcsCapabilitySet3
               Boolean

           gsm_map.ms.lcsCapabilitySet4  lcsCapabilitySet4
               Boolean

           gsm_map.ms.lcsCapabilitySet5  lcsCapabilitySet5
               Boolean

           gsm_map.ms.lcsInformation  lcsInformation
               No value
               gsm_map_ms.LCSInformation

           gsm_map.ms.lcs_PrivacyExceptionList  lcs-PrivacyExceptionList
               Unsigned 32-bit integer
               gsm_map_ms.LCS_PrivacyExceptionList

           gsm_map.ms.lmsi  lmsi
               Byte array
               gsm_map.LMSI

           gsm_map.ms.lmu_Indicator  lmu-Indicator
               No value
               gsm_map_ms.NULL

           gsm_map.ms.locationAtAlerting  locationAtAlerting
               Boolean

           gsm_map.ms.locationInformation  locationInformation
               No value
               gsm_map_ms.LocationInformation

           gsm_map.ms.locationInformationGPRS  locationInformationGPRS
               No value
               gsm_map_ms.LocationInformationGPRS

           gsm_map.ms.locationNumber  locationNumber
               Byte array
               gsm_map_ms.LocationNumber

           gsm_map.ms.longFTN_Supported  longFTN-Supported
               No value
               gsm_map_ms.NULL

           gsm_map.ms.longForwardedToNumber  longForwardedToNumber
               Byte array
               gsm_map.FTN_AddressString

           gsm_map.ms.longGroupID_Supported  longGroupID-Supported
               No value
               gsm_map_ms.NULL

           gsm_map.ms.longGroupId  longGroupId
               Byte array
               gsm_map_ms.Long_GroupId

           gsm_map.ms.lsaActiveModeIndicator  lsaActiveModeIndicator
               No value
               gsm_map_ms.NULL

           gsm_map.ms.lsaAttributes  lsaAttributes
               Byte array
               gsm_map_ms.LSAAttributes

           gsm_map.ms.lsaDataList  lsaDataList
               Unsigned 32-bit integer
               gsm_map_ms.LSADataList

           gsm_map.ms.lsaIdentity  lsaIdentity
               Byte array
               gsm_map_ms.LSAIdentity

           gsm_map.ms.lsaIdentityList  lsaIdentityList
               Unsigned 32-bit integer
               gsm_map_ms.LSAIdentityList

           gsm_map.ms.lsaInformation  lsaInformation
               No value
               gsm_map_ms.LSAInformation

           gsm_map.ms.lsaInformationWithdraw  lsaInformationWithdraw
               Unsigned 32-bit integer
               gsm_map_ms.LSAInformationWithdraw

           gsm_map.ms.lsaOnlyAccessIndicator  lsaOnlyAccessIndicator
               Unsigned 32-bit integer
               gsm_map_ms.LSAOnlyAccessIndicator

           gsm_map.ms.m-csi  m-csi
               Boolean

           gsm_map.ms.mSNetworkCapability  mSNetworkCapability
               Byte array
               gsm_map_ms.MSNetworkCapability

           gsm_map.ms.mSRadioAccessCapability  mSRadioAccessCapability
               Byte array
               gsm_map_ms.MSRadioAccessCapability

           gsm_map.ms.m_CSI  m-CSI
               No value
               gsm_map_ms.M_CSI

           gsm_map.ms.matchType  matchType
               Unsigned 32-bit integer
               gsm_map_ms.MatchType

           gsm_map.ms.max_RequestedBandwidth_DL  max-RequestedBandwidth-DL
               Signed 32-bit integer
               gsm_map_ms.Bandwidth

           gsm_map.ms.max_RequestedBandwidth_UL  max-RequestedBandwidth-UL
               Signed 32-bit integer
               gsm_map_ms.Bandwidth

           gsm_map.ms.mc_SS_Info  mc-SS-Info
               No value
               gsm_map.MC_SS_Info

           gsm_map.ms.mg-csi  mg-csi
               Boolean

           gsm_map.ms.mg_csi  mg-csi
               No value
               gsm_map_ms.MG_CSI

           gsm_map.ms.mnpInfoRes  mnpInfoRes
               No value
               gsm_map_ms.MNPInfoRes

           gsm_map.ms.mnpRequestedInfo  mnpRequestedInfo
               No value
               gsm_map_ms.NULL

           gsm_map.ms.mo-sms-csi  mo-sms-csi
               Boolean

           gsm_map.ms.mo_sms_CSI  mo-sms-CSI
               No value
               gsm_map_ms.SMS_CSI

           gsm_map.ms.mobileNotReachableReason  mobileNotReachableReason
               Unsigned 32-bit integer
               gsm_map_er.AbsentSubscriberDiagnosticSM

           gsm_map.ms.mobilityTriggers  mobilityTriggers
               Unsigned 32-bit integer
               gsm_map_ms.MobilityTriggers

           gsm_map.ms.modificationRequestFor_CB_Info  modificationRequestFor-CB-Info
               No value
               gsm_map_ms.ModificationRequestFor_CB_Info

           gsm_map.ms.modificationRequestFor_CF_Info  modificationRequestFor-CF-Info
               No value
               gsm_map_ms.ModificationRequestFor_CF_Info

           gsm_map.ms.modificationRequestFor_CSI  modificationRequestFor-CSI
               No value
               gsm_map_ms.ModificationRequestFor_CSI

           gsm_map.ms.modificationRequestFor_IP_SM_GW_Data  modificationRequestFor-IP-SM-GW-Data
               No value
               gsm_map_ms.ModificationRequestFor_IP_SM_GW_Data

           gsm_map.ms.modificationRequestFor_ODB_data  modificationRequestFor-ODB-data
               No value
               gsm_map_ms.ModificationRequestFor_ODB_data

           gsm_map.ms.modifyCSI_State  modifyCSI-State
               Unsigned 32-bit integer
               gsm_map_ms.ModificationInstruction

           gsm_map.ms.modifyNotificationToCSE  modifyNotificationToCSE
               Unsigned 32-bit integer
               gsm_map_ms.ModificationInstruction

           gsm_map.ms.modifyRegistrationStatus  modifyRegistrationStatus
               Unsigned 32-bit integer
               gsm_map_ms.ModificationInstruction

           gsm_map.ms.molr_List  molr-List
               Unsigned 32-bit integer
               gsm_map_ms.MOLR_List

           gsm_map.ms.moveLeg  moveLeg
               Boolean

           gsm_map.ms.msNotReachable  msNotReachable
               No value
               gsm_map_ms.NULL

           gsm_map.ms.ms_Classmark2  ms-Classmark2
               Byte array
               gsm_map_ms.MS_Classmark2

           gsm_map.ms.ms_classmark  ms-classmark
               No value
               gsm_map_ms.NULL

           gsm_map.ms.msc_Number  msc-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ms.msisdn  msisdn
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ms.msisdn_BS_List  msisdn-BS-List
               Unsigned 32-bit integer
               gsm_map_ms.MSISDN_BS_List

           gsm_map.ms.mt-sms-csi  mt-sms-csi
               Boolean

           gsm_map.ms.mt_smsCAMELTDP_CriteriaList  mt-smsCAMELTDP-CriteriaList
               Unsigned 32-bit integer
               gsm_map_ms.MT_smsCAMELTDP_CriteriaList

           gsm_map.ms.mt_sms_CSI  mt-sms-CSI
               No value
               gsm_map_ms.SMS_CSI

           gsm_map.ms.multicallBearerInfo  multicallBearerInfo
               Unsigned 32-bit integer
               gsm_map_ms.MulticallBearerInfo

           gsm_map.ms.multipleBearerNotSupported  multipleBearerNotSupported
               No value
               gsm_map_ms.NULL

           gsm_map.ms.multipleBearerRequested  multipleBearerRequested
               No value
               gsm_map_ms.NULL

           gsm_map.ms.multipleECT-Barred  multipleECT-Barred
               Boolean

           gsm_map.ms.naea_PreferredCI  naea-PreferredCI
               No value
               gsm_map.NAEA_PreferredCI

           gsm_map.ms.netDetNotReachable  netDetNotReachable
               Unsigned 32-bit integer
               gsm_map_ms.NotReachableReason

           gsm_map.ms.networkAccessMode  networkAccessMode
               Unsigned 32-bit integer
               gsm_map_ms.NetworkAccessMode

           gsm_map.ms.noReplyConditionTime  noReplyConditionTime
               Unsigned 32-bit integer
               gsm_map_ms.Ext_NoRepCondTime

           gsm_map.ms.notProvidedFromSGSN  notProvidedFromSGSN
               No value
               gsm_map_ms.NULL

           gsm_map.ms.notProvidedFromVLR  notProvidedFromVLR
               No value
               gsm_map_ms.NULL

           gsm_map.ms.notificationToCSE  notificationToCSE
               No value
               gsm_map_ms.NULL

           gsm_map.ms.notificationToMSUser  notificationToMSUser
               Unsigned 32-bit integer
               gsm_map_ms.NotificationToMSUser

           gsm_map.ms.nsapi  nsapi
               Unsigned 32-bit integer
               gsm_map_ms.NSAPI

           gsm_map.ms.numberOfRequestedAdditional_Vectors  numberOfRequestedAdditional-Vectors
               Unsigned 32-bit integer
               gsm_map_ms.NumberOfRequestedVectors

           gsm_map.ms.numberOfRequestedVectors  numberOfRequestedVectors
               Unsigned 32-bit integer
               gsm_map_ms.NumberOfRequestedVectors

           gsm_map.ms.numberPortabilityStatus  numberPortabilityStatus
               Unsigned 32-bit integer
               gsm_map_ms.NumberPortabilityStatus

           gsm_map.ms.o-IM-CSI  o-IM-CSI
               Boolean

           gsm_map.ms.o-csi  o-csi
               Boolean

           gsm_map.ms.o_BcsmCamelTDPDataList  o-BcsmCamelTDPDataList
               Unsigned 32-bit integer
               gsm_map_ms.O_BcsmCamelTDPDataList

           gsm_map.ms.o_BcsmCamelTDP_CriteriaList  o-BcsmCamelTDP-CriteriaList
               Unsigned 32-bit integer
               gsm_map_ms.O_BcsmCamelTDPCriteriaList

           gsm_map.ms.o_BcsmTriggerDetectionPoint  o-BcsmTriggerDetectionPoint
               Unsigned 32-bit integer
               gsm_map_ms.O_BcsmTriggerDetectionPoint

           gsm_map.ms.o_CSI  o-CSI
               No value
               gsm_map_ms.O_CSI

           gsm_map.ms.o_CauseValueCriteria  o-CauseValueCriteria
               Unsigned 32-bit integer
               gsm_map_ms.O_CauseValueCriteria

           gsm_map.ms.o_IM_BcsmCamelTDP_CriteriaList  o-IM-BcsmCamelTDP-CriteriaList
               Unsigned 32-bit integer
               gsm_map_ms.O_BcsmCamelTDPCriteriaList

           gsm_map.ms.o_IM_CSI  o-IM-CSI
               No value
               gsm_map_ms.O_CSI

           gsm_map.ms.odb  odb
               No value
               gsm_map_ms.NULL

           gsm_map.ms.odb-HPLMN-APN  odb-HPLMN-APN
               Boolean

           gsm_map.ms.odb-VPLMN-APN  odb-VPLMN-APN
               Boolean

           gsm_map.ms.odb-all  odb-all
               Boolean

           gsm_map.ms.odb_Data  odb-Data
               No value
               gsm_map_ms.ODB_Data

           gsm_map.ms.odb_GeneralData  odb-GeneralData
               Byte array
               gsm_map_ms.ODB_GeneralData

           gsm_map.ms.odb_HPLMN_Data  odb-HPLMN-Data
               Byte array
               gsm_map_ms.ODB_HPLMN_Data

           gsm_map.ms.odb_Info  odb-Info
               No value
               gsm_map_ms.ODB_Info

           gsm_map.ms.odb_data  odb-data
               No value
               gsm_map_ms.ODB_Data

           gsm_map.ms.offeredCamel4CSIs  offeredCamel4CSIs
               Byte array
               gsm_map_ms.OfferedCamel4CSIs

           gsm_map.ms.offeredCamel4CSIsInSGSN  offeredCamel4CSIsInSGSN
               Byte array
               gsm_map_ms.OfferedCamel4CSIs

           gsm_map.ms.offeredCamel4CSIsInVLR  offeredCamel4CSIsInVLR
               Byte array
               gsm_map_ms.OfferedCamel4CSIs

           gsm_map.ms.offeredCamel4Functionalities  offeredCamel4Functionalities
               Byte array
               gsm_map_ms.OfferedCamel4Functionalities

           gsm_map.ms.or-Interactions  or-Interactions
               Boolean

           gsm_map.ms.pagingArea  pagingArea
               Unsigned 32-bit integer
               gsm_map_ms.PagingArea

           gsm_map.ms.pagingArea_Capability  pagingArea-Capability
               No value
               gsm_map_ms.NULL

           gsm_map.ms.password  password
               String
               gsm_map_ss.Password

           gsm_map.ms.pdn_gw_AllocationType  pdn-gw-AllocationType
               Unsigned 32-bit integer
               gsm_map_ms.PDN_GW_AllocationType

           gsm_map.ms.pdn_gw_Identity  pdn-gw-Identity
               No value
               gsm_map_ms.PDN_GW_Identity

           gsm_map.ms.pdn_gw_ipv4_Address  pdn-gw-ipv4-Address
               Byte array
               gsm_map_ms.PDP_Address

           gsm_map.ms.pdn_gw_ipv6_Address  pdn-gw-ipv6-Address
               Byte array
               gsm_map_ms.PDP_Address

           gsm_map.ms.pdn_gw_name  pdn-gw-name
               Byte array
               gsm_map_ms.FQDN

           gsm_map.ms.pdn_gw_update  pdn-gw-update
               No value
               gsm_map_ms.PDN_GW_Update

           gsm_map.ms.pdp_Address  pdp-Address
               Byte array
               gsm_map_ms.PDP_Address

           gsm_map.ms.pdp_ChargingCharacteristics  pdp-ChargingCharacteristics
               Unsigned 16-bit integer
               gsm_map_ms.ChargingCharacteristics

           gsm_map.ms.pdp_ContextActive  pdp-ContextActive
               No value
               gsm_map_ms.NULL

           gsm_map.ms.pdp_ContextId  pdp-ContextId
               Unsigned 32-bit integer
               gsm_map_ms.ContextId

           gsm_map.ms.pdp_ContextIdentifier  pdp-ContextIdentifier
               Unsigned 32-bit integer
               gsm_map_ms.ContextId

           gsm_map.ms.pdp_Type  pdp-Type
               Byte array
               gsm_map_ms.PDP_Type

           gsm_map.ms.phase1  phase1
               Boolean

           gsm_map.ms.phase2  phase2
               Boolean

           gsm_map.ms.phase3  phase3
               Boolean

           gsm_map.ms.phase4  phase4
               Boolean

           gsm_map.ms.playTone  playTone
               Boolean

           gsm_map.ms.plmn-SpecificBarringType1  plmn-SpecificBarringType1
               Boolean

           gsm_map.ms.plmn-SpecificBarringType2  plmn-SpecificBarringType2
               Boolean

           gsm_map.ms.plmn-SpecificBarringType3  plmn-SpecificBarringType3
               Boolean

           gsm_map.ms.plmn-SpecificBarringType4  plmn-SpecificBarringType4
               Boolean

           gsm_map.ms.plmnClientList  plmnClientList
               Unsigned 32-bit integer
               gsm_map_ms.PLMNClientList

           gsm_map.ms.pre_emption_capability  pre-emption-capability
               Boolean
               gsm_map_ms.BOOLEAN

           gsm_map.ms.pre_emption_vulnerability  pre-emption-vulnerability
               Boolean
               gsm_map_ms.BOOLEAN

           gsm_map.ms.preferentialCUG_Indicator  preferentialCUG-Indicator
               Unsigned 32-bit integer
               gsm_map_ms.CUG_Index

           gsm_map.ms.premiumRateEntertainementOGCallsBarred  premiumRateEntertainementOGCallsBarred
               Boolean

           gsm_map.ms.premiumRateInformationOGCallsBarred  premiumRateInformationOGCallsBarred
               Boolean

           gsm_map.ms.previous_LAI  previous-LAI
               Byte array
               gsm_map.LAIFixedLength

           gsm_map.ms.priority_level  priority-level
               Signed 32-bit integer
               gsm_map_ms.INTEGER

           gsm_map.ms.privilegedUplinkRequest  privilegedUplinkRequest
               Boolean

           gsm_map.ms.provisionedSS  provisionedSS
               Unsigned 32-bit integer
               gsm_map_ms.Ext_SS_InfoList

           gsm_map.ms.ps_AttachedNotReachableForPaging  ps-AttachedNotReachableForPaging
               No value
               gsm_map_ms.NULL

           gsm_map.ms.ps_AttachedReachableForPaging  ps-AttachedReachableForPaging
               No value
               gsm_map_ms.NULL

           gsm_map.ms.ps_Detached  ps-Detached
               No value
               gsm_map_ms.NULL

           gsm_map.ms.ps_LCS_NotSupportedByUE  ps-LCS-NotSupportedByUE
               No value
               gsm_map_ms.NULL

           gsm_map.ms.ps_PDP_ActiveNotReachableForPaging  ps-PDP-ActiveNotReachableForPaging
               Unsigned 32-bit integer
               gsm_map_ms.PDP_ContextInfoList

           gsm_map.ms.ps_PDP_ActiveReachableForPaging  ps-PDP-ActiveReachableForPaging
               Unsigned 32-bit integer
               gsm_map_ms.PDP_ContextInfoList

           gsm_map.ms.ps_SubscriberState  ps-SubscriberState
               Unsigned 32-bit integer
               gsm_map_ms.PS_SubscriberState

           gsm_map.ms.psi-enhancements  psi-enhancements
               Boolean

           gsm_map.ms.qos2_Negotiated  qos2-Negotiated
               Byte array
               gsm_map_ms.Ext2_QoS_Subscribed

           gsm_map.ms.qos2_Requested  qos2-Requested
               Byte array
               gsm_map_ms.Ext2_QoS_Subscribed

           gsm_map.ms.qos2_Subscribed  qos2-Subscribed
               Byte array
               gsm_map_ms.Ext2_QoS_Subscribed

           gsm_map.ms.qos3_Negotiated  qos3-Negotiated
               Byte array
               gsm_map_ms.Ext3_QoS_Subscribed

           gsm_map.ms.qos3_Requested  qos3-Requested
               Byte array
               gsm_map_ms.Ext3_QoS_Subscribed

           gsm_map.ms.qos3_Subscribed  qos3-Subscribed
               Byte array
               gsm_map_ms.Ext3_QoS_Subscribed

           gsm_map.ms.qos_Class_Identifier  qos-Class-Identifier
               Unsigned 32-bit integer
               gsm_map_ms.QoS_Class_Identifier

           gsm_map.ms.qos_Negotiated  qos-Negotiated
               Byte array
               gsm_map_ms.Ext_QoS_Subscribed

           gsm_map.ms.qos_Requested  qos-Requested
               Byte array
               gsm_map_ms.Ext_QoS_Subscribed

           gsm_map.ms.qos_Subscribed  qos-Subscribed
               Byte array
               gsm_map_ms.QoS_Subscribed

           gsm_map.ms.quintupletList  quintupletList
               Unsigned 32-bit integer
               gsm_map_ms.QuintupletList

           gsm_map.ms.rab_ConfigurationIndicator  rab-ConfigurationIndicator
               No value
               gsm_map_ms.NULL

           gsm_map.ms.rab_Id  rab-Id
               Unsigned 32-bit integer
               gsm_map_ms.RAB_Id

           gsm_map.ms.radioResourceInformation  radioResourceInformation
               Byte array
               gsm_map_ms.RadioResourceInformation

           gsm_map.ms.radioResourceList  radioResourceList
               Unsigned 32-bit integer
               gsm_map_ms.RadioResourceList

           gsm_map.ms.ranap_ServiceHandover  ranap-ServiceHandover
               Byte array
               gsm_map_ms.RANAP_ServiceHandover

           gsm_map.ms.rand  rand
               Byte array
               gsm_map_ms.RAND

           gsm_map.ms.re_attempt  re-attempt
               Boolean
               gsm_map_ms.BOOLEAN

           gsm_map.ms.re_synchronisationInfo  re-synchronisationInfo
               No value
               gsm_map_ms.Re_synchronisationInfo

           gsm_map.ms.regSub  regSub
               Boolean

           gsm_map.ms.regionalSubscriptionData  regionalSubscriptionData
               Unsigned 32-bit integer
               gsm_map_ms.ZoneCodeList

           gsm_map.ms.regionalSubscriptionIdentifier  regionalSubscriptionIdentifier
               Byte array
               gsm_map_ms.ZoneCode

           gsm_map.ms.regionalSubscriptionResponse  regionalSubscriptionResponse
               Unsigned 32-bit integer
               gsm_map_ms.RegionalSubscriptionResponse

           gsm_map.ms.registrationAllCF-Barred  registrationAllCF-Barred
               Boolean

           gsm_map.ms.registrationCFNotToHPLMN-Barred  registrationCFNotToHPLMN-Barred
               Boolean

           gsm_map.ms.registrationInternationalCF-Barred  registrationInternationalCF-Barred
               Boolean

           gsm_map.ms.registrationInterzonalCF-Barred  registrationInterzonalCF-Barred
               Boolean

           gsm_map.ms.registrationInterzonalCFNotToHPLMN-Barred  registrationInterzonalCFNotToHPLMN-Barred
               Boolean

           gsm_map.ms.relocationNumberList  relocationNumberList
               Unsigned 32-bit integer
               gsm_map_ms.RelocationNumberList

           gsm_map.ms.requestedCAMEL_SubscriptionInfo  requestedCAMEL-SubscriptionInfo
               Unsigned 32-bit integer
               gsm_map_ms.RequestedCAMEL_SubscriptionInfo

           gsm_map.ms.requestedCamel_SubscriptionInfo  requestedCamel-SubscriptionInfo
               Unsigned 32-bit integer
               gsm_map_ms.RequestedCAMEL_SubscriptionInfo

           gsm_map.ms.requestedDomain  requestedDomain
               Unsigned 32-bit integer
               gsm_map_ms.DomainType

           gsm_map.ms.requestedEquipmentInfo  requestedEquipmentInfo
               Byte array
               gsm_map_ms.RequestedEquipmentInfo

           gsm_map.ms.requestedInfo  requestedInfo
               No value
               gsm_map_ms.RequestedInfo

           gsm_map.ms.requestedSS_Info  requestedSS-Info
               No value
               gsm_map_ss.SS_ForBS_Code

           gsm_map.ms.requestedSubscriptionInfo  requestedSubscriptionInfo
               No value
               gsm_map_ms.RequestedSubscriptionInfo

           gsm_map.ms.requestingNodeType  requestingNodeType
               Unsigned 32-bit integer
               gsm_map_ms.RequestingNodeType

           gsm_map.ms.requestingPLMN_Id  requestingPLMN-Id
               Byte array
               gsm_map.PLMN_Id

           gsm_map.ms.rfsp_id  rfsp-id
               Unsigned 32-bit integer
               gsm_map_ms.RFSP_ID

           gsm_map.ms.rnc_Address  rnc-Address
               Byte array
               gsm_map_ms.GSN_Address

           gsm_map.ms.roamerAccessToHPLMN-AP-Barred  roamerAccessToHPLMN-AP-Barred
               Boolean

           gsm_map.ms.roamerAccessToVPLMN-AP-Barred  roamerAccessToVPLMN-AP-Barred
               Boolean

           gsm_map.ms.roamingOutsidePLMN-Barred  roamingOutsidePLMN-Barred
               Boolean

           gsm_map.ms.roamingOutsidePLMN-CountryBarred  roamingOutsidePLMN-CountryBarred
               Boolean

           gsm_map.ms.roamingOutsidePLMNIC-CallsBarred  roamingOutsidePLMNIC-CallsBarred
               Boolean

           gsm_map.ms.roamingOutsidePLMNICountryIC-CallsBarred  roamingOutsidePLMNICountryIC-CallsBarred
               Boolean

           gsm_map.ms.roamingOutsidePLMNOG-CallsBarred  roamingOutsidePLMNOG-CallsBarred
               Boolean

           gsm_map.ms.roamingRestrictedInSgsnDueToUnsupportedFeature  roamingRestrictedInSgsnDueToUnsupportedFeature
               No value
               gsm_map_ms.NULL

           gsm_map.ms.roamingRestrictedInSgsnDueToUnsuppportedFeature  roamingRestrictedInSgsnDueToUnsuppportedFeature
               No value
               gsm_map_ms.NULL

           gsm_map.ms.roamingRestrictionDueToUnsupportedFeature  roamingRestrictionDueToUnsupportedFeature
               No value
               gsm_map_ms.NULL

           gsm_map.ms.routeingAreaIdentity  routeingAreaIdentity
               Byte array
               gsm_map_ms.RAIdentity

           gsm_map.ms.routeingNumber  routeingNumber
               Byte array
               gsm_map_ms.RouteingNumber

           gsm_map.ms.sai_Present  sai-Present
               No value
               gsm_map_ms.NULL

           gsm_map.ms.segmentationProhibited  segmentationProhibited
               No value
               gsm_map_ms.NULL

           gsm_map.ms.selectedGSM_Algorithm  selectedGSM-Algorithm
               Byte array
               gsm_map_ms.SelectedGSM_Algorithm

           gsm_map.ms.selectedLSAIdentity  selectedLSAIdentity
               Byte array
               gsm_map_ms.LSAIdentity

           gsm_map.ms.selectedLSA_Id  selectedLSA-Id
               Byte array
               gsm_map_ms.LSAIdentity

           gsm_map.ms.selectedRab_Id  selectedRab-Id
               Unsigned 32-bit integer
               gsm_map_ms.RAB_Id

           gsm_map.ms.selectedUMTS_Algorithms  selectedUMTS-Algorithms
               No value
               gsm_map_ms.SelectedUMTS_Algorithms

           gsm_map.ms.sendSubscriberData  sendSubscriberData
               No value
               gsm_map_ms.NULL

           gsm_map.ms.servedPartyIP_Address  servedPartyIP-Address
               Byte array
               gsm_map_ms.PDP_Address

           gsm_map.ms.serviceChangeDP  serviceChangeDP
               Boolean

           gsm_map.ms.serviceKey  serviceKey
               Unsigned 32-bit integer
               gsm_map_ms.ServiceKey

           gsm_map.ms.serviceTypeIdentity  serviceTypeIdentity
               Unsigned 32-bit integer
               gsm_map.LCSServiceTypeID

           gsm_map.ms.serviceTypeList  serviceTypeList
               Unsigned 32-bit integer
               gsm_map_ms.ServiceTypeList

           gsm_map.ms.servingNetworkEnhancedDialledServices  servingNetworkEnhancedDialledServices
               Boolean

           gsm_map.ms.servingNodeTypeIndicator  servingNodeTypeIndicator
               No value
               gsm_map_ms.NULL

           gsm_map.ms.sgsn_Address  sgsn-Address
               Byte array
               gsm_map_ms.GSN_Address

           gsm_map.ms.sgsn_CAMEL_SubscriptionInfo  sgsn-CAMEL-SubscriptionInfo
               No value
               gsm_map_ms.SGSN_CAMEL_SubscriptionInfo

           gsm_map.ms.sgsn_Capability  sgsn-Capability
               No value
               gsm_map_ms.SGSN_Capability

           gsm_map.ms.sgsn_Number  sgsn-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ms.sgsn_mmeSeparationSupported  sgsn-mmeSeparationSupported
               No value
               gsm_map_ms.NULL

           gsm_map.ms.skipSubscriberDataUpdate  skipSubscriberDataUpdate
               No value
               gsm_map_ms.NULL

           gsm_map.ms.smsCallBarringSupportIndicator  smsCallBarringSupportIndicator
               No value
               gsm_map_ms.NULL

           gsm_map.ms.sms_CAMEL_TDP_DataList  sms-CAMEL-TDP-DataList
               Unsigned 32-bit integer
               gsm_map_ms.SMS_CAMEL_TDP_DataList

           gsm_map.ms.sms_TriggerDetectionPoint  sms-TriggerDetectionPoint
               Unsigned 32-bit integer
               gsm_map_ms.SMS_TriggerDetectionPoint

           gsm_map.ms.solsaSupportIndicator  solsaSupportIndicator
               No value
               gsm_map_ms.NULL

           gsm_map.ms.specificAPNInfoList  specificAPNInfoList
               Unsigned 32-bit integer
               gsm_map_ms.SpecificAPNInfoList

           gsm_map.ms.specificCSIDeletedList  specificCSIDeletedList
               Byte array
               gsm_map_ms.SpecificCSI_Withdraw

           gsm_map.ms.specificCSI_Withdraw  specificCSI-Withdraw
               Byte array
               gsm_map_ms.SpecificCSI_Withdraw

           gsm_map.ms.splitLeg  splitLeg
               Boolean

           gsm_map.ms.sres  sres
               Byte array
               gsm_map_ms.SRES

           gsm_map.ms.ss-AccessBarred  ss-AccessBarred
               Boolean

           gsm_map.ms.ss-csi  ss-csi
               Boolean

           gsm_map.ms.ss_CSI  ss-CSI
               No value
               gsm_map_ms.SS_CSI

           gsm_map.ms.ss_CamelData  ss-CamelData
               No value
               gsm_map_ms.SS_CamelData

           gsm_map.ms.ss_Code  ss-Code
               Unsigned 8-bit integer
               gsm_map.SS_Code

           gsm_map.ms.ss_Data  ss-Data
               No value
               gsm_map_ms.Ext_SS_Data

           gsm_map.ms.ss_EventList  ss-EventList
               Unsigned 32-bit integer
               gsm_map_ms.SS_EventList

           gsm_map.ms.ss_InfoFor_CSE  ss-InfoFor-CSE
               Unsigned 32-bit integer
               gsm_map_ms.Ext_SS_InfoFor_CSE

           gsm_map.ms.ss_List  ss-List
               Unsigned 32-bit integer
               gsm_map_ss.SS_List

           gsm_map.ms.ss_Status  ss-Status
               Byte array
               gsm_map.Ext_SS_Status

           gsm_map.ms.ss_SubscriptionOption  ss-SubscriptionOption
               Unsigned 32-bit integer
               gsm_map_ss.SS_SubscriptionOption

           gsm_map.ms.stn_sr  stn-sr
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ms.stn_srWithdraw  stn-srWithdraw
               No value
               gsm_map_ms.NULL

           gsm_map.ms.subscribedEnhancedDialledServices  subscribedEnhancedDialledServices
               Boolean

           gsm_map.ms.subscriberDataStored  subscriberDataStored
               Byte array
               gsm_map_ms.AgeIndicator

           gsm_map.ms.subscriberIdentity  subscriberIdentity
               Unsigned 32-bit integer
               gsm_map.SubscriberIdentity

           gsm_map.ms.subscriberInfo  subscriberInfo
               No value
               gsm_map_ms.SubscriberInfo

           gsm_map.ms.subscriberState  subscriberState
               Unsigned 32-bit integer
               gsm_map_ms.SubscriberState

           gsm_map.ms.subscriberStatus  subscriberStatus
               Unsigned 32-bit integer
               gsm_map_ms.SubscriberStatus

           gsm_map.ms.superChargerSupportedInHLR  superChargerSupportedInHLR
               Byte array
               gsm_map_ms.AgeIndicator

           gsm_map.ms.superChargerSupportedInServingNetworkEntity  superChargerSupportedInServingNetworkEntity
               Unsigned 32-bit integer
               gsm_map_ms.SuperChargerInfo

           gsm_map.ms.supportedCAMELPhases  supportedCAMELPhases
               Byte array
               gsm_map_ms.SupportedCamelPhases

           gsm_map.ms.supportedCamelPhases  supportedCamelPhases
               Byte array
               gsm_map_ms.SupportedCamelPhases

           gsm_map.ms.supportedFeatures  supportedFeatures
               Byte array
               gsm_map_ms.SupportedFeatures

           gsm_map.ms.supportedLCS_CapabilitySets  supportedLCS-CapabilitySets
               Byte array
               gsm_map_ms.SupportedLCS_CapabilitySets

           gsm_map.ms.supportedRAT_TypesIndicator  supportedRAT-TypesIndicator
               Byte array
               gsm_map_ms.SupportedRAT_Types

           gsm_map.ms.supportedSGSN_CAMEL_Phases  supportedSGSN-CAMEL-Phases
               Byte array
               gsm_map_ms.SupportedCamelPhases

           gsm_map.ms.supportedVLR_CAMEL_Phases  supportedVLR-CAMEL-Phases
               Byte array
               gsm_map_ms.SupportedCamelPhases

           gsm_map.ms.t-csi  t-csi
               Boolean

           gsm_map.ms.t_BCSM_CAMEL_TDP_CriteriaList  t-BCSM-CAMEL-TDP-CriteriaList
               Unsigned 32-bit integer
               gsm_map_ms.T_BCSM_CAMEL_TDP_CriteriaList

           gsm_map.ms.t_BCSM_TriggerDetectionPoint  t-BCSM-TriggerDetectionPoint
               Unsigned 32-bit integer
               gsm_map_ms.T_BcsmTriggerDetectionPoint

           gsm_map.ms.t_BcsmCamelTDPDataList  t-BcsmCamelTDPDataList
               Unsigned 32-bit integer
               gsm_map_ms.T_BcsmCamelTDPDataList

           gsm_map.ms.t_BcsmTriggerDetectionPoint  t-BcsmTriggerDetectionPoint
               Unsigned 32-bit integer
               gsm_map_ms.T_BcsmTriggerDetectionPoint

           gsm_map.ms.t_CSI  t-CSI
               No value
               gsm_map_ms.T_CSI

           gsm_map.ms.t_CauseValueCriteria  t-CauseValueCriteria
               Unsigned 32-bit integer
               gsm_map_ms.T_CauseValueCriteria

           gsm_map.ms.targetCellId  targetCellId
               Byte array
               gsm_map.GlobalCellId

           gsm_map.ms.targetMSC_Number  targetMSC-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ms.targetRNCId  targetRNCId
               Byte array
               gsm_map_ms.RNCId

           gsm_map.ms.teid_ForGnAndGp  teid-ForGnAndGp
               Byte array
               gsm_map_ms.TEID

           gsm_map.ms.teid_ForIu  teid-ForIu
               Byte array
               gsm_map_ms.TEID

           gsm_map.ms.teleserviceList  teleserviceList
               Unsigned 32-bit integer
               gsm_map_ms.TeleserviceList

           gsm_map.ms.tif-csi  tif-csi
               Boolean

           gsm_map.ms.tif_CSI  tif-CSI
               No value
               gsm_map_ms.NULL

           gsm_map.ms.tif_CSI_NotificationToCSE  tif-CSI-NotificationToCSE
               No value
               gsm_map_ms.NULL

           gsm_map.ms.tmsi  tmsi
               Byte array
               gsm_map.TMSI

           gsm_map.ms.tpdu_TypeCriterion  tpdu-TypeCriterion
               Unsigned 32-bit integer
               gsm_map_ms.TPDU_TypeCriterion

           gsm_map.ms.tracePropagationList  tracePropagationList
               No value
               gsm_map_om.TracePropagationList

           gsm_map.ms.transactionId  transactionId
               Byte array
               gsm_map_ms.TransactionId

           gsm_map.ms.tripletList  tripletList
               Unsigned 32-bit integer
               gsm_map_ms.TripletList

           gsm_map.ms.typeOfUpdate  typeOfUpdate
               Unsigned 32-bit integer
               gsm_map_ms.TypeOfUpdate

           gsm_map.ms.uesbi_Iu  uesbi-Iu
               No value
               gsm_map_ms.UESBI_Iu

           gsm_map.ms.uesbi_IuA  uesbi-IuA
               Byte array
               gsm_map_ms.UESBI_IuA

           gsm_map.ms.uesbi_IuB  uesbi-IuB
               Byte array
               gsm_map_ms.UESBI_IuB

           gsm_map.ms.umts_SecurityContextData  umts-SecurityContextData
               No value
               gsm_map_ms.UMTS_SecurityContextData

           gsm_map.ms.updateMME  updateMME
               Boolean

           gsm_map.ms.usedRAT_Type  usedRAT-Type
               Unsigned 32-bit integer
               gsm_map_ms.Used_RAT_Type

           gsm_map.ms.utran  utran
               Boolean

           gsm_map.ms.utranCodecList  utranCodecList
               No value
               gsm_map_ms.CodecList

           gsm_map.ms.utranNotAllowed  utranNotAllowed
               Boolean

           gsm_map.ms.v_gmlc_Address  v-gmlc-Address
               Byte array
               gsm_map_ms.GSN_Address

           gsm_map.ms.vbsGroupIndication  vbsGroupIndication
               No value
               gsm_map_ms.NULL

           gsm_map.ms.vbsSubscriptionData  vbsSubscriptionData
               Unsigned 32-bit integer
               gsm_map_ms.VBSDataList

           gsm_map.ms.vgcsGroupIndication  vgcsGroupIndication
               No value
               gsm_map_ms.NULL

           gsm_map.ms.vgcsSubscriptionData  vgcsSubscriptionData
               Unsigned 32-bit integer
               gsm_map_ms.VGCSDataList

           gsm_map.ms.vlrCamelSubscriptionInfo  vlrCamelSubscriptionInfo
               No value
               gsm_map_ms.VlrCamelSubscriptionInfo

           gsm_map.ms.vlr_Capability  vlr-Capability
               No value
               gsm_map_ms.VLR_Capability

           gsm_map.ms.vlr_Number  vlr-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ms.vlr_number  vlr-number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ms.vplmnAddressAllowed  vplmnAddressAllowed
               No value
               gsm_map_ms.NULL

           gsm_map.ms.vt-IM-CSI  vt-IM-CSI
               Boolean

           gsm_map.ms.vt-csi  vt-csi
               Boolean

           gsm_map.ms.vt_BCSM_CAMEL_TDP_CriteriaList  vt-BCSM-CAMEL-TDP-CriteriaList
               Unsigned 32-bit integer
               gsm_map_ms.T_BCSM_CAMEL_TDP_CriteriaList

           gsm_map.ms.vt_CSI  vt-CSI
               No value
               gsm_map_ms.T_CSI

           gsm_map.ms.vt_IM_BCSM_CAMEL_TDP_CriteriaList  vt-IM-BCSM-CAMEL-TDP-CriteriaList
               Unsigned 32-bit integer
               gsm_map_ms.T_BCSM_CAMEL_TDP_CriteriaList

           gsm_map.ms.vt_IM_CSI  vt-IM-CSI
               No value
               gsm_map_ms.T_CSI

           gsm_map.ms.warningToneEnhancements  warningToneEnhancements
               Boolean

           gsm_map.ms.wrongPasswordAttemptsCounter  wrongPasswordAttemptsCounter
               Unsigned 32-bit integer
               gsm_map_ms.WrongPasswordAttemptsCounter

           gsm_map.ms.xres  xres
               Byte array
               gsm_map_ms.XRES

           gsm_map.msisdn  msisdn
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.na_ESRK_Request  na-ESRK-Request
               No value
               gsm_map.NULL

           gsm_map.naea_PreferredCIC  naea-PreferredCIC
               Byte array
               gsm_map.NAEA_CIC

           gsm_map.nature_of_number  Nature of number
               Unsigned 8-bit integer
               Nature of number

           gsm_map.nbrSB  nbrSB
               Unsigned 32-bit integer
               gsm_map.MaxMC_Bearers

           gsm_map.nbrUser  nbrUser
               Unsigned 32-bit integer
               gsm_map.MC_Bearers

           gsm_map.notification_to_clling_party  Notification to calling party
               Boolean
               Notification to calling party

           gsm_map.notification_to_forwarding_party  Notification to forwarding party
               Boolean
               Notification to forwarding party

           gsm_map.number_plan  Number plan
               Unsigned 8-bit integer
               Number plan

           gsm_map.old.Component  Component
               Unsigned 32-bit integer
               gsm_map.old.Component

           gsm_map.om.a  a
               Boolean

           gsm_map.om.bm-sc  bm-sc
               Boolean

           gsm_map.om.bmsc_List  bmsc-List
               Byte array
               gsm_map_om.BMSC_InterfaceList

           gsm_map.om.bmsc_TraceDepth  bmsc-TraceDepth
               Unsigned 32-bit integer
               gsm_map_om.TraceDepth

           gsm_map.om.cap  cap
               Boolean

           gsm_map.om.context  context
               Boolean

           gsm_map.om.extensionContainer  extensionContainer
               No value
               gsm_map.ExtensionContainer

           gsm_map.om.gb  gb
               Boolean

           gsm_map.om.ge  ge
               Boolean

           gsm_map.om.ggsn  ggsn
               Boolean

           gsm_map.om.ggsn_List  ggsn-List
               Byte array
               gsm_map_om.GGSN_InterfaceList

           gsm_map.om.ggsn_TraceDepth  ggsn-TraceDepth
               Unsigned 32-bit integer
               gsm_map_om.TraceDepth

           gsm_map.om.gi  gi
               Boolean

           gsm_map.om.gmb  gmb
               Boolean

           gsm_map.om.gn  gn
               Boolean

           gsm_map.om.gs  gs
               Boolean

           gsm_map.om.handovers  handovers
               Boolean

           gsm_map.om.imsi  imsi
               Byte array
               gsm_map.IMSI

           gsm_map.om.iu  iu
               Boolean

           gsm_map.om.iu-up  iu-up
               Boolean

           gsm_map.om.iub  iub
               Boolean

           gsm_map.om.iur  iur
               Boolean

           gsm_map.om.lu-imsiAttach-imsiDetach  lu-imsiAttach-imsiDetach
               Boolean

           gsm_map.om.map-b  map-b
               Boolean

           gsm_map.om.map-c  map-c
               Boolean

           gsm_map.om.map-d  map-d
               Boolean

           gsm_map.om.map-e  map-e
               Boolean

           gsm_map.om.map-f  map-f
               Boolean

           gsm_map.om.map-g  map-g
               Boolean

           gsm_map.om.map-gd  map-gd
               Boolean

           gsm_map.om.map-gf  map-gf
               Boolean

           gsm_map.om.map-gr  map-gr
               Boolean

           gsm_map.om.mbmsContext  mbmsContext
               Boolean

           gsm_map.om.mbmsMulticastServiceActivation  mbmsMulticastServiceActivation
               Boolean

           gsm_map.om.mc  mc
               Boolean

           gsm_map.om.mgw  mgw
               Boolean

           gsm_map.om.mgw_EventList  mgw-EventList
               Byte array
               gsm_map_om.MGW_EventList

           gsm_map.om.mgw_InterfaceList  mgw-InterfaceList
               Byte array
               gsm_map_om.MGW_InterfaceList

           gsm_map.om.mgw_List  mgw-List
               Byte array
               gsm_map_om.MGW_InterfaceList

           gsm_map.om.mgw_TraceDepth  mgw-TraceDepth
               Unsigned 32-bit integer
               gsm_map_om.TraceDepth

           gsm_map.om.mo-mt-sms  mo-mt-sms
               Boolean

           gsm_map.om.mo-mtCall  mo-mtCall
               Boolean

           gsm_map.om.msc-s  msc-s
               Boolean

           gsm_map.om.msc_s_EventList  msc-s-EventList
               Byte array
               gsm_map_om.MSC_S_EventList

           gsm_map.om.msc_s_InterfaceList  msc-s-InterfaceList
               Byte array
               gsm_map_om.MSC_S_InterfaceList

           gsm_map.om.msc_s_List  msc-s-List
               Byte array
               gsm_map_om.MSC_S_InterfaceList

           gsm_map.om.msc_s_TraceDepth  msc-s-TraceDepth
               Unsigned 32-bit integer
               gsm_map_om.TraceDepth

           gsm_map.om.nb-up  nb-up
               Boolean

           gsm_map.om.omc_Id  omc-Id
               Byte array
               gsm_map.AddressString

           gsm_map.om.pdpContext  pdpContext
               Boolean

           gsm_map.om.rau-gprsAttach-gprsDetach  rau-gprsAttach-gprsDetach
               Boolean

           gsm_map.om.rnc  rnc
               Boolean

           gsm_map.om.rnc_InterfaceList  rnc-InterfaceList
               Byte array
               gsm_map_om.RNC_InterfaceList

           gsm_map.om.rnc_List  rnc-List
               Byte array
               gsm_map_om.RNC_InterfaceList

           gsm_map.om.rnc_TraceDepth  rnc-TraceDepth
               Unsigned 32-bit integer
               gsm_map_om.TraceDepth

           gsm_map.om.sgsn  sgsn
               Boolean

           gsm_map.om.sgsn_List  sgsn-List
               Byte array
               gsm_map_om.SGSN_InterfaceList

           gsm_map.om.sgsn_TraceDepth  sgsn-TraceDepth
               Unsigned 32-bit integer
               gsm_map_om.TraceDepth

           gsm_map.om.ss  ss
               Boolean

           gsm_map.om.traceDepthList  traceDepthList
               No value
               gsm_map_om.TraceDepthList

           gsm_map.om.traceEventList  traceEventList
               No value
               gsm_map_om.TraceEventList

           gsm_map.om.traceInterfaceList  traceInterfaceList
               No value
               gsm_map_om.TraceInterfaceList

           gsm_map.om.traceNE_TypeList  traceNE-TypeList
               Byte array
               gsm_map_om.TraceNE_TypeList

           gsm_map.om.traceRecordingSessionReference  traceRecordingSessionReference
               Byte array
               gsm_map_om.TraceRecordingSessionReference

           gsm_map.om.traceReference  traceReference
               Byte array
               gsm_map_om.TraceReference

           gsm_map.om.traceReference2  traceReference2
               Byte array
               gsm_map_om.TraceReference2

           gsm_map.om.traceSupportIndicator  traceSupportIndicator
               No value
               gsm_map_om.NULL

           gsm_map.om.traceType  traceType
               Unsigned 32-bit integer
               gsm_map_om.TraceType

           gsm_map.om.uu  uu
               Boolean

           gsm_map.pcs_Extensions  pcs-Extensions
               No value
               gsm_map.PCS_Extensions

           gsm_map.pdp_type_org  PDP Type Organization
               Unsigned 8-bit integer
               PDP Type Organization

           gsm_map.privateExtensionList  privateExtensionList
               Unsigned 32-bit integer
               gsm_map.PrivateExtensionList

           gsm_map.protocolId  protocolId
               Unsigned 32-bit integer
               gsm_map.ProtocolId

           gsm_map.qos.ber  Residual Bit Error Rate (BER)
               Unsigned 8-bit integer
               Residual Bit Error Rate (BER)

           gsm_map.qos.brate_dlink  Guaranteed bit rate for downlink in kbit/s
               Unsigned 32-bit integer
               Guaranteed bit rate for downlink

           gsm_map.qos.brate_ulink  Guaranteed bit rate for uplink in kbit/s
               Unsigned 32-bit integer
               Guaranteed bit rate for uplink

           gsm_map.qos.del_of_err_sdu  Delivery of erroneous SDUs
               Unsigned 8-bit integer
               Delivery of erroneous SDUs

           gsm_map.qos.del_order  Delivery order
               Unsigned 8-bit integer
               Delivery order

           gsm_map.qos.max_brate_dlink  Maximum bit rate for downlink in kbit/s
               Unsigned 32-bit integer
               Maximum bit rate for downlink

           gsm_map.qos.max_brate_ulink  Maximum bit rate for uplink in kbit/s
               Unsigned 32-bit integer
               Maximum bit rate for uplink

           gsm_map.qos.max_sdu  Maximum SDU size
               Unsigned 32-bit integer
               Maximum SDU size

           gsm_map.qos.sdu_err_rat  SDU error ratio
               Unsigned 8-bit integer
               SDU error ratio

           gsm_map.qos.traff_hdl_pri  Traffic handling priority
               Unsigned 8-bit integer
               Traffic handling priority

           gsm_map.qos.traffic_cls  Traffic class
               Unsigned 8-bit integer
               Traffic class

           gsm_map.qos.transfer_delay  Transfer delay (Raw data see TS 24.008 for interpretation)
               Unsigned 8-bit integer
               Transfer delay

           gsm_map.ranap.EncryptionInformation  EncryptionInformation
               No value
               gsm_map.ranap.EncryptionInformation

           gsm_map.ranap.IntegrityProtectionInformation  IntegrityProtectionInformation
               No value
               gsm_map.ranap.IntegrityProtectionInformation

           gsm_map.ranap.service_Handover  service-Handover
               Unsigned 32-bit integer
               gsm_map.ranap.Service_Handover

           gsm_map.redirecting_presentation  Redirecting presentation
               Boolean
               Redirecting presentation

           gsm_map.servicecentreaddress_digits  ServiceCentreAddress digits
               String
               ServiceCentreAddress digits

           gsm_map.signalInfo  signalInfo
               Byte array
               gsm_map.SignalInfo

           gsm_map.slr_Arg_PCS_Extensions  slr-Arg-PCS-Extensions
               No value
               gsm_map.SLR_Arg_PCS_Extensions

           gsm_map.sm.ISDN_AddressString  ISDN-AddressString
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.sm.absentSubscriberDiagnosticSM  absentSubscriberDiagnosticSM
               Unsigned 32-bit integer
               gsm_map_er.AbsentSubscriberDiagnosticSM

           gsm_map.sm.additionalAbsentSubscriberDiagnosticSM  additionalAbsentSubscriberDiagnosticSM
               Unsigned 32-bit integer
               gsm_map_er.AbsentSubscriberDiagnosticSM

           gsm_map.sm.additionalAlertReasonIndicator  additionalAlertReasonIndicator
               No value
               gsm_map_sm.NULL

           gsm_map.sm.additionalSM_DeliveryOutcome  additionalSM-DeliveryOutcome
               Unsigned 32-bit integer
               gsm_map_sm.SM_DeliveryOutcome

           gsm_map.sm.additional_Number  additional-Number
               Unsigned 32-bit integer
               gsm_map_sm.Additional_Number

           gsm_map.sm.alertReason  alertReason
               Unsigned 32-bit integer
               gsm_map_sm.AlertReason

           gsm_map.sm.alertReasonIndicator  alertReasonIndicator
               No value
               gsm_map_sm.NULL

           gsm_map.sm.asciCallReference  asciCallReference
               Byte array
               gsm_map.ASCI_CallReference

           gsm_map.sm.deliveryOutcomeIndicator  deliveryOutcomeIndicator
               No value
               gsm_map_sm.NULL

           gsm_map.sm.dispatcherList  dispatcherList
               Unsigned 32-bit integer
               gsm_map_sm.DispatcherList

           gsm_map.sm.extensionContainer  extensionContainer
               No value
               gsm_map.ExtensionContainer

           gsm_map.sm.gprsNodeIndicator  gprsNodeIndicator
               No value
               gsm_map_sm.NULL

           gsm_map.sm.gprsSupportIndicator  gprsSupportIndicator
               No value
               gsm_map_sm.NULL

           gsm_map.sm.imsi  imsi
               Byte array
               gsm_map.IMSI

           gsm_map.sm.ip_sm_gw_Indicator  ip-sm-gw-Indicator
               No value
               gsm_map_sm.NULL

           gsm_map.sm.ip_sm_gw_absentSubscriberDiagnosticSM  ip-sm-gw-absentSubscriberDiagnosticSM
               Unsigned 32-bit integer
               gsm_map_er.AbsentSubscriberDiagnosticSM

           gsm_map.sm.ip_sm_gw_sm_deliveryOutcome  ip-sm-gw-sm-deliveryOutcome
               Unsigned 32-bit integer
               gsm_map_sm.SM_DeliveryOutcome

           gsm_map.sm.lmsi  lmsi
               Byte array
               gsm_map.LMSI

           gsm_map.sm.locationInfoWithLMSI  locationInfoWithLMSI
               No value
               gsm_map_sm.LocationInfoWithLMSI

           gsm_map.sm.mcef-Set  mcef-Set
               Boolean

           gsm_map.sm.mnrf-Set  mnrf-Set
               Boolean

           gsm_map.sm.mnrg-Set  mnrg-Set
               Boolean

           gsm_map.sm.moreMessagesToSend  moreMessagesToSend
               No value
               gsm_map_sm.NULL

           gsm_map.sm.msc_Number  msc-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.sm.msisdn  msisdn
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.sm.mw_Status  mw-Status
               Byte array
               gsm_map_sm.MW_Status

           gsm_map.sm.networkNode_Number  networkNode-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.sm.noSM_RP_DA  noSM-RP-DA
               No value
               gsm_map_sm.NULL

           gsm_map.sm.noSM_RP_OA  noSM-RP-OA
               No value
               gsm_map_sm.NULL

           gsm_map.sm.ongoingCall  ongoingCall
               No value
               gsm_map_sm.NULL

           gsm_map.sm.sc-AddressNotIncluded  sc-AddressNotIncluded
               Boolean

           gsm_map.sm.serviceCentreAddress  serviceCentreAddress
               Byte array
               gsm_map.AddressString

           gsm_map.sm.serviceCentreAddressDA  serviceCentreAddressDA
               Byte array
               gsm_map.AddressString

           gsm_map.sm.serviceCentreAddressOA  serviceCentreAddressOA
               Byte array
               gsm_map_sm.T_serviceCentreAddressOA

           gsm_map.sm.sgsn_Number  sgsn-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.sm.sm_DeliveryOutcome  sm-DeliveryOutcome
               Unsigned 32-bit integer
               gsm_map_sm.SM_DeliveryOutcome

           gsm_map.sm.sm_RP_DA  sm-RP-DA
               Unsigned 32-bit integer
               gsm_map_sm.SM_RP_DA

           gsm_map.sm.sm_RP_MTI  sm-RP-MTI
               Unsigned 32-bit integer
               gsm_map_sm.SM_RP_MTI

           gsm_map.sm.sm_RP_OA  sm-RP-OA
               Unsigned 32-bit integer
               gsm_map_sm.SM_RP_OA

           gsm_map.sm.sm_RP_PRI  sm-RP-PRI
               Boolean
               gsm_map_sm.BOOLEAN

           gsm_map.sm.sm_RP_SMEA  sm-RP-SMEA
               Byte array
               gsm_map_sm.SM_RP_SMEA

           gsm_map.sm.sm_RP_UI  sm-RP-UI
               Byte array
               gsm_map.SignalInfo

           gsm_map.sm.sm_deliveryNotIntended  sm-deliveryNotIntended
               Unsigned 32-bit integer
               gsm_map_sm.SM_DeliveryNotIntended

           gsm_map.sm.storedMSISDN  storedMSISDN
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ss.AddressString  AddressString
               Byte array
               gsm_map.AddressString

           gsm_map.ss.BasicServiceCode  BasicServiceCode
               Unsigned 32-bit integer
               gsm_map.BasicServiceCode

           gsm_map.ss.CCBS_Feature  CCBS-Feature
               No value
               gsm_map_ss.CCBS_Feature

           gsm_map.ss.CallBarringFeature  CallBarringFeature
               No value
               gsm_map_ss.CallBarringFeature

           gsm_map.ss.ForwardingFeature  ForwardingFeature
               No value
               gsm_map_ss.ForwardingFeature

           gsm_map.ss.SS_Code  SS-Code
               Unsigned 8-bit integer
               gsm_map.SS_Code

           gsm_map.ss.alertingPattern  alertingPattern
               Byte array
               gsm_map.AlertingPattern

           gsm_map.ss.b_subscriberNumber  b-subscriberNumber
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ss.b_subscriberSubaddress  b-subscriberSubaddress
               Byte array
               gsm_map.ISDN_SubaddressString

           gsm_map.ss.basicService  basicService
               Unsigned 32-bit integer
               gsm_map.BasicServiceCode

           gsm_map.ss.basicServiceGroup  basicServiceGroup
               Unsigned 32-bit integer
               gsm_map.BasicServiceCode

           gsm_map.ss.basicServiceGroupList  basicServiceGroupList
               Unsigned 32-bit integer
               gsm_map_ss.BasicServiceGroupList

           gsm_map.ss.callBarringFeatureList  callBarringFeatureList
               Unsigned 32-bit integer
               gsm_map_ss.CallBarringFeatureList

           gsm_map.ss.callBarringInfo  callBarringInfo
               No value
               gsm_map_ss.CallBarringInfo

           gsm_map.ss.callInfo  callInfo
               No value
               gsm_map.ExternalSignalInfo

           gsm_map.ss.camel-invoked  camel-invoked
               Boolean

           gsm_map.ss.ccbs_Data  ccbs-Data
               No value
               gsm_map_ss.CCBS_Data

           gsm_map.ss.ccbs_Feature  ccbs-Feature
               No value
               gsm_map_ss.CCBS_Feature

           gsm_map.ss.ccbs_FeatureList  ccbs-FeatureList
               Unsigned 32-bit integer
               gsm_map_ss.CCBS_FeatureList

           gsm_map.ss.ccbs_Index  ccbs-Index
               Unsigned 32-bit integer
               gsm_map_ss.CCBS_Index

           gsm_map.ss.ccbs_RequestState  ccbs-RequestState
               Unsigned 32-bit integer
               gsm_map_ss.CCBS_RequestState

           gsm_map.ss.cliRestrictionOption  cliRestrictionOption
               Unsigned 32-bit integer
               gsm_map_ss.CliRestrictionOption

           gsm_map.ss.clir-invoked  clir-invoked
               Boolean

           gsm_map.ss.defaultPriority  defaultPriority
               Unsigned 32-bit integer
               gsm_map.EMLPP_Priority

           gsm_map.ss.extensionContainer  extensionContainer
               No value
               gsm_map.ExtensionContainer

           gsm_map.ss.forwardedToNumber  forwardedToNumber
               Byte array
               gsm_map.AddressString

           gsm_map.ss.forwardedToSubaddress  forwardedToSubaddress
               Byte array
               gsm_map.ISDN_SubaddressString

           gsm_map.ss.forwardingFeatureList  forwardingFeatureList
               Unsigned 32-bit integer
               gsm_map_ss.ForwardingFeatureList

           gsm_map.ss.forwardingInfo  forwardingInfo
               No value
               gsm_map_ss.ForwardingInfo

           gsm_map.ss.forwardingOptions  forwardingOptions
               Byte array
               gsm_map_ss.ForwardingOptions

           gsm_map.ss.genericServiceInfo  genericServiceInfo
               No value
               gsm_map_ss.GenericServiceInfo

           gsm_map.ss.imsi  imsi
               Byte array
               gsm_map.IMSI

           gsm_map.ss.longFTN_Supported  longFTN-Supported
               No value
               gsm_map_ss.NULL

           gsm_map.ss.longForwardedToNumber  longForwardedToNumber
               Byte array
               gsm_map.FTN_AddressString

           gsm_map.ss.maximumEntitledPriority  maximumEntitledPriority
               Unsigned 32-bit integer
               gsm_map.EMLPP_Priority

           gsm_map.ss.msisdn  msisdn
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ss.nbrSB  nbrSB
               Unsigned 32-bit integer
               gsm_map.MaxMC_Bearers

           gsm_map.ss.nbrSN  nbrSN
               Unsigned 32-bit integer
               gsm_map.MC_Bearers

           gsm_map.ss.nbrUser  nbrUser
               Unsigned 32-bit integer
               gsm_map.MC_Bearers

           gsm_map.ss.networkSignalInfo  networkSignalInfo
               No value
               gsm_map.ExternalSignalInfo

           gsm_map.ss.noReplyConditionTime  noReplyConditionTime
               Unsigned 32-bit integer
               gsm_map_ss.NoReplyConditionTime

           gsm_map.ss.overrideCategory  overrideCategory
               Unsigned 32-bit integer
               gsm_map_ss.OverrideCategory

           gsm_map.ss.serviceIndicator  serviceIndicator
               Byte array
               gsm_map_ss.ServiceIndicator

           gsm_map.ss.ss_Code  ss-Code
               Unsigned 8-bit integer
               gsm_map.SS_Code

           gsm_map.ss.ss_Data  ss-Data
               No value
               gsm_map_ss.SS_Data

           gsm_map.ss.ss_Event  ss-Event
               Unsigned 8-bit integer
               gsm_map.SS_Code

           gsm_map.ss.ss_EventSpecification  ss-EventSpecification
               Unsigned 32-bit integer
               gsm_map_ss.SS_EventSpecification

           gsm_map.ss.ss_Status  ss-Status
               Byte array
               gsm_map_ss.SS_Status

           gsm_map.ss.ss_SubscriptionOption  ss-SubscriptionOption
               Unsigned 32-bit integer
               gsm_map_ss.SS_SubscriptionOption

           gsm_map.ss.translatedB_Number  translatedB-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_map.ss.ussd_DataCodingScheme  ussd-DataCodingScheme
               Byte array
               gsm_map_ss.USSD_DataCodingScheme

           gsm_map.ss.ussd_String  ussd-String
               Byte array
               gsm_map_ss.USSD_String

           gsm_map.ss_Code  ss-Code
               Unsigned 8-bit integer
               gsm_map.SS_Code

           gsm_map.ss_Status  ss-Status
               Byte array
               gsm_map.Ext_SS_Status

           gsm_map.ss_status_a_bit  A bit
               Boolean
               A bit

           gsm_map.ss_status_p_bit  P bit
               Boolean
               P bit

           gsm_map.ss_status_q_bit  Q bit
               Boolean
               Q bit

           gsm_map.ss_status_r_bit  R bit
               Boolean
               R bit

           gsm_map.teleservice  teleservice
               Unsigned 8-bit integer
               gsm_map.TeleserviceCode

           gsm_map.tmsi  tmsi
               Byte array
               gsm_map.TMSI

           gsm_map.unused  Unused
               Unsigned 8-bit integer
               Unused

           gsm_old.AuthenticationTriplet_v2  AuthenticationTriplet-v2
               No value
               gsm_old.AuthenticationTriplet_v2

           gsm_old.SendAuthenticationInfoResOld_item  SendAuthenticationInfoResOld item
               No value
               gsm_old.SendAuthenticationInfoResOld_item

           gsm_old.b_Subscriber_Address  b-Subscriber-Address
               Byte array
               gsm_map.ISDN_AddressString

           gsm_old.basicService  basicService
               Unsigned 32-bit integer
               gsm_map.BasicServiceCode

           gsm_old.bss_APDU  bss-APDU
               No value
               gsm_old.Bss_APDU

           gsm_old.call_Direction  call-Direction
               Byte array
               gsm_old.CallDirection

           gsm_old.category  category
               Byte array
               gsm_old.Category

           gsm_old.channelType  channelType
               No value
               gsm_map.ExternalSignalInfo

           gsm_old.chosenChannel  chosenChannel
               No value
               gsm_map.ExternalSignalInfo

           gsm_old.cug_CheckInfo  cug-CheckInfo
               No value
               gsm_map_ch.CUG_CheckInfo

           gsm_old.derivable  derivable
               Signed 32-bit integer
               gsm_old.InvokeIdType

           gsm_old.errorCode  errorCode
               Unsigned 32-bit integer
               gsm_old.MAP_ERROR

           gsm_old.extensionContainer  extensionContainer
               No value
               gsm_map.ExtensionContainer

           gsm_old.generalProblem  generalProblem
               Signed 32-bit integer
               gsm_old.GeneralProblem

           gsm_old.globalValue  globalValue
               Object Identifier
               gsm_old.OBJECT_IDENTIFIER

           gsm_old.gsm_BearerCapability  gsm-BearerCapability
               No value
               gsm_map.ExternalSignalInfo

           gsm_old.handoverNumber  handoverNumber
               Byte array
               gsm_map.ISDN_AddressString

           gsm_old.highLayerCompatibility  highLayerCompatibility
               No value
               gsm_map.ExternalSignalInfo

           gsm_old.ho_NumberNotRequired  ho-NumberNotRequired
               No value
               gsm_old.NULL

           gsm_old.imsi  imsi
               Byte array
               gsm_map.IMSI

           gsm_old.initialisationVector  initialisationVector
               Byte array
               gsm_old.InitialisationVector

           gsm_old.invoke  invoke
               No value
               gsm_old.Invoke

           gsm_old.invokeID  invokeID
               Signed 32-bit integer
               gsm_old.InvokeIdType

           gsm_old.invokeIDRej  invokeIDRej
               Unsigned 32-bit integer
               gsm_old.T_invokeIDRej

           gsm_old.invokeProblem  invokeProblem
               Signed 32-bit integer
               gsm_old.InvokeProblem

           gsm_old.invokeparameter  invokeparameter
               No value
               gsm_old.InvokeParameter

           gsm_old.isdn_BearerCapability  isdn-BearerCapability
               No value
               gsm_map.ExternalSignalInfo

           gsm_old.kc  kc
               Byte array
               gsm_old.Kc

           gsm_old.linkedID  linkedID
               Signed 32-bit integer
               gsm_old.InvokeIdType

           gsm_old.lmsi  lmsi
               Byte array
               gsm_map.LMSI

           gsm_old.localValue  localValue
               Signed 32-bit integer
               gsm_old.OperationLocalvalue

           gsm_old.lowerLayerCompatibility  lowerLayerCompatibility
               No value
               gsm_map.ExternalSignalInfo

           gsm_old.moreMessagesToSend  moreMessagesToSend
               No value
               gsm_old.NULL

           gsm_old.msisdn  msisdn
               Byte array
               gsm_map.ISDN_AddressString

           gsm_old.networkSignalInfo  networkSignalInfo
               No value
               gsm_map.ExternalSignalInfo

           gsm_old.noSM_RP_DA  noSM-RP-DA
               No value
               gsm_old.NULL

           gsm_old.noSM_RP_OA  noSM-RP-OA
               No value
               gsm_old.NULL

           gsm_old.not_derivable  not-derivable
               No value
               gsm_old.NULL

           gsm_old.numberOfForwarding  numberOfForwarding
               Unsigned 32-bit integer
               gsm_map_ch.NumberOfForwarding

           gsm_old.opCode  opCode
               Unsigned 32-bit integer
               gsm_old.MAP_OPERATION

           gsm_old.operationCode  operationCode
               Unsigned 32-bit integer
               gsm_old.OperationCode

           gsm_old.operatorSS_Code  operatorSS-Code
               Unsigned 32-bit integer
               gsm_old.T_operatorSS_Code

           gsm_old.operatorSS_Code_item  operatorSS-Code item
               Byte array
               gsm_old.OCTET_STRING_SIZE_1

           gsm_old.originalComponentIdentifier  originalComponentIdentifier
               Unsigned 32-bit integer
               gsm_old.OriginalComponentIdentifier

           gsm_old.parameter  parameter
               No value
               gsm_old.ReturnErrorParameter

           gsm_old.problem  problem
               Unsigned 32-bit integer
               gsm_old.T_problem

           gsm_old.protectedPayload  protectedPayload
               Byte array
               gsm_old.ProtectedPayload

           gsm_old.protocolId  protocolId
               Unsigned 32-bit integer
               gsm_map.ProtocolId

           gsm_old.rand  rand
               Byte array
               gsm_old.RAND

           gsm_old.reject  reject
               No value
               gsm_old.Reject

           gsm_old.resultretres  resultretres
               No value
               gsm_old.T_resultretres

           gsm_old.returnError  returnError
               No value
               gsm_old.ReturnError

           gsm_old.returnErrorProblem  returnErrorProblem
               Signed 32-bit integer
               gsm_old.ReturnErrorProblem

           gsm_old.returnResultLast  returnResultLast
               No value
               gsm_old.ReturnResult

           gsm_old.returnResultNotLast  returnResultNotLast
               No value
               gsm_old.ReturnResult

           gsm_old.returnResultProblem  returnResultProblem
               Signed 32-bit integer
               gsm_old.ReturnResultProblem

           gsm_old.returnparameter  returnparameter
               No value
               gsm_old.ReturnResultParameter

           gsm_old.routingInfo  routingInfo
               Unsigned 32-bit integer
               gsm_map_ch.RoutingInfo

           gsm_old.sIWFSNumber  sIWFSNumber
               Byte array
               gsm_map.ISDN_AddressString

           gsm_old.securityHeader  securityHeader
               No value
               gsm_old.SecurityHeader

           gsm_old.securityParametersIndex  securityParametersIndex
               Byte array
               gsm_old.SecurityParametersIndex

           gsm_old.serviceCentreAddressDA  serviceCentreAddressDA
               Byte array
               gsm_map.AddressString

           gsm_old.serviceCentreAddressOA  serviceCentreAddressOA
               Byte array
               gsm_old.T_serviceCentreAddressOA

           gsm_old.signalInfo  signalInfo
               Byte array
               gsm_map.SignalInfo

           gsm_old.sm_RP_DA  sm-RP-DA
               Unsigned 32-bit integer
               gsm_old.SM_RP_DAold

           gsm_old.sm_RP_OA  sm-RP-OA
               Unsigned 32-bit integer
               gsm_old.SM_RP_OAold

           gsm_old.sm_RP_UI  sm-RP-UI
               Byte array
               gsm_map.SignalInfo

           gsm_old.sres  sres
               Byte array
               gsm_old.SRES

           gsm_old.targetCellId  targetCellId
               Byte array
               gsm_map.GlobalCellId

           gsm_old.tripletList  tripletList
               Unsigned 32-bit integer
               gsm_old.TripletListold

           gsm_old.userInfo  userInfo
               No value
               gsm_old.NULL

           gsm_old.vlr_Number  vlr-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_ss.SS_UserData  SS-UserData
               String
               gsm_map.ss.SS_UserData

           gsm_ss.add_LocationEstimate  add-LocationEstimate
               Byte array
               gsm_map_lcs.Add_GeographicalInformation

           gsm_ss.ageOfLocationInfo  ageOfLocationInfo
               Unsigned 32-bit integer
               gsm_map.AgeOfLocationInformation

           gsm_ss.alertingPattern  alertingPattern
               Byte array
               gsm_map.AlertingPattern

           gsm_ss.areaEventInfo  areaEventInfo
               No value
               gsm_map_lcs.AreaEventInfo

           gsm_ss.callIsWaiting_Indicator  callIsWaiting-Indicator
               No value
               gsm_ss.NULL

           gsm_ss.callOnHold_Indicator  callOnHold-Indicator
               Unsigned 32-bit integer
               gsm_ss.CallOnHold_Indicator

           gsm_ss.callingName  callingName
               Unsigned 32-bit integer
               gsm_ss.Name

           gsm_ss.ccbs_Feature  ccbs-Feature
               No value
               gsm_map_ss.CCBS_Feature

           gsm_ss.chargingInformation  chargingInformation
               No value
               gsm_ss.ChargingInformation

           gsm_ss.clirSuppressionRejected  clirSuppressionRejected
               No value
               gsm_ss.NULL

           gsm_ss.cug_Index  cug-Index
               Unsigned 32-bit integer
               gsm_map_ms.CUG_Index

           gsm_ss.dataCodingScheme  dataCodingScheme
               Byte array
               gsm_map_ss.USSD_DataCodingScheme

           gsm_ss.decipheringKeys  decipheringKeys
               Byte array
               gsm_ss.DecipheringKeys

           gsm_ss.deferredLocationEventType  deferredLocationEventType
               Byte array
               gsm_map_lcs.DeferredLocationEventType

           gsm_ss.deflectedToNumber  deflectedToNumber
               Byte array
               gsm_map.AddressString

           gsm_ss.deflectedToSubaddress  deflectedToSubaddress
               Byte array
               gsm_map.ISDN_SubaddressString

           gsm_ss.e1  e1
               Unsigned 32-bit integer
               gsm_ss.E1

           gsm_ss.e2  e2
               Unsigned 32-bit integer
               gsm_ss.E2

           gsm_ss.e3  e3
               Unsigned 32-bit integer
               gsm_ss.E3

           gsm_ss.e4  e4
               Unsigned 32-bit integer
               gsm_ss.E4

           gsm_ss.e5  e5
               Unsigned 32-bit integer
               gsm_ss.E5

           gsm_ss.e6  e6
               Unsigned 32-bit integer
               gsm_ss.E6

           gsm_ss.e7  e7
               Unsigned 32-bit integer
               gsm_ss.E7

           gsm_ss.ect_CallState  ect-CallState
               Unsigned 32-bit integer
               gsm_ss.ECT_CallState

           gsm_ss.ect_Indicator  ect-Indicator
               No value
               gsm_ss.ECT_Indicator

           gsm_ss.ganssAssistanceData  ganssAssistanceData
               Byte array
               gsm_ss.GANSSAssistanceData

           gsm_ss.gpsAssistanceData  gpsAssistanceData
               Byte array
               gsm_ss.GPSAssistanceData

           gsm_ss.h_gmlc_address  h-gmlc-address
               Byte array
               gsm_map_ms.GSN_Address

           gsm_ss.imsi  imsi
               Byte array
               gsm_map.IMSI

           gsm_ss.lcsClientExternalID  lcsClientExternalID
               No value
               gsm_map.LCSClientExternalID

           gsm_ss.lcsClientName  lcsClientName
               No value
               gsm_map_lcs.LCSClientName

           gsm_ss.lcsCodeword  lcsCodeword
               No value
               gsm_map_lcs.LCSCodeword

           gsm_ss.lcsRequestorID  lcsRequestorID
               No value
               gsm_map_lcs.LCSRequestorID

           gsm_ss.lcsServiceTypeID  lcsServiceTypeID
               Unsigned 32-bit integer
               gsm_map.LCSServiceTypeID

           gsm_ss.lcs_QoS  lcs-QoS
               No value
               gsm_map_lcs.LCS_QoS

           gsm_ss.lengthInCharacters  lengthInCharacters
               Signed 32-bit integer
               gsm_ss.INTEGER

           gsm_ss.locationEstimate  locationEstimate
               Byte array
               gsm_map_lcs.Ext_GeographicalInformation

           gsm_ss.locationMethod  locationMethod
               Unsigned 32-bit integer
               gsm_ss.LocationMethod

           gsm_ss.locationType  locationType
               No value
               gsm_map_lcs.LocationType

           gsm_ss.locationUpdateRequest  locationUpdateRequest
               No value
               gsm_ss.NULL

           gsm_ss.mlc_Number  mlc-Number
               Byte array
               gsm_map.ISDN_AddressString

           gsm_ss.mo_lrShortCircuit  mo-lrShortCircuit
               No value
               gsm_ss.NULL

           gsm_ss.molr_Type  molr-Type
               Unsigned 32-bit integer
               gsm_ss.MOLR_Type

           gsm_ss.mpty_Indicator  mpty-Indicator
               No value
               gsm_ss.NULL

           gsm_ss.msisdn  msisdn
               Byte array
               gsm_map.AddressString

           gsm_ss.multicall_Indicator  multicall-Indicator
               Unsigned 32-bit integer
               gsm_ss.Multicall_Indicator

           gsm_ss.nameIndicator  nameIndicator
               No value
               gsm_ss.NameIndicator

           gsm_ss.namePresentationAllowed  namePresentationAllowed
               No value
               gsm_ss.NameSet

           gsm_ss.namePresentationRestricted  namePresentationRestricted
               No value
               gsm_ss.NameSet

           gsm_ss.nameString  nameString
               Byte array
               gsm_map_ss.USSD_String

           gsm_ss.nameUnavailable  nameUnavailable
               No value
               gsm_ss.NULL

           gsm_ss.notificationType  notificationType
               Unsigned 32-bit integer
               gsm_map_ms.NotificationToMSUser

           gsm_ss.numberNotAvailableDueToInterworking  numberNotAvailableDueToInterworking
               No value
               gsm_ss.NULL

           gsm_ss.originatingEntityNumber  originatingEntityNumber
               Byte array
               gsm_map.ISDN_AddressString

           gsm_ss.partyNumber  partyNumber
               Byte array
               gsm_map.ISDN_AddressString

           gsm_ss.partyNumberSubaddress  partyNumberSubaddress
               Byte array
               gsm_map.ISDN_SubaddressString

           gsm_ss.periodicLDRInfo  periodicLDRInfo
               No value
               gsm_map_lcs.PeriodicLDRInfo

           gsm_ss.presentationAllowedAddress  presentationAllowedAddress
               No value
               gsm_ss.RemotePartyNumber

           gsm_ss.presentationRestricted  presentationRestricted
               No value
               gsm_ss.NULL

           gsm_ss.presentationRestrictedAddress  presentationRestrictedAddress
               No value
               gsm_ss.RemotePartyNumber

           gsm_ss.pseudonymIndicator  pseudonymIndicator
               No value
               gsm_ss.NULL

           gsm_ss.qoS  qoS
               No value
               gsm_map_lcs.LCS_QoS

           gsm_ss.rdn  rdn
               Unsigned 32-bit integer
               gsm_ss.RDN

           gsm_ss.referenceNumber  referenceNumber
               Byte array
               gsm_map_lcs.LCS_ReferenceNumber

           gsm_ss.reportingPLMNList  reportingPLMNList
               No value
               gsm_map_lcs.ReportingPLMNList

           gsm_ss.sequenceNumber  sequenceNumber
               Unsigned 32-bit integer
               gsm_map_lcs.SequenceNumber

           gsm_ss.ss_Code  ss-Code
               Unsigned 8-bit integer
               gsm_map.SS_Code

           gsm_ss.ss_Notification  ss-Notification
               Byte array
               gsm_ss.SS_Notification

           gsm_ss.ss_Status  ss-Status
               Byte array
               gsm_map_ss.SS_Status

           gsm_ss.supportedGADShapes  supportedGADShapes
               Byte array
               gsm_map_lcs.SupportedGADShapes

           gsm_ss.suppressOA  suppressOA
               No value
               gsm_ss.NULL

           gsm_ss.suppressPrefCUG  suppressPrefCUG
               No value
               gsm_ss.NULL

           gsm_ss.terminationCause  terminationCause
               Unsigned 32-bit integer
               gsm_ss.TerminationCause

           gsm_ss.uUS_Required  uUS-Required
               Boolean
               gsm_ss.BOOLEAN

           gsm_ss.uUS_Service  uUS-Service
               Unsigned 32-bit integer
               gsm_ss.UUS_Service

           gsm_ss.velocityEstimate  velocityEstimate
               Byte array
               gsm_map_lcs.VelocityEstimate

           gsm_ss.verificationResponse  verificationResponse
               Unsigned 32-bit integer
               gsm_ss.VerificationResponse

   GSM 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.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
               Coding Group Bits

           gsm_sms.coding_group_bits4  Coding Group Bits
               Unsigned 8-bit integer
               Coding Group Bits

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

           gsm-sms-ud.udh.ports.src  Source port
               Unsigned 8-bit integer
               Source port

   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

   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_in  Reassembled In
               Frame number
               The frame where this pdu is reassembled

           gss-api.segment  GSSAPI Segment
               Frame number
               GSSAPI Segment

           gss-api.segment.error  Defragmentation error
               Frame number
               Defragmentation error due to illegal fragments

           gss-api.segment.multipletails  Multiple tail fragments found
               Boolean
               Several tails were found when defragmenting the packet

           gss-api.segment.overlap  Fragment overlap
               Boolean
               Fragment overlaps with other fragments

           gss-api.segment.overlap.conflict  Conflicting data in fragment overlap
               Boolean
               Overlapping fragments contained conflicting data

           gss-api.segment.segments  GSSAPI Segments
               No value
               GSSAPI Segments

           gss-api.segment.toolongfragment  Fragment too long
               Boolean
               Fragment contained data past end of packet

   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.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
               Duration Indicator

           gre.3ggp2_fci  Flow Control Indicator
               Boolean
               Flow Control Indicator

           gre.3ggp2_sdi  SDI/DOS
               Boolean
               Short Data Indicator(SDI)/Data Over Signaling (DOS)

           gre.ggp2_3ggp2_seg  Type
               Unsigned 16-bit integer
               Type

           gre.ggp2_attrib_id  Type
               Unsigned 8-bit integer
               Type

           gre.ggp2_attrib_length  Length
               Unsigned 8-bit integer
               Length

           gre.ggp2_flow_disc  Flow ID
               Byte array
               Flow ID

           gre.key  GRE Key
               Unsigned 32-bit integer

           gre.proto  Protocol Type
               Unsigned 16-bit integer
               The protocol that is GRE encapsulated

   Gnutella 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
               Gnutella Upload / Download Stream

   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
               Mode

           h248.package_3GUP.delerrsdu  Delivery of erroneous SDUs
               Unsigned 32-bit integer
               Delivery of erroneous SDUs

           h248.package_3GUP.initdir  Initialisation Direction
               Unsigned 32-bit integer
               Initialisation Direction

           h248.package_3GUP.interface  Interface
               Unsigned 32-bit integer
               Interface

           h248.package_3GUP.upversions  UPversions
               Unsigned 32-bit integer
               UPversions

   H.248 Annex C (h248c)
           h248.pkg.annexc.ACodec  ACodec
               Byte array
               ACodec

           h248.pkg.annexc.BIR  BIR
               Byte array
               BIR

           h248.pkg.annexc.Mediatx  Mediatx
               Unsigned 32-bit integer
               Mediatx

           h248.pkg.annexc.NSAP  NSAP
               Byte array
               NSAP

           h248.pkg.annexc.USI  USI
               Byte array
               User Service Information

           h248.pkg.annexc.a2pcdv  A2PCDV
               Unsigned 24-bit integer
               Acceptable 2 point CDV

           h248.pkg.annexc.aal1st  AAL1ST
               Unsigned 8-bit integer
               AAL1 subtype

           h248.pkg.annexc.aaltype  AALtype
               Unsigned 8-bit integer
               AAL Type

           h248.pkg.annexc.aclr  ACLR
               Unsigned 8-bit integer
               Acceptable Cell Loss Ratio (Q.2965.2 ATMF UNI 4.0)

           h248.pkg.annexc.addlayer3prot  addlayer3prot
               Unsigned 8-bit integer
               Additional User Information Layer 3 protocol

           h248.pkg.annexc.aesa  AESA
               Byte array
               ATM End System Address

           h248.pkg.annexc.alc  ALC
               Byte array
               AAL2 Link Characteristics

           h248.pkg.annexc.appcdv  APPCDV
               Unsigned 24-bit integer
               Acceptable Point to Point CDV

           h248.pkg.annexc.assign  llidnegot
               Unsigned 8-bit integer
               Assignor/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
               Bit Rate

           h248.pkg.annexc.bmsdu  bmsdu
               Byte array
               bmsdu

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

           h248.pkg.annexc.dialingn  Dialing Number
               Byte array
               Dialing Number

           h248.pkg.annexc.dlci  DLCI
               Unsigned 32-bit integer
               Data Link Connection ID (FR)

           h248.pkg.annexc.duplexmode  duplexmode
               Unsigned 8-bit integer
               Mode Duplex

           h248.pkg.annexc.echoci  ECHOCI
               Byte array
               Not used

           h248.pkg.annexc.ecm  ECM
               Unsigned 8-bit integer
               Error Correction Method

           h248.pkg.annexc.encrypt_key  Encrypt Key
               Unsigned 32-bit integer
               Encryption Key

           h248.pkg.annexc.encrypt_type  Encrypttype
               Byte array
               Encryption Type

           h248.pkg.annexc.fd  FD
               Boolean
               Frame Discard

           h248.pkg.annexc.flowcontrx  flowcontrx
               Unsigned 8-bit integer
               Flow Control on Reception

           h248.pkg.annexc.flowconttx  flowconttx
               Unsigned 8-bit integer
               Flow Control on Transmission

           h248.pkg.annexc.fmsdu  fmsdu
               Byte array
               FMSDU

           h248.pkg.annexc.gain  Gain
               Unsigned 32-bit integer
               Gain (dB)

           h248.pkg.annexc.h222  H222LogicalChannelParameters
               Byte array
               H222LogicalChannelParameters

           h248.pkg.annexc.h223  H223LogicalChannelParameters
               Byte array
               H223LogicalChannelParameters

           h248.pkg.annexc.h2250  H2250LogicalChannelParameters
               Byte array
               H2250LogicalChannelParameters

           h248.pkg.annexc.inbandneg  inbandneg
               Unsigned 8-bit integer
               In-band/Out-band negotiation

           h248.pkg.annexc.intrate  UPPC
               Unsigned 8-bit integer
               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
               Rate Multiplier

           h248.pkg.annexc.multiframe  multiframe
               Unsigned 8-bit integer
               Multiple Frame establishment support in datalink

           h248.pkg.annexc.nci  NCI
               Unsigned 8-bit integer
               Nature of Connection Indicator

           h248.pkg.annexc.negotiation  UPPC
               Unsigned 8-bit integer
               Negotiation

           h248.pkg.annexc.nicrx  nicrx
               Unsigned 8-bit integer
               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
               Number of Channels

           h248.pkg.annexc.olc  OLC
               Byte array
               Open Logical Channel

           h248.pkg.annexc.olcack  OLCack
               Byte array
               Open Logical Channel Acknowledge

           h248.pkg.annexc.olccnf  OLCcnf
               Byte array
               Open Logical Channel CNF

           h248.pkg.annexc.olcrej  OLCrej
               Byte array
               Open Logical Channel Reject

           h248.pkg.annexc.opmode  OPMODE
               Unsigned 8-bit integer
               Mode of operation

           h248.pkg.annexc.parity  parity
               Unsigned 8-bit integer
               Parity Information Bits

           h248.pkg.annexc.pcr0  PCR0
               Unsigned 24-bit integer
               Peak Cell Rate for CLP=0

           h248.pkg.annexc.pcr1  PCR1
               Unsigned 24-bit integer
               Peak Cell Rate for CLP=1

           h248.pkg.annexc.pfci  PFCI
               Unsigned 8-bit integer
               Partially Filled Cells Identifier

           h248.pkg.annexc.port  Port
               Unsigned 16-bit integer
               Port

           h248.pkg.annexc.porttype  PortType
               Unsigned 32-bit integer
               Port Type

           h248.pkg.annexc.ppt  PPT
               Unsigned 32-bit integer
               Primary Payload Type

           h248.pkg.annexc.qosclass  QosClass
               Unsigned 16-bit integer
               QoS Class (Q.2965.1)

           h248.pkg.annexc.rateadapthdr  rateadapthdr
               Unsigned 8-bit integer
               Rate Adaptation Header/No-Header

           h248.pkg.annexc.rtp_payload  RTP Payload type
               Unsigned 32-bit integer
               Payload type in RTP Profile

           h248.pkg.annexc.samplepp  Samplepp
               Unsigned 32-bit integer
               Samplepp

           h248.pkg.annexc.sampling_rate  Sampling Rate
               Unsigned 32-bit integer
               Sampling Rate

           h248.pkg.annexc.sc  Service Class
               Unsigned 32-bit integer
               Service Class

           h248.pkg.annexc.scr0  SCR0
               Unsigned 24-bit integer
               Sustained Cell Rate for CLP=0

           h248.pkg.annexc.scr1  SCR1
               Unsigned 24-bit integer
               Sustained Cell Rate for CLP=1

           h248.pkg.annexc.scri  SCRI
               Unsigned 8-bit integer
               Source Clock frequency Recovery Method

           h248.pkg.annexc.sdbt  SDBT
               Unsigned 16-bit integer
               Structured Data Transfer Blocksize

           h248.pkg.annexc.sdp_a  sdp_a
               String
               SDP A

           h248.pkg.annexc.sdp_b  sdp_b
               String
               SDP B

           h248.pkg.annexc.sdp_c  sdp_c
               String
               SDP C

           h248.pkg.annexc.sdp_e  sdp_e
               String
               SDP E

           h248.pkg.annexc.sdp_i  sdp_i
               String
               SDP I

           h248.pkg.annexc.sdp_k  sdp_k
               String
               SDP K

           h248.pkg.annexc.sdp_m  sdp_m
               String
               SDP M

           h248.pkg.annexc.sdp_o  sdp_o
               String
               SDP O

           h248.pkg.annexc.sdp_p  sdp_p
               String
               SDP P

           h248.pkg.annexc.sdp_r  sdp_r
               String
               SDP R

           h248.pkg.annexc.sdp_s  sdp_s
               String
               SDP S

           h248.pkg.annexc.sdp_t  sdp_t
               String
               SDP T

           h248.pkg.annexc.sdp_u  sdp_u
               String
               SDP U

           h248.pkg.annexc.sdp_v  sdp_v
               String
               SDP V

           h248.pkg.annexc.sdp_z  sdp_z
               String
               SDP Z

           h248.pkg.annexc.sid  SID
               Unsigned 32-bit integer
               Silence Insertion Descriptor

           h248.pkg.annexc.silence_supp  SilenceSupp
               Boolean
               Silence Suppression

           h248.pkg.annexc.sscs  sscs
               Byte array
               sscs

           h248.pkg.annexc.stc  STC
               Unsigned 8-bit integer
               Susceptibility to Clipping

           h248.pkg.annexc.stopbits  stopbits
               Unsigned 8-bit integer
               Number of stop bits

           h248.pkg.annexc.sut  SUT
               Byte array
               Served User Transport

           h248.pkg.annexc.syncasync  SyncAsync
               Unsigned 8-bit integer
               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
               Transmission Mode

           h248.pkg.annexc.transmode  TransMode
               Unsigned 8-bit integer
               Transfer Mode

           h248.pkg.annexc.transrate  TransRate
               Unsigned 8-bit integer
               Transfer Rate

           h248.pkg.annexc.uppc  UPPC
               Unsigned 8-bit integer
               User Plane Connection Configuration

           h248.pkg.annexc.userrate  Userrate
               Unsigned 8-bit integer
               User Rate

           h248.pkg.annexc.v76  V76LogicalChannelParameters
               Byte array
               V76LogicalChannelParameters

           h248.pkg.annexc.vci  VCI
               Unsigned 16-bit integer
               Virtual Circuit Identifier

           h248.pkg.annexc.vpi  VPI
               Unsigned 16-bit integer
               Virtual Path Identifier

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

           h248.pkg.tdmc  TDM Circuit Package
               Byte array

           h248.pkg.tdmc.ec  Echo Cancellation
               Boolean
               Echo Cancellation

           h248.pkg.tdmc.gain  Gain
               Unsigned 32-bit integer
               Gain

   H.248 MEGACO (h248)
           h248.ActionReply  ActionReply
               No value
               h248.ActionReply

           h248.ActionRequest  ActionRequest
               No value
               h248.ActionRequest

           h248.AmmDescriptor  AmmDescriptor
               Unsigned 32-bit integer
               h248.AmmDescriptor

           h248.AuditReturnParameter  AuditReturnParameter
               Unsigned 32-bit integer
               h248.AuditReturnParameter

           h248.CommandReply  CommandReply
               Unsigned 32-bit integer
               h248.CommandReply

           h248.CommandRequest  CommandRequest
               No value
               h248.CommandRequest

           h248.ContextIDinList  ContextIDinList
               Unsigned 32-bit integer
               h248.ContextIDinList

           h248.EventParamValue  EventParamValue
               Byte array
               h248.EventParamValue

           h248.EventParameter  EventParameter
               No value
               h248.EventParameter

           h248.EventSpec  EventSpec
               No value
               h248.EventSpec

           h248.IndAudPropertyParm  IndAudPropertyParm
               No value
               h248.IndAudPropertyParm

           h248.IndAudStreamDescriptor  IndAudStreamDescriptor
               No value
               h248.IndAudStreamDescriptor

           h248.IndAuditParameter  IndAuditParameter
               Unsigned 32-bit integer
               h248.IndAuditParameter

           h248.ModemType  ModemType
               Unsigned 32-bit integer
               h248.ModemType

           h248.ObservedEvent  ObservedEvent
               No value
               h248.ObservedEvent

           h248.PackagesItem  PackagesItem
               No value
               h248.PackagesItem

           h248.PropertyGroup  PropertyGroup
               Unsigned 32-bit integer
               h248.PropertyGroup

           h248.PropertyID  PropertyID
               Byte array
               h248.PropertyID

           h248.PropertyParm  PropertyParm
               No value
               h248.PropertyParm

           h248.RequestedEvent  RequestedEvent
               No value
               h248.RequestedEvent

           h248.SCreasonValueOctetStr  SCreasonValueOctetStr
               Byte array
               h248.SCreasonValueOctetStr

           h248.SecondRequestedEvent  SecondRequestedEvent
               No value
               h248.SecondRequestedEvent

           h248.SigParamValue  SigParamValue
               Byte array
               h248.SigParamValue

           h248.SigParameter  SigParameter
               No value
               h248.SigParameter

           h248.Signal  Signal
               No value
               h248.Signal

           h248.SignalRequest  SignalRequest
               Unsigned 32-bit integer
               h248.SignalRequest

           h248.StatisticsParameter  StatisticsParameter
               No value
               h248.StatisticsParameter

           h248.StreamDescriptor  StreamDescriptor
               No value
               h248.StreamDescriptor

           h248.TerminationID  TerminationID
               No value
               h248.TerminationID

           h248.TopologyRequest  TopologyRequest
               No value
               h248.TopologyRequest

           h248.Transaction  Transaction
               Unsigned 32-bit integer
               h248.Transaction

           h248.TransactionAck  TransactionAck
               No value
               h248.TransactionAck

           h248.Value_item  Value item
               Byte array
               h248.OCTET_STRING

           h248.WildcardField  WildcardField
               Byte array
               h248.WildcardField

           h248.actionReplies  actionReplies
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_ActionReply

           h248.actions  actions
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_ActionRequest

           h248.ad  ad
               Byte array
               h248.AuthData

           h248.addReply  addReply
               No value
               h248.T_addReply

           h248.addReq  addReq
               No value
               h248.T_addReq

           h248.address  address
               IPv4 address
               h248.OCTET_STRING_SIZE_4

           h248.andAUDITSelect  andAUDITSelect
               No value
               h248.NULL

           h248.auditCapReply  auditCapReply
               Unsigned 32-bit integer
               h248.T_auditCapReply

           h248.auditCapRequest  auditCapRequest
               No value
               h248.T_auditCapRequest

           h248.auditDescriptor  auditDescriptor
               No value
               h248.AuditDescriptor

           h248.auditPropertyToken  auditPropertyToken
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_IndAuditParameter

           h248.auditResult  auditResult
               No value
               h248.AuditResult

           h248.auditResultTermList  auditResultTermList
               No value
               h248.TermListAuditResult

           h248.auditToken  auditToken
               Byte array
               h248.T_auditToken

           h248.auditValueReply  auditValueReply
               Unsigned 32-bit integer
               h248.T_auditValueReply

           h248.auditValueRequest  auditValueRequest
               No value
               h248.T_auditValueRequest

           h248.authHeader  authHeader
               No value
               h248.AuthenticationHeader

           h248.command  command
               Unsigned 32-bit integer
               h248.Command

           h248.commandReply  commandReply
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_CommandReply

           h248.commandRequests  commandRequests
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_CommandRequest

           h248.contextAttrAuditReq  contextAttrAuditReq
               No value
               h248.T_contextAttrAuditReq

           h248.contextAuditResult  contextAuditResult
               Unsigned 32-bit integer
               h248.TerminationIDList

           h248.contextId  contextId
               Unsigned 32-bit integer
               Context ID

           h248.contextList  contextList
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_ContextIDinList

           h248.contextProp  contextProp
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_PropertyParm

           h248.contextPropAud  contextPropAud
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_IndAudPropertyParm

           h248.contextReply  contextReply
               No value
               h248.ContextRequest

           h248.contextRequest  contextRequest
               No value
               h248.ContextRequest

           h248.ctx  Context
               Unsigned 32-bit integer

           h248.ctx.cmd  Command in Frame
               Frame number

           h248.ctx.term  Termination
               String

           h248.ctx.term.bir  BIR
               String

           h248.ctx.term.nsap  NSAP
               String

           h248.ctx.term.type  Type
               Unsigned 32-bit integer

           h248.data  data
               Byte array
               h248.OCTET_STRING

           h248.date  date
               String
               h248.IA5String_SIZE_8

           h248.descriptors  descriptors
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_AmmDescriptor

           h248.deviceName  deviceName
               String
               h248.PathName

           h248.digitMapBody  digitMapBody
               String
               h248.IA5String

           h248.digitMapDescriptor  digitMapDescriptor
               No value
               h248.DigitMapDescriptor

           h248.digitMapName  digitMapName
               Byte array
               h248.DigitMapName

           h248.digitMapToken  digitMapToken
               Boolean

           h248.digitMapValue  digitMapValue
               No value
               h248.DigitMapValue

           h248.direction  direction
               Unsigned 32-bit integer
               h248.SignalDirection

           h248.domainName  domainName
               No value
               h248.DomainName

           h248.duration  duration
               Unsigned 32-bit integer
               h248.INTEGER_0_65535

           h248.durationTimer  durationTimer
               Unsigned 32-bit integer
               h248.INTEGER_0_99

           h248.emergency  emergency
               Boolean
               h248.BOOLEAN

           h248.emptyDescriptors  emptyDescriptors
               No value
               h248.AuditDescriptor

           h248.error  error
               No value
               h248.ErrorDescriptor

           h248.errorCode  errorCode
               Unsigned 32-bit integer
               ErrorDescriptor/errorCode

           h248.errorDescriptor  errorDescriptor
               No value
               h248.ErrorDescriptor

           h248.errorText  errorText
               String
               h248.ErrorText

           h248.evParList  evParList
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_EventParameter

           h248.eventAction  eventAction
               No value
               h248.RequestedActions

           h248.eventBufferControl  eventBufferControl
               No value
               h248.NULL

           h248.eventBufferDescriptor  eventBufferDescriptor
               Unsigned 32-bit integer
               h248.EventBufferDescriptor

           h248.eventBufferToken  eventBufferToken
               Boolean

           h248.eventDM  eventDM
               Unsigned 32-bit integer
               h248.EventDM

           h248.eventList  eventList
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_RequestedEvent

           h248.eventName  eventName
               Byte array
               h248.PkgdName

           h248.eventParList  eventParList
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_EventParameter

           h248.eventParamValue  eventParamValue
               Unsigned 32-bit integer
               h248.EventParamValues

           h248.eventParameterName  eventParameterName
               Byte array
               h248.EventParameterName

           h248.event_name  Package and Event name
               Unsigned 32-bit integer
               Package

           h248.eventsDescriptor  eventsDescriptor
               No value
               h248.EventsDescriptor

           h248.eventsToken  eventsToken
               Boolean

           h248.experimental  experimental
               String
               h248.IA5String_SIZE_8

           h248.extraInfo  extraInfo
               Unsigned 32-bit integer
               h248.EventPar_extraInfo

           h248.firstAck  firstAck
               Unsigned 32-bit integer
               h248.TransactionId

           h248.h221NonStandard  h221NonStandard
               No value
               h248.H221NonStandard

           h248.id  id
               Unsigned 32-bit integer
               h248.INTEGER_0_65535

           h248.iepscallind  iepscallind
               Boolean
               h248.Iepscallind_BOOL

           h248.immAckRequired  immAckRequired
               No value
               h248.NULL

           h248.indauddigitMapDescriptor  indauddigitMapDescriptor
               No value
               h248.IndAudDigitMapDescriptor

           h248.indaudeventBufferDescriptor  indaudeventBufferDescriptor
               No value
               h248.IndAudEventBufferDescriptor

           h248.indaudeventsDescriptor  indaudeventsDescriptor
               No value
               h248.IndAudEventsDescriptor

           h248.indaudmediaDescriptor  indaudmediaDescriptor
               No value
               h248.IndAudMediaDescriptor

           h248.indaudpackagesDescriptor  indaudpackagesDescriptor
               No value
               h248.IndAudPackagesDescriptor

           h248.indaudsignalsDescriptor  indaudsignalsDescriptor
               Unsigned 32-bit integer
               h248.IndAudSignalsDescriptor

           h248.indaudstatisticsDescriptor  indaudstatisticsDescriptor
               No value
               h248.IndAudStatisticsDescriptor

           h248.intersigDelay  intersigDelay
               Unsigned 32-bit integer
               h248.INTEGER_0_65535

           h248.ip4Address  ip4Address
               No value
               h248.IP4Address

           h248.ip6Address  ip6Address
               No value
               h248.IP6Address

           h248.keepActive  keepActive
               Boolean
               h248.BOOLEAN

           h248.lastAck  lastAck
               Unsigned 32-bit integer
               h248.TransactionId

           h248.localControlDescriptor  localControlDescriptor
               No value
               h248.IndAudLocalControlDescriptor

           h248.localDescriptor  localDescriptor
               No value
               h248.IndAudLocalRemoteDescriptor

           h248.longTimer  longTimer
               Unsigned 32-bit integer
               h248.INTEGER_0_99

           h248.mId  mId
               Unsigned 32-bit integer
               h248.MId

           h248.manufacturerCode  manufacturerCode
               Unsigned 32-bit integer
               h248.INTEGER_0_65535

           h248.mediaDescriptor  mediaDescriptor
               No value
               h248.MediaDescriptor

           h248.mediaToken  mediaToken
               Boolean

           h248.mess  mess
               No value
               h248.Message

           h248.messageBody  messageBody
               Unsigned 32-bit integer
               h248.T_messageBody

           h248.messageError  messageError
               No value
               h248.ErrorDescriptor

           h248.modReply  modReply
               No value
               h248.T_modReply

           h248.modReq  modReq
               No value
               h248.T_modReq

           h248.modemDescriptor  modemDescriptor
               No value
               h248.ModemDescriptor

           h248.modemToken  modemToken
               Boolean

           h248.moveReply  moveReply
               No value
               h248.T_moveReply

           h248.moveReq  moveReq
               No value
               h248.T_moveReq

           h248.mpl  mpl
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_PropertyParm

           h248.mtl  mtl
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_ModemType

           h248.mtpAddress  mtpAddress
               Byte array
               h248.MtpAddress

           h248.mtpaddress.ni  NI
               Unsigned 32-bit integer
               NI

           h248.mtpaddress.pc  PC
               Unsigned 32-bit integer
               PC

           h248.multiStream  multiStream
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_IndAudStreamDescriptor

           h248.muxDescriptor  muxDescriptor
               No value
               h248.MuxDescriptor

           h248.muxToken  muxToken
               Boolean

           h248.muxType  muxType
               Unsigned 32-bit integer
               h248.MuxType

           h248.name  name
               String
               h248.IA5String

           h248.neverNotify  neverNotify
               No value
               h248.NULL

           h248.nonStandardData  nonStandardData
               No value
               h248.NonStandardData

           h248.nonStandardIdentifier  nonStandardIdentifier
               Unsigned 32-bit integer
               h248.NonStandardIdentifier

           h248.notifyBehaviour  notifyBehaviour
               Unsigned 32-bit integer
               h248.NotifyBehaviour

           h248.notifyCompletion  notifyCompletion
               Byte array
               h248.NotifyCompletion

           h248.notifyImmediate  notifyImmediate
               No value
               h248.NULL

           h248.notifyRegulated  notifyRegulated
               No value
               h248.RegulatedEmbeddedDescriptor

           h248.notifyReply  notifyReply
               No value
               h248.T_notifyReply

           h248.notifyReq  notifyReq
               No value
               h248.T_notifyReq

           h248.object  object
               Object Identifier
               h248.OBJECT_IDENTIFIER

           h248.observedEventLst  observedEventLst
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_ObservedEvent

           h248.observedEventsDescriptor  observedEventsDescriptor
               No value
               h248.ObservedEventsDescriptor

           h248.observedEventsToken  observedEventsToken
               Boolean

           h248.onInterruptByEvent  onInterruptByEvent
               Boolean

           h248.onInterruptByNewSignalDescr  onInterruptByNewSignalDescr
               Boolean

           h248.onIteration  onIteration
               Boolean

           h248.onTimeOut  onTimeOut
               Boolean

           h248.oneStream  oneStream
               No value
               h248.IndAudStreamParms

           h248.optional  optional
               No value
               h248.NULL

           h248.orAUDITSelect  orAUDITSelect
               No value
               h248.NULL

           h248.otherReason  otherReason
               Boolean

           h248.packageName  packageName
               Byte array
               h248.Name

           h248.packageVersion  packageVersion
               Unsigned 32-bit integer
               h248.INTEGER_0_99

           h248.package_bcp.BNCChar  BNCChar
               Unsigned 32-bit integer
               BNCChar

           h248.package_eventid  Event ID
               Unsigned 16-bit integer
               Parameter ID

           h248.package_name  Package
               Unsigned 16-bit integer
               Package

           h248.package_paramid  Parameter ID
               Unsigned 16-bit integer
               Parameter ID

           h248.package_signalid  Signal ID
               Unsigned 16-bit integer
               Parameter ID

           h248.packagesDescriptor  packagesDescriptor
               Unsigned 32-bit integer
               h248.PackagesDescriptor

           h248.packagesToken  packagesToken
               Boolean

           h248.pkg.unknown  Unknown Package
               Byte array

           h248.pkg.unknown.evt  Unknown Event
               Byte array

           h248.pkg.unknown.param  Parameter
               Byte array

           h248.pkg.unknown.sig  Unknown Signal
               Byte array

           h248.pkgdName  pkgdName
               Byte array
               h248.PkgdName

           h248.portNumber  portNumber
               Unsigned 32-bit integer
               h248.INTEGER_0_65535

           h248.priority  priority
               Unsigned 32-bit integer
               h248.INTEGER_0_15

           h248.profileName  profileName
               String
               h248.IA5String_SIZE_1_67

           h248.propGroupID  propGroupID
               Unsigned 32-bit integer
               h248.INTEGER_0_65535

           h248.propGrps  propGrps
               Unsigned 32-bit integer
               h248.IndAudPropertyGroup

           h248.propertyName  propertyName
               Byte array
               h248.PropertyName

           h248.propertyParms  propertyParms
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_IndAudPropertyParm

           h248.range  range
               Boolean
               h248.BOOLEAN

           h248.relation  relation
               Unsigned 32-bit integer
               h248.Relation

           h248.remoteDescriptor  remoteDescriptor
               No value
               h248.IndAudLocalRemoteDescriptor

           h248.requestID  requestID
               Unsigned 32-bit integer
               h248.RequestID

           h248.requestId  requestId
               Unsigned 32-bit integer
               h248.RequestID

           h248.reserveGroup  reserveGroup
               No value
               h248.NULL

           h248.reserveValue  reserveValue
               No value
               h248.NULL

           h248.resetEventsDescriptor  resetEventsDescriptor
               No value
               h248.NULL

           h248.secParmIndex  secParmIndex
               Byte array
               h248.SecurityParmIndex

           h248.secondEvent  secondEvent
               No value
               h248.SecondEventsDescriptor

           h248.segmentNumber  segmentNumber
               Unsigned 32-bit integer
               h248.SegmentNumber

           h248.segmentReply  segmentReply
               No value
               h248.SegmentReply

           h248.segmentationComplete  segmentationComplete
               No value
               h248.NULL

           h248.selectLogic  selectLogic
               Unsigned 32-bit integer
               h248.SelectLogic

           h248.selectemergency  selectemergency
               Boolean
               h248.BOOLEAN

           h248.selectiepscallind  selectiepscallind
               Boolean
               h248.BOOLEAN

           h248.selectpriority  selectpriority
               Unsigned 32-bit integer
               h248.INTEGER_0_15

           h248.seqNum  seqNum
               Byte array
               h248.SequenceNum

           h248.seqSigList  seqSigList
               No value
               h248.IndAudSeqSigList

           h248.serviceChangeAddress  serviceChangeAddress
               Unsigned 32-bit integer
               h248.ServiceChangeAddress

           h248.serviceChangeDelay  serviceChangeDelay
               Unsigned 32-bit integer
               h248.INTEGER_0_4294967295

           h248.serviceChangeIncompleteFlag  serviceChangeIncompleteFlag
               No value
               h248.NULL

           h248.serviceChangeInfo  serviceChangeInfo
               No value
               h248.AuditDescriptor

           h248.serviceChangeMethod  serviceChangeMethod
               Unsigned 32-bit integer
               h248.ServiceChangeMethod

           h248.serviceChangeMgcId  serviceChangeMgcId
               Unsigned 32-bit integer
               h248.MId

           h248.serviceChangeParms  serviceChangeParms
               No value
               h248.ServiceChangeParm

           h248.serviceChangeProfile  serviceChangeProfile
               No value
               h248.ServiceChangeProfile

           h248.serviceChangeReason  serviceChangeReason
               Unsigned 32-bit integer
               h248.SCreasonValue

           h248.serviceChangeReasonstr  ServiceChangeReasonStr
               String
               h248.IA5String

           h248.serviceChangeReply  serviceChangeReply
               No value
               h248.ServiceChangeReply

           h248.serviceChangeReq  serviceChangeReq
               No value
               h248.ServiceChangeRequest

           h248.serviceChangeResParms  serviceChangeResParms
               No value
               h248.ServiceChangeResParm

           h248.serviceChangeResult  serviceChangeResult
               Unsigned 32-bit integer
               h248.ServiceChangeResult

           h248.serviceChangeVersion  serviceChangeVersion
               Unsigned 32-bit integer
               h248.INTEGER_0_99

           h248.serviceState  serviceState
               No value
               h248.NULL

           h248.serviceStateSel  serviceStateSel
               Unsigned 32-bit integer
               h248.ServiceState

           h248.shortTimer  shortTimer
               Unsigned 32-bit integer
               h248.INTEGER_0_99

           h248.sigParList  sigParList
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_SigParameter

           h248.sigParameterName  sigParameterName
               Byte array
               h248.SigParameterName

           h248.sigType  sigType
               Unsigned 32-bit integer
               h248.SignalType

           h248.signal  signal
               No value
               h248.IndAudSignal

           h248.signalList  signalList
               No value
               h248.IndAudSignal

           h248.signalName  signalName
               Byte array
               h248.PkgdName

           h248.signalRequestID  signalRequestID
               Unsigned 32-bit integer
               h248.RequestID

           h248.signal_name  Package and Signal name
               Unsigned 32-bit integer
               Package

           h248.signalsDescriptor  signalsDescriptor
               Unsigned 32-bit integer
               h248.SignalsDescriptor

           h248.signalsToken  signalsToken
               Boolean

           h248.startTimer  startTimer
               Unsigned 32-bit integer
               h248.INTEGER_0_99

           h248.statName  statName
               Byte array
               h248.PkgdName

           h248.statValue  statValue
               Unsigned 32-bit integer
               h248.StatValue

           h248.statisticsDescriptor  statisticsDescriptor
               Unsigned 32-bit integer
               h248.StatisticsDescriptor

           h248.statsToken  statsToken
               Boolean

           h248.streamID  streamID
               Unsigned 32-bit integer
               h248.StreamID

           h248.streamMode  streamMode
               No value
               h248.NULL

           h248.streamModeSel  streamModeSel
               Unsigned 32-bit integer
               h248.StreamMode

           h248.streamParms  streamParms
               No value
               h248.IndAudStreamParms

           h248.streams  streams
               Unsigned 32-bit integer
               h248.IndAudMediaDescriptorStreams

           h248.sublist  sublist
               Boolean
               h248.BOOLEAN

           h248.subtractReply  subtractReply
               No value
               h248.T_subtractReply

           h248.subtractReq  subtractReq
               No value
               h248.T_subtractReq

           h248.t35CountryCode1  t35CountryCode1
               Unsigned 32-bit integer
               h248.INTEGER_0_255

           h248.t35CountryCode2  t35CountryCode2
               Unsigned 32-bit integer
               h248.INTEGER_0_255

           h248.t35Extension  t35Extension
               Unsigned 32-bit integer
               h248.INTEGER_0_255

           h248.term.wildcard.level  Wildcarding Level
               Unsigned 8-bit integer

           h248.term.wildcard.mode  Wildcard Mode
               Unsigned 8-bit integer

           h248.term.wildcard.pos  Wildcarding Position
               Unsigned 8-bit integer

           h248.termList  termList
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_TerminationID

           h248.termStateDescr  termStateDescr
               No value
               h248.IndAudTerminationStateDescriptor

           h248.terminationAudit  terminationAudit
               Unsigned 32-bit integer
               h248.TerminationAudit

           h248.terminationAuditResult  terminationAuditResult
               Unsigned 32-bit integer
               h248.TerminationAudit

           h248.terminationFrom  terminationFrom
               No value
               h248.TerminationID

           h248.terminationID  terminationID
               Unsigned 32-bit integer
               h248.TerminationIDList

           h248.terminationTo  terminationTo
               No value
               h248.TerminationID

           h248.time  time
               String
               h248.IA5String_SIZE_8

           h248.timeNotation  timeNotation
               No value
               h248.TimeNotation

           h248.timeStamp  timeStamp
               No value
               h248.TimeNotation

           h248.timestamp  timestamp
               No value
               h248.TimeNotation

           h248.topology  topology
               No value
               h248.NULL

           h248.topologyDirection  topologyDirection
               Unsigned 32-bit integer
               h248.T_topologyDirection

           h248.topologyDirectionExtension  topologyDirectionExtension
               Unsigned 32-bit integer
               h248.T_topologyDirectionExtension

           h248.topologyReq  topologyReq
               Unsigned 32-bit integer
               h248.T_topologyReq

           h248.transactionError  transactionError
               No value
               h248.ErrorDescriptor

           h248.transactionId  transactionId
               Unsigned 32-bit integer
               h248.T_transactionId

           h248.transactionPending  transactionPending
               No value
               h248.TransactionPending

           h248.transactionReply  transactionReply
               No value
               h248.TransactionReply

           h248.transactionRequest  transactionRequest
               No value
               h248.TransactionRequest

           h248.transactionResponseAck  transactionResponseAck
               Unsigned 32-bit integer
               h248.TransactionResponseAck

           h248.transactionResult  transactionResult
               Unsigned 32-bit integer
               h248.T_transactionResult

           h248.transactions  transactions
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_Transaction

           h248.value  value
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_PropertyID

           h248.version  version
               Unsigned 32-bit integer
               h248.INTEGER_0_99

           h248.wildcard  wildcard
               Unsigned 32-bit integer
               h248.SEQUENCE_OF_WildcardField

           h248.wildcardReturn  wildcardReturn
               No value
               h248.NULL

   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
               btd (Tone Direction)

           h248.pkg.bcp.rii  Reuse Idle Indication
               Unsigned 32-bit integer
               This property indicates that the provided bearer network connection relates to an Idle Bearer.

   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
               direct_8x8_inference_flag

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

           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
               Profile_idc

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

           h282.DeviceAttribute  DeviceAttribute
               Unsigned 32-bit integer
               h282.DeviceAttribute

           h282.DeviceEvent  DeviceEvent
               Unsigned 32-bit integer
               h282.DeviceEvent

           h282.DeviceEventIdentifier  DeviceEventIdentifier
               Unsigned 32-bit integer
               h282.DeviceEventIdentifier

           h282.DeviceProfile  DeviceProfile
               No value
               h282.DeviceProfile

           h282.NonCollapsingCapabilities  NonCollapsingCapabilities
               Unsigned 32-bit integer
               h282.NonCollapsingCapabilities

           h282.NonCollapsingCapabilities_item  NonCollapsingCapabilities item
               No value
               h282.NonCollapsingCapabilities_item

           h282.RDCPDU  RDCPDU
               Unsigned 32-bit integer
               h282.RDCPDU

           h282.StatusAttribute  StatusAttribute
               Unsigned 32-bit integer
               h282.StatusAttribute

           h282.StatusAttributeIdentifier  StatusAttributeIdentifier
               Unsigned 32-bit integer
               h282.StatusAttributeIdentifier

           h282.StreamProfile  StreamProfile
               No value
               h282.StreamProfile

           h282.absolute  absolute
               No value
               h282.NULL

           h282.accessoryTextLabel  accessoryTextLabel
               Unsigned 32-bit integer
               h282.T_accessoryTextLabel

           h282.accessoryTextLabel_item  accessoryTextLabel item
               No value
               h282.T_accessoryTextLabel_item

           h282.activate  activate
               No value
               h282.NULL

           h282.active  active
               No value
               h282.NULL

           h282.applicationData  applicationData
               Unsigned 32-bit integer
               h282.T_applicationData

           h282.audioInputs  audioInputs
               No value
               h282.DeviceInputs

           h282.audioInputsSupported  audioInputsSupported
               No value
               h282.AudioInputsCapability

           h282.audioSinkFlag  audioSinkFlag
               Boolean
               h282.BOOLEAN

           h282.audioSourceFlag  audioSourceFlag
               Boolean
               h282.BOOLEAN

           h282.auto  auto
               No value
               h282.NULL

           h282.autoSlideShowFinished  autoSlideShowFinished
               No value
               h282.NULL

           h282.autoSlideShowFinishedSupported  autoSlideShowFinishedSupported
               No value
               h282.NULL

           h282.automatic  automatic
               No value
               h282.NULL

           h282.availableDevices  availableDevices
               Unsigned 32-bit integer
               h282.T_availableDevices

           h282.availableDevices_item  availableDevices item
               No value
               h282.T_availableDevices_item

           h282.backLight  backLight
               Unsigned 32-bit integer
               h282.BackLight

           h282.backLightModeSupported  backLightModeSupported
               No value
               h282.NULL

           h282.backLightSettingSupported  backLightSettingSupported
               Unsigned 32-bit integer
               h282.MaxBacklight

           h282.calibrateWhiteBalance  calibrateWhiteBalance
               No value
               h282.NULL

           h282.calibrateWhiteBalanceSupported  calibrateWhiteBalanceSupported
               No value
               h282.NULL

           h282.camera  camera
               No value
               h282.NULL

           h282.cameraFilterSupported  cameraFilterSupported
               No value
               h282.CameraFilterCapability

           h282.cameraFocusedToLimit  cameraFocusedToLimit
               Unsigned 32-bit integer
               h282.CameraFocusedToLimit

           h282.cameraFocusedToLimitSupported  cameraFocusedToLimitSupported
               No value
               h282.NULL

           h282.cameraLensSupported  cameraLensSupported
               No value
               h282.CameraLensCapability

           h282.cameraPanSpeedSupported  cameraPanSpeedSupported
               No value
               h282.CameraPanSpeedCapability

           h282.cameraPannedToLimit  cameraPannedToLimit
               Unsigned 32-bit integer
               h282.CameraPannedToLimit

           h282.cameraPannedToLimitSupported  cameraPannedToLimitSupported
               No value
               h282.NULL

           h282.cameraTiltSpeedSupported  cameraTiltSpeedSupported
               No value
               h282.CameraTiltSpeedCapability

           h282.cameraTiltedToLimit  cameraTiltedToLimit
               Unsigned 32-bit integer
               h282.CameraTiltedToLimit

           h282.cameraTiltedToLimitSupported  cameraTiltedToLimitSupported
               No value
               h282.NULL

           h282.cameraZoomedToLimit  cameraZoomedToLimit
               Unsigned 32-bit integer
               h282.CameraZoomedToLimit

           h282.cameraZoomedToLimitSupported  cameraZoomedToLimitSupported
               No value
               h282.NULL

           h282.capabilityID  capabilityID
               Unsigned 32-bit integer
               h282.CapabilityID

           h282.captureImage  captureImage
               No value
               h282.NULL

           h282.captureImageSupported  captureImageSupported
               No value
               h282.NULL

           h282.clearCameraLens  clearCameraLens
               No value
               h282.NULL

           h282.clearCameraLensSupported  clearCameraLensSupported
               No value
               h282.NULL

           h282.configurableAudioInputs  configurableAudioInputs
               No value
               h282.DeviceInputs

           h282.configurableAudioInputsSupported  configurableAudioInputsSupported
               No value
               h282.AudioInputsCapability

           h282.configurableVideoInputs  configurableVideoInputs
               No value
               h282.DeviceInputs

           h282.configurableVideoInputsSupported  configurableVideoInputsSupported
               No value
               h282.VideoInputsCapability

           h282.configureAudioInputs  configureAudioInputs
               No value
               h282.DeviceInputs

           h282.configureDeviceEventsRequest  configureDeviceEventsRequest
               No value
               h282.ConfigureDeviceEventsRequest

           h282.configureDeviceEventsResponse  configureDeviceEventsResponse
               No value
               h282.ConfigureDeviceEventsResponse

           h282.configureVideoInputs  configureVideoInputs
               No value
               h282.DeviceInputs

           h282.continue  continue
               No value
               h282.NULL

           h282.continuousFastForwardControl  continuousFastForwardControl
               Boolean
               h282.BOOLEAN

           h282.continuousFastForwardSupported  continuousFastForwardSupported
               No value
               h282.NULL

           h282.continuousPlayBackMode  continuousPlayBackMode
               Boolean
               h282.BOOLEAN

           h282.continuousPlayBackModeSupported  continuousPlayBackModeSupported
               No value
               h282.NULL

           h282.continuousRewindControl  continuousRewindControl
               Boolean
               h282.BOOLEAN

           h282.continuousRewindSupported  continuousRewindSupported
               No value
               h282.NULL

           h282.controlAttributeList  controlAttributeList
               Unsigned 32-bit integer
               h282.SET_SIZE_1_8_OF_ControlAttribute

           h282.currentAudioOutputMute  currentAudioOutputMute
               Unsigned 32-bit integer
               h282.CurrentAudioOutputMute

           h282.currentAutoSlideDisplayTime  currentAutoSlideDisplayTime
               Unsigned 32-bit integer
               h282.CurrentAutoSlideDisplayTime

           h282.currentBackLight  currentBackLight
               Unsigned 32-bit integer
               h282.CurrentBackLight

           h282.currentBackLightMode  currentBackLightMode
               Unsigned 32-bit integer
               h282.CurrentMode

           h282.currentCameraFilter  currentCameraFilter
               Unsigned 32-bit integer
               h282.CurrentCameraFilterNumber

           h282.currentCameraLens  currentCameraLens
               Unsigned 32-bit integer
               h282.CurrentCameraLensNumber

           h282.currentCameraPanSpeed  currentCameraPanSpeed
               Unsigned 32-bit integer
               h282.CurrentCameraPanSpeed

           h282.currentCameraTiltSpeed  currentCameraTiltSpeed
               Unsigned 32-bit integer
               h282.CurrentCameraTiltSpeed

           h282.currentDay  currentDay
               Unsigned 32-bit integer
               h282.T_currentDay

           h282.currentDeviceDate  currentDeviceDate
               No value
               h282.CurrentDeviceDate

           h282.currentDeviceIsLocked  currentDeviceIsLocked
               No value
               h282.NULL

           h282.currentDevicePreset  currentDevicePreset
               Unsigned 32-bit integer
               h282.CurrentDevicePreset

           h282.currentDeviceTime  currentDeviceTime
               No value
               h282.CurrentDeviceTime

           h282.currentExternalLight  currentExternalLight
               Unsigned 32-bit integer
               h282.CurrentExternalLight

           h282.currentFocusMode  currentFocusMode
               Unsigned 32-bit integer
               h282.CurrentMode

           h282.currentFocusPosition  currentFocusPosition
               Unsigned 32-bit integer
               h282.CurrentFocusPosition

           h282.currentHour  currentHour
               Unsigned 32-bit integer
               h282.T_currentHour

           h282.currentIrisMode  currentIrisMode
               Unsigned 32-bit integer
               h282.CurrentMode

           h282.currentIrisPosition  currentIrisPosition
               Unsigned 32-bit integer
               h282.CurrentIrisPosition

           h282.currentMinute  currentMinute
               Unsigned 32-bit integer
               h282.T_currentMinute

           h282.currentMonth  currentMonth
               Unsigned 32-bit integer
               h282.T_currentMonth

           h282.currentPanPosition  currentPanPosition
               Unsigned 32-bit integer
               h282.CurrentPanPosition

           h282.currentPlaybackSpeed  currentPlaybackSpeed
               Unsigned 32-bit integer
               h282.CurrentPlaybackSpeed

           h282.currentPointingMode  currentPointingMode
               Unsigned 32-bit integer
               h282.CurrentPointingMode

           h282.currentProgramDuration  currentProgramDuration
               No value
               h282.ProgramDuration

           h282.currentSelectedProgram  currentSelectedProgram
               Unsigned 32-bit integer
               h282.CurrentSelectedProgram

           h282.currentSlide  currentSlide
               Unsigned 32-bit integer
               h282.CurrentSlide

           h282.currentTiltPosition  currentTiltPosition
               Unsigned 32-bit integer
               h282.CurrentTiltPosition

           h282.currentWhiteBalance  currentWhiteBalance
               Unsigned 32-bit integer
               h282.CurrentWhiteBalance

           h282.currentWhiteBalanceMode  currentWhiteBalanceMode
               Unsigned 32-bit integer
               h282.CurrentMode

           h282.currentYear  currentYear
               Unsigned 32-bit integer
               h282.T_currentYear

           h282.currentZoomPosition  currentZoomPosition
               Unsigned 32-bit integer
               h282.CurrentZoomPosition

           h282.currentdeviceState  currentdeviceState
               Unsigned 32-bit integer
               h282.CurrentDeviceState

           h282.currentstreamPlayerState  currentstreamPlayerState
               Unsigned 32-bit integer
               h282.CurrentStreamPlayerState

           h282.data  data
               Byte array
               h282.OCTET_STRING

           h282.day  day
               Unsigned 32-bit integer
               h282.Day

           h282.deviceAlreadyLocked  deviceAlreadyLocked
               No value
               h282.NULL

           h282.deviceAttributeError  deviceAttributeError
               No value
               h282.NULL

           h282.deviceAttributeList  deviceAttributeList
               Unsigned 32-bit integer
               h282.SET_OF_DeviceAttribute

           h282.deviceAttributeRequest  deviceAttributeRequest
               No value
               h282.DeviceAttributeRequest

           h282.deviceAttributeResponse  deviceAttributeResponse
               No value
               h282.DeviceAttributeResponse

           h282.deviceAvailabilityChanged  deviceAvailabilityChanged
               Boolean
               h282.BOOLEAN

           h282.deviceAvailabilityChangedSupported  deviceAvailabilityChangedSupported
               No value
               h282.NULL

           h282.deviceClass  deviceClass
               Unsigned 32-bit integer
               h282.DeviceClass

           h282.deviceControlRequest  deviceControlRequest
               No value
               h282.DeviceControlRequest

           h282.deviceDateSupported  deviceDateSupported
               No value
               h282.NULL

           h282.deviceEventIdentifierList  deviceEventIdentifierList
               Unsigned 32-bit integer
               h282.SET_OF_DeviceEventIdentifier

           h282.deviceEventList  deviceEventList
               Unsigned 32-bit integer
               h282.SET_SIZE_1_8_OF_DeviceEvent

           h282.deviceEventNotifyIndication  deviceEventNotifyIndication
               No value
               h282.DeviceEventNotifyIndication

           h282.deviceID  deviceID
               Unsigned 32-bit integer
               h282.DeviceID

           h282.deviceIdentifier  deviceIdentifier
               Unsigned 32-bit integer
               h282.DeviceID

           h282.deviceIncompatible  deviceIncompatible
               No value
               h282.NULL

           h282.deviceList  deviceList
               Unsigned 32-bit integer
               h282.SET_SIZE_0_127_OF_DeviceProfile

           h282.deviceLockChanged  deviceLockChanged
               Boolean
               h282.BOOLEAN

           h282.deviceLockEnquireRequest  deviceLockEnquireRequest
               No value
               h282.DeviceLockEnquireRequest

           h282.deviceLockEnquireResponse  deviceLockEnquireResponse
               No value
               h282.DeviceLockEnquireResponse

           h282.deviceLockRequest  deviceLockRequest
               No value
               h282.DeviceLockRequest

           h282.deviceLockResponse  deviceLockResponse
               No value
               h282.DeviceLockResponse

           h282.deviceLockStateChangedSupported  deviceLockStateChangedSupported
               No value
               h282.NULL

           h282.deviceLockTerminatedIndication  deviceLockTerminatedIndication
               No value
               h282.DeviceLockTerminatedIndication

           h282.deviceName  deviceName
               String
               h282.TextString

           h282.devicePresetSupported  devicePresetSupported
               No value
               h282.DevicePresetCapability

           h282.deviceState  deviceState
               Unsigned 32-bit integer
               h282.DeviceState

           h282.deviceStateSupported  deviceStateSupported
               No value
               h282.NULL

           h282.deviceStatusEnquireRequest  deviceStatusEnquireRequest
               No value
               h282.DeviceStatusEnquireRequest

           h282.deviceStatusEnquireResponse  deviceStatusEnquireResponse
               No value
               h282.DeviceStatusEnquireResponse

           h282.deviceTimeSupported  deviceTimeSupported
               No value
               h282.NULL

           h282.deviceUnavailable  deviceUnavailable
               No value
               h282.NULL

           h282.divisorFactors  divisorFactors
               Unsigned 32-bit integer
               h282.T_divisorFactors

           h282.divisorFactors_item  divisorFactors item
               Unsigned 32-bit integer
               h282.INTEGER_10_1000

           h282.down  down
               No value
               h282.NULL

           h282.eventsNotSupported  eventsNotSupported
               No value
               h282.NULL

           h282.externalCameraLightSupported  externalCameraLightSupported
               No value
               h282.ExternalCameraLightCapability

           h282.far  far
               No value
               h282.NULL

           h282.fastForwarding  fastForwarding
               No value
               h282.NULL

           h282.filterNumber  filterNumber
               Unsigned 32-bit integer
               h282.INTEGER_1_255

           h282.filterTextLabel  filterTextLabel
               Unsigned 32-bit integer
               h282.T_filterTextLabel

           h282.filterTextLabel_item  filterTextLabel item
               No value
               h282.T_filterTextLabel_item

           h282.focusContinuous  focusContinuous
               No value
               h282.FocusContinuous

           h282.focusContinuousSupported  focusContinuousSupported
               No value
               h282.NULL

           h282.focusDirection  focusDirection
               Unsigned 32-bit integer
               h282.T_focusDirection

           h282.focusImage  focusImage
               No value
               h282.NULL

           h282.focusImageSupported  focusImageSupported
               No value
               h282.NULL

           h282.focusModeSupported  focusModeSupported
               No value
               h282.NULL

           h282.focusPosition  focusPosition
               Signed 32-bit integer
               h282.FocusPosition

           h282.focusPositionSupported  focusPositionSupported
               Unsigned 32-bit integer
               h282.MinFocusPositionStepSize

           h282.getAudioInputs  getAudioInputs
               No value
               h282.NULL

           h282.getAudioOutputState  getAudioOutputState
               No value
               h282.NULL

           h282.getAutoSlideDisplayTime  getAutoSlideDisplayTime
               No value
               h282.NULL

           h282.getBackLight  getBackLight
               No value
               h282.NULL

           h282.getBackLightMode  getBackLightMode
               No value
               h282.NULL

           h282.getBacklightMode  getBacklightMode
               No value
               h282.NULL

           h282.getCameraFilter  getCameraFilter
               No value
               h282.NULL

           h282.getCameraLens  getCameraLens
               No value
               h282.NULL

           h282.getCameraPanSpeed  getCameraPanSpeed
               No value
               h282.NULL

           h282.getCameraTiltSpeed  getCameraTiltSpeed
               No value
               h282.NULL

           h282.getConfigurableAudioInputs  getConfigurableAudioInputs
               No value
               h282.NULL

           h282.getConfigurableVideoInputs  getConfigurableVideoInputs
               No value
               h282.NULL

           h282.getCurrentProgramDuration  getCurrentProgramDuration
               No value
               h282.NULL

           h282.getDeviceDate  getDeviceDate
               No value
               h282.NULL

           h282.getDeviceState  getDeviceState
               No value
               h282.NULL

           h282.getDeviceTime  getDeviceTime
               No value
               h282.NULL

           h282.getExternalLight  getExternalLight
               No value
               h282.NULL

           h282.getFocusMode  getFocusMode
               No value
               h282.NULL

           h282.getFocusPosition  getFocusPosition
               No value
               h282.NULL

           h282.getIrisMode  getIrisMode
               No value
               h282.NULL

           h282.getIrisPosition  getIrisPosition
               No value
               h282.NULL

           h282.getNonStandardStatus  getNonStandardStatus
               Unsigned 32-bit integer
               h282.NonStandardIdentifier

           h282.getPanPosition  getPanPosition
               No value
               h282.NULL

           h282.getPlaybackSpeed  getPlaybackSpeed
               No value
               h282.NULL

           h282.getPointingMode  getPointingMode
               No value
               h282.NULL

           h282.getSelectedProgram  getSelectedProgram
               No value
               h282.NULL

           h282.getSelectedSlide  getSelectedSlide
               No value
               h282.NULL

           h282.getStreamPlayerState  getStreamPlayerState
               No value
               h282.NULL

           h282.getTiltPosition  getTiltPosition
               No value
               h282.NULL

           h282.getVideoInputs  getVideoInputs
               No value
               h282.NULL

           h282.getWhiteBalance  getWhiteBalance
               No value
               h282.NULL

           h282.getWhiteBalanceMode  getWhiteBalanceMode
               No value
               h282.NULL

           h282.getZoomPosition  getZoomPosition
               No value
               h282.NULL

           h282.getdevicePreset  getdevicePreset
               No value
               h282.NULL

           h282.gotoHomePosition  gotoHomePosition
               No value
               h282.NULL

           h282.gotoNormalPlayTimePoint  gotoNormalPlayTimePoint
               No value
               h282.ProgramDuration

           h282.gotoNormalPlayTimePointSupported  gotoNormalPlayTimePointSupported
               No value
               h282.NULL

           h282.h221NonStandard  h221NonStandard
               Byte array
               h282.H221NonStandardIdentifier

           h282.h221nonStandard  h221nonStandard
               Byte array
               h282.H221NonStandardIdentifier

           h282.homePositionSupported  homePositionSupported
               No value
               h282.NULL

           h282.hour  hour
               Unsigned 32-bit integer
               h282.Hour

           h282.hours  hours
               Unsigned 32-bit integer
               h282.INTEGER_0_24

           h282.inactive  inactive
               No value
               h282.NULL

           h282.indication  indication
               Unsigned 32-bit integer
               h282.IndicationPDU

           h282.inputDevices  inputDevices
               Unsigned 32-bit integer
               h282.T_inputDevices

           h282.inputDevices_item  inputDevices item
               No value
               h282.T_inputDevices_item

           h282.instanceNumber  instanceNumber
               Unsigned 32-bit integer
               h282.INTEGER_0_255

           h282.invalidStreamID  invalidStreamID
               No value
               h282.NULL

           h282.irisContinuousSupported  irisContinuousSupported
               No value
               h282.NULL

           h282.irisModeSupported  irisModeSupported
               No value
               h282.NULL

           h282.irisPosition  irisPosition
               Signed 32-bit integer
               h282.IrisPosition

           h282.irisPositionSupported  irisPositionSupported
               Unsigned 32-bit integer
               h282.MinIrisPositionStepSize

           h282.key  key
               Unsigned 32-bit integer
               h282.Key

           h282.left  left
               No value
               h282.NULL

           h282.lensNumber  lensNumber
               Unsigned 32-bit integer
               h282.INTEGER_1_255

           h282.lensTextLabel  lensTextLabel
               Byte array
               h282.DeviceText

           h282.lightLabel  lightLabel
               Byte array
               h282.DeviceText

           h282.lightNumber  lightNumber
               Unsigned 32-bit integer
               h282.INTEGER_1_10

           h282.lightSource  lightSource
               No value
               h282.NULL

           h282.lightTextLabel  lightTextLabel
               Unsigned 32-bit integer
               h282.T_lightTextLabel

           h282.lightTextLabel_item  lightTextLabel item
               No value
               h282.T_lightTextLabel_item

           h282.lockFlag  lockFlag
               Boolean
               h282.BOOLEAN

           h282.lockNotRequired  lockNotRequired
               No value
               h282.NULL

           h282.lockRequired  lockRequired
               No value
               h282.NULL

           h282.lockingNotSupported  lockingNotSupported
               No value
               h282.NULL

           h282.manual  manual
               No value
               h282.NULL

           h282.maxDown  maxDown
               Signed 32-bit integer
               h282.INTEGER_M18000_0

           h282.maxLeft  maxLeft
               Signed 32-bit integer
               h282.INTEGER_M18000_0

           h282.maxNumber  maxNumber
               Unsigned 32-bit integer
               h282.PresetNumber

           h282.maxNumberOfFilters  maxNumberOfFilters
               Unsigned 32-bit integer
               h282.INTEGER_2_255

           h282.maxNumberOfLens  maxNumberOfLens
               Unsigned 32-bit integer
               h282.INTEGER_2_255

           h282.maxRight  maxRight
               Unsigned 32-bit integer
               h282.INTEGER_0_18000

           h282.maxSpeed  maxSpeed
               Unsigned 32-bit integer
               h282.CameraPanSpeed

           h282.maxUp  maxUp
               Unsigned 32-bit integer
               h282.INTEGER_0_18000

           h282.microphone  microphone
               No value
               h282.NULL

           h282.microseconds  microseconds
               Unsigned 32-bit integer
               h282.INTEGER_0_99999

           h282.minSpeed  minSpeed
               Unsigned 32-bit integer
               h282.CameraPanSpeed

           h282.minStepSize  minStepSize
               Unsigned 32-bit integer
               h282.INTEGER_1_18000

           h282.minute  minute
               Unsigned 32-bit integer
               h282.Minute

           h282.minutes  minutes
               Unsigned 32-bit integer
               h282.INTEGER_0_59

           h282.mode  mode
               Unsigned 32-bit integer
               h282.T_mode

           h282.month  month
               Unsigned 32-bit integer
               h282.Month

           h282.multiplierFactors  multiplierFactors
               Unsigned 32-bit integer
               h282.T_multiplierFactors

           h282.multiplierFactors_item  multiplierFactors item
               Unsigned 32-bit integer
               h282.INTEGER_10_1000

           h282.multiplyFactor  multiplyFactor
               Boolean
               h282.BOOLEAN

           h282.mute  mute
               Boolean
               h282.BOOLEAN

           h282.near  near
               No value
               h282.NULL

           h282.next  next
               No value
               h282.NULL

           h282.nextProgramSelect  nextProgramSelect
               Unsigned 32-bit integer
               h282.SelectDirection

           h282.nextProgramSupported  nextProgramSupported
               No value
               h282.NULL

           h282.nonStandard  nonStandard
               Unsigned 32-bit integer
               h282.Key

           h282.nonStandardAttributeSupported  nonStandardAttributeSupported
               No value
               h282.NonStandardParameter

           h282.nonStandardControl  nonStandardControl
               No value
               h282.NonStandardParameter

           h282.nonStandardData  nonStandardData
               No value
               h282.NonStandardParameter

           h282.nonStandardDevice  nonStandardDevice
               Unsigned 32-bit integer
               h282.NonStandardIdentifier

           h282.nonStandardEvent  nonStandardEvent
               No value
               h282.NonStandardParameter

           h282.nonStandardIndication  nonStandardIndication
               No value
               h282.NonStandardPDU

           h282.nonStandardRequest  nonStandardRequest
               No value
               h282.NonStandardPDU

           h282.nonStandardResponse  nonStandardResponse
               No value
               h282.NonStandardPDU

           h282.nonStandardStatus  nonStandardStatus
               No value
               h282.NonStandardParameter

           h282.none  none
               No value
               h282.NULL

           h282.numberOfDeviceInputs  numberOfDeviceInputs
               Unsigned 32-bit integer
               h282.INTEGER_2_64

           h282.numberOfDeviceRows  numberOfDeviceRows
               Unsigned 32-bit integer
               h282.INTEGER_1_64

           h282.object  object
               Object Identifier
               h282.OBJECT_IDENTIFIER

           h282.panContinuous  panContinuous
               No value
               h282.PanContinuous

           h282.panContinuousSupported  panContinuousSupported
               No value
               h282.NULL

           h282.panDirection  panDirection
               Unsigned 32-bit integer
               h282.T_panDirection

           h282.panPosition  panPosition
               Signed 32-bit integer
               h282.PanPosition

           h282.panPositionSupported  panPositionSupported
               No value
               h282.PanPositionCapability

           h282.panViewSupported  panViewSupported
               No value
               h282.NULL

           h282.pause  pause
               No value
               h282.NULL

           h282.pauseSupported  pauseSupported
               No value
               h282.NULL

           h282.pausedOnPlay  pausedOnPlay
               No value
               h282.NULL

           h282.pausedOnRecord  pausedOnRecord
               No value
               h282.NULL

           h282.play  play
               Boolean
               h282.BOOLEAN

           h282.playAutoSlideShow  playAutoSlideShow
               Unsigned 32-bit integer
               h282.AutoSlideShowControl

           h282.playSlideShowSupported  playSlideShowSupported
               No value
               h282.NULL

           h282.playSupported  playSupported
               No value
               h282.NULL

           h282.playToNormalPlayTimePoint  playToNormalPlayTimePoint
               No value
               h282.ProgramDuration

           h282.playToNormalPlayTimePointSupported  playToNormalPlayTimePointSupported
               No value
               h282.NULL

           h282.playbackSpeedSupported  playbackSpeedSupported
               No value
               h282.PlayBackSpeedCapability

           h282.playing  playing
               No value
               h282.NULL

           h282.pointingModeSupported  pointingModeSupported
               No value
               h282.NULL

           h282.positioningMode  positioningMode
               Unsigned 32-bit integer
               h282.PositioningMode

           h282.preset  preset
               Unsigned 32-bit integer
               h282.PresetNumber

           h282.presetCapability  presetCapability
               Unsigned 32-bit integer
               h282.T_presetCapability

           h282.presetCapability_item  presetCapability item
               No value
               h282.T_presetCapability_item

           h282.presetNumber  presetNumber
               Unsigned 32-bit integer
               h282.PresetNumber

           h282.presetTextLabel  presetTextLabel
               Byte array
               h282.DeviceText

           h282.previous  previous
               No value
               h282.NULL

           h282.program  program
               Unsigned 32-bit integer
               h282.ProgramNumber

           h282.programUnavailable  programUnavailable
               No value
               h282.NULL

           h282.readProgramDurationSupported  readProgramDurationSupported
               No value
               h282.NULL

           h282.readStreamPlayerStateSupported  readStreamPlayerStateSupported
               No value
               h282.NULL

           h282.record  record
               Boolean
               h282.BOOLEAN

           h282.recordForDuration  recordForDuration
               No value
               h282.RecordForDuration

           h282.recordForDurationSupported  recordForDurationSupported
               No value
               h282.NULL

           h282.recordSupported  recordSupported
               No value
               h282.NULL

           h282.recording  recording
               No value
               h282.NULL

           h282.relative  relative
               No value
               h282.NULL

           h282.remoteControlFlag  remoteControlFlag
               Boolean
               h282.BOOLEAN

           h282.request  request
               Unsigned 32-bit integer
               h282.RequestPDU

           h282.requestAutoSlideShowFinished  requestAutoSlideShowFinished
               No value
               h282.NULL

           h282.requestCameraFocusedToLimit  requestCameraFocusedToLimit
               No value
               h282.NULL

           h282.requestCameraPannedToLimit  requestCameraPannedToLimit
               No value
               h282.NULL

           h282.requestCameraTiltedToLimit  requestCameraTiltedToLimit
               No value
               h282.NULL

           h282.requestCameraZoomedToLimit  requestCameraZoomedToLimit
               No value
               h282.NULL

           h282.requestDenied  requestDenied
               No value
               h282.NULL

           h282.requestDeviceAvailabilityChanged  requestDeviceAvailabilityChanged
               No value
               h282.NULL

           h282.requestDeviceLockChanged  requestDeviceLockChanged
               No value
               h282.NULL

           h282.requestHandle  requestHandle
               Unsigned 32-bit integer
               h282.Handle

           h282.requestNonStandardEvent  requestNonStandardEvent
               Unsigned 32-bit integer
               h282.NonStandardIdentifier

           h282.requestStreamPlayerProgramChange  requestStreamPlayerProgramChange
               No value
               h282.NULL

           h282.requestStreamPlayerStateChange  requestStreamPlayerStateChange
               No value
               h282.NULL

           h282.response  response
               Unsigned 32-bit integer
               h282.ResponsePDU

           h282.result  result
               Unsigned 32-bit integer
               h282.T_result

           h282.rewinding  rewinding
               No value
               h282.NULL

           h282.right  right
               No value
               h282.NULL

           h282.scaleFactor  scaleFactor
               Unsigned 32-bit integer
               h282.INTEGER_10_1000

           h282.searchBackwardsControl  searchBackwardsControl
               Boolean
               h282.BOOLEAN

           h282.searchBackwardsSupported  searchBackwardsSupported
               No value
               h282.NULL

           h282.searchForwardsControl  searchForwardsControl
               Boolean
               h282.BOOLEAN

           h282.searchForwardsSupported  searchForwardsSupported
               No value
               h282.NULL

           h282.searchingBackwards  searchingBackwards
               No value
               h282.NULL

           h282.searchingForwards  searchingForwards
               No value
               h282.NULL

           h282.seconds  seconds
               Unsigned 32-bit integer
               h282.INTEGER_0_59

           h282.selectCameraFilter  selectCameraFilter
               Unsigned 32-bit integer
               h282.CameraFilterNumber

           h282.selectCameraLens  selectCameraLens
               Unsigned 32-bit integer
               h282.CameraLensNumber

           h282.selectExternalLight  selectExternalLight
               Unsigned 32-bit integer
               h282.SelectExternalLight

           h282.selectNextSlide  selectNextSlide
               Unsigned 32-bit integer
               h282.SelectDirection

           h282.selectNextSlideSupported  selectNextSlideSupported
               No value
               h282.NULL

           h282.selectProgram  selectProgram
               Unsigned 32-bit integer
               h282.ProgramNumber

           h282.selectProgramSupported  selectProgramSupported
               Unsigned 32-bit integer
               h282.MaxNumberOfPrograms

           h282.selectSlide  selectSlide
               Unsigned 32-bit integer
               h282.SlideNumber

           h282.selectSlideSupported  selectSlideSupported
               Unsigned 32-bit integer
               h282.MaxNumberOfSlides

           h282.setAudioOutputMute  setAudioOutputMute
               Boolean
               h282.BOOLEAN

           h282.setAudioOutputStateSupported  setAudioOutputStateSupported
               No value
               h282.NULL

           h282.setAutoSlideDisplayTime  setAutoSlideDisplayTime
               Unsigned 32-bit integer
               h282.AutoSlideDisplayTime

           h282.setBackLight  setBackLight
               Unsigned 32-bit integer
               h282.BackLight

           h282.setBackLightMode  setBackLightMode
               Unsigned 32-bit integer
               h282.Mode

           h282.setCameraPanSpeed  setCameraPanSpeed
               Unsigned 32-bit integer
               h282.CameraPanSpeed

           h282.setCameraTiltSpeed  setCameraTiltSpeed
               Unsigned 32-bit integer
               h282.CameraTiltSpeed

           h282.setDeviceDate  setDeviceDate
               No value
               h282.DeviceDate

           h282.setDevicePreset  setDevicePreset
               No value
               h282.DevicePreset

           h282.setDeviceState  setDeviceState
               Unsigned 32-bit integer
               h282.DeviceState

           h282.setDeviceTime  setDeviceTime
               No value
               h282.DeviceTime

           h282.setFocusMode  setFocusMode
               Unsigned 32-bit integer
               h282.Mode

           h282.setFocusPosition  setFocusPosition
               No value
               h282.SetFocusPosition

           h282.setIrisMode  setIrisMode
               Unsigned 32-bit integer
               h282.Mode

           h282.setIrisPosition  setIrisPosition
               No value
               h282.SetIrisPosition

           h282.setPanPosition  setPanPosition
               No value
               h282.SetPanPosition

           h282.setPanView  setPanView
               Signed 32-bit integer
               h282.PanView

           h282.setPlaybackSpeed  setPlaybackSpeed
               No value
               h282.PlaybackSpeed

           h282.setPointingMode  setPointingMode
               Unsigned 32-bit integer
               h282.PointingToggle

           h282.setSlideDisplayTimeSupported  setSlideDisplayTimeSupported
               Unsigned 32-bit integer
               h282.MaxSlideDisplayTime

           h282.setTiltPosition  setTiltPosition
               No value
               h282.SetTiltPosition

           h282.setTiltView  setTiltView
               Signed 32-bit integer
               h282.TiltView

           h282.setWhiteBalance  setWhiteBalance
               Unsigned 32-bit integer
               h282.WhiteBalance

           h282.setWhiteBalanceMode  setWhiteBalanceMode
               Unsigned 32-bit integer
               h282.Mode

           h282.setZoomMagnification  setZoomMagnification
               Unsigned 32-bit integer
               h282.ZoomMagnification

           h282.setZoomPosition  setZoomPosition
               No value
               h282.SetZoomPosition

           h282.slide  slide
               Unsigned 32-bit integer
               h282.SlideNumber

           h282.slideProjector  slideProjector
               No value
               h282.NULL

           h282.slideShowModeSupported  slideShowModeSupported
               No value
               h282.NULL

           h282.sourceChangeEventIndication  sourceChangeEventIndication
               No value
               h282.SourceChangeEventIndication

           h282.sourceChangeFlag  sourceChangeFlag
               Boolean
               h282.BOOLEAN

           h282.sourceCombiner  sourceCombiner
               No value
               h282.NULL

           h282.sourceEventNotify  sourceEventNotify
               Boolean
               h282.BOOLEAN

           h282.sourceEventsRequest  sourceEventsRequest
               No value
               h282.SourceEventsRequest

           h282.sourceEventsResponse  sourceEventsResponse
               No value
               h282.SourceEventsResponse

           h282.sourceSelectRequest  sourceSelectRequest
               No value
               h282.SourceSelectRequest

           h282.sourceSelectResponse  sourceSelectResponse
               No value
               h282.SourceSelectResponse

           h282.speed  speed
               Unsigned 32-bit integer
               h282.CameraPanSpeed

           h282.speedStepSize  speedStepSize
               Unsigned 32-bit integer
               h282.CameraPanSpeed

           h282.standard  standard
               Unsigned 32-bit integer
               h282.INTEGER_0_65535

           h282.start  start
               No value
               h282.NULL

           h282.state  state
               Unsigned 32-bit integer
               h282.StreamPlayerState

           h282.statusAttributeIdentifierList  statusAttributeIdentifierList
               Unsigned 32-bit integer
               h282.SET_SIZE_1_16_OF_StatusAttributeIdentifier

           h282.statusAttributeList  statusAttributeList
               Unsigned 32-bit integer
               h282.SET_SIZE_1_16_OF_StatusAttribute

           h282.stop  stop
               No value
               h282.NULL

           h282.stopped  stopped
               No value
               h282.NULL

           h282.store  store
               No value
               h282.NULL

           h282.storeModeSupported  storeModeSupported
               Boolean
               h282.BOOLEAN

           h282.streamID  streamID
               Unsigned 32-bit integer
               h282.StreamID

           h282.streamIdentifier  streamIdentifier
               Unsigned 32-bit integer
               h282.StreamID

           h282.streamList  streamList
               Unsigned 32-bit integer
               h282.SET_SIZE_0_127_OF_StreamProfile

           h282.streamName  streamName
               String
               h282.TextString

           h282.streamPlayerProgramChange  streamPlayerProgramChange
               Unsigned 32-bit integer
               h282.ProgramNumber

           h282.streamPlayerProgramChangeSupported  streamPlayerProgramChangeSupported
               No value
               h282.NULL

           h282.streamPlayerRecorder  streamPlayerRecorder
               No value
               h282.NULL

           h282.streamPlayerStateChange  streamPlayerStateChange
               Unsigned 32-bit integer
               h282.StreamPlayerState

           h282.streamPlayerStateChangeSupported  streamPlayerStateChangeSupported
               No value
               h282.NULL

           h282.successful  successful
               No value
               h282.NULL

           h282.telescopic  telescopic
               No value
               h282.NULL

           h282.tiltContinuous  tiltContinuous
               No value
               h282.TiltContinuous

           h282.tiltContinuousSupported  tiltContinuousSupported
               No value
               h282.NULL

           h282.tiltDirection  tiltDirection
               Unsigned 32-bit integer
               h282.T_tiltDirection

           h282.tiltPosition  tiltPosition
               Signed 32-bit integer
               h282.TiltPosition

           h282.tiltPositionSupported  tiltPositionSupported
               No value
               h282.TiltPositionCapability

           h282.tiltViewSupported  tiltViewSupported
               No value
               h282.NULL

           h282.time  time
               Unsigned 32-bit integer
               h282.AutoSlideDisplayTime

           h282.timeOut  timeOut
               Unsigned 32-bit integer
               h282.INTEGER_50_1000

           h282.toggle  toggle
               No value
               h282.NULL

           h282.unknown  unknown
               No value
               h282.NULL

           h282.unknownDevice  unknownDevice
               No value
               h282.NULL

           h282.up  up
               No value
               h282.NULL

           h282.videoInputs  videoInputs
               No value
               h282.DeviceInputs

           h282.videoInputsSupported  videoInputsSupported
               No value
               h282.VideoInputsCapability

           h282.videoSinkFlag  videoSinkFlag
               Boolean
               h282.BOOLEAN

           h282.videoSourceFlag  videoSourceFlag
               Boolean
               h282.BOOLEAN

           h282.videoStreamFlag  videoStreamFlag
               Boolean
               h282.BOOLEAN

           h282.whiteBalance  whiteBalance
               Unsigned 32-bit integer
               h282.WhiteBalance

           h282.whiteBalanceModeSupported  whiteBalanceModeSupported
               No value
               h282.NULL

           h282.whiteBalanceSettingSupported  whiteBalanceSettingSupported
               Unsigned 32-bit integer
               h282.MaxWhiteBalance

           h282.wide  wide
               No value
               h282.NULL

           h282.year  year
               Unsigned 32-bit integer
               h282.Year

           h282.zoomContinuous  zoomContinuous
               No value
               h282.ZoomContinuous

           h282.zoomContinuousSupported  zoomContinuousSupported
               No value
               h282.NULL

           h282.zoomDirection  zoomDirection
               Unsigned 32-bit integer
               h282.T_zoomDirection

           h282.zoomMagnificationSupported  zoomMagnificationSupported
               Unsigned 32-bit integer
               h282.MinZoomMagnificationStepSize

           h282.zoomPosition  zoomPosition
               Signed 32-bit integer
               h282.ZoomPosition

           h282.zoomPositionSupported  zoomPositionSupported
               Unsigned 32-bit integer
               h282.MinZoomPositionSetSize

   H.283 Logical Channel Transport (lct)
           h283.LCTPDU  LCTPDU
               No value
               h283.LCTPDU

           h283.NonStandardParameter  NonStandardParameter
               No value
               h283.NonStandardParameter

           h283.ack  ack
               No value
               h283.NULL

           h283.announceReq  announceReq
               No value
               h283.NULL

           h283.announceResp  announceResp
               No value
               h283.NULL

           h283.data  data
               Byte array
               h283.OCTET_STRING

           h283.dataType  dataType
               Unsigned 32-bit integer
               h283.T_dataType

           h283.deviceChange  deviceChange
               No value
               h283.NULL

           h283.deviceListReq  deviceListReq
               No value
               h283.NULL

           h283.deviceListResp  deviceListResp
               Unsigned 32-bit integer
               h283.T_deviceListResp

           h283.dstAddr  dstAddr
               No value
               h283.MTAddress

           h283.h221NonStandard  h221NonStandard
               No value
               h283.H221NonStandard

           h283.lctIndication  lctIndication
               Unsigned 32-bit integer
               h283.LCTIndication

           h283.lctMessage  lctMessage
               Unsigned 32-bit integer
               h283.LCTMessage

           h283.lctRequest  lctRequest
               Unsigned 32-bit integer
               h283.LCTRequest

           h283.lctResponse  lctResponse
               Unsigned 32-bit integer
               h283.LCTResponse

           h283.mAddress  mAddress
               Unsigned 32-bit integer
               h283.INTEGER_0_65535

           h283.manufacturerCode  manufacturerCode
               Unsigned 32-bit integer
               h283.INTEGER_0_65535

           h283.nonStandardIdentifier  nonStandardIdentifier
               Unsigned 32-bit integer
               h283.NonStandardIdentifier

           h283.nonStandardMessage  nonStandardMessage
               No value
               h283.NonStandardMessage

           h283.nonStandardParameters  nonStandardParameters
               Unsigned 32-bit integer
               h283.SEQUENCE_OF_NonStandardParameter

           h283.object  object
               Object Identifier
               h283.OBJECT_IDENTIFIER

           h283.pduType  pduType
               Unsigned 32-bit integer
               h283.T_pduType

           h283.rdcData  rdcData
               No value
               h283.RDCData

           h283.rdcPDU  rdcPDU
               Unsigned 32-bit integer
               h283.T_rdcPDU

           h283.reliable  reliable
               Boolean
               h283.BOOLEAN

           h283.seqNumber  seqNumber
               Unsigned 32-bit integer
               h283.INTEGER_0_65535

           h283.srcAddr  srcAddr
               No value
               h283.MTAddress

           h283.t35CountryCode  t35CountryCode
               Unsigned 32-bit integer
               h283.INTEGER_0_255

           h283.t35Extension  t35Extension
               Unsigned 32-bit integer
               h283.INTEGER_0_255

           h283.tAddress  tAddress
               Unsigned 32-bit integer
               h283.INTEGER_0_65535

           h283.timestamp  timestamp
               Unsigned 32-bit integer
               h283.INTEGER_0_4294967295

   H.323 (h323)
           h323.BackupCallSignalAddresses_item  BackupCallSignalAddresses item
               Unsigned 32-bit integer
               h323.BackupCallSignalAddresses_item

           h323.RasTunnelledSignallingMessage  RasTunnelledSignallingMessage
               No value
               h323.RasTunnelledSignallingMessage

           h323.RobustnessData  RobustnessData
               No value
               h323.RobustnessData

           h323.alternateTransport  alternateTransport
               No value
               h225.AlternateTransportAddresses

           h323.backupCallSignalAddresses  backupCallSignalAddresses
               Unsigned 32-bit integer
               h323.BackupCallSignalAddresses

           h323.connectData  connectData
               No value
               h323.Connect_RD

           h323.endpointGuid  endpointGuid
               Globally Unique Identifier
               h323.GloballyUniqueIdentifier

           h323.fastStart  fastStart
               Unsigned 32-bit integer
               h323.T_fastStart

           h323.fastStart_item  fastStart item
               Byte array
               h323.OCTET_STRING

           h323.h245Address  h245Address
               Unsigned 32-bit integer
               h225.TransportAddress

           h323.hasSharedRepository  hasSharedRepository
               No value
               h323.NULL

           h323.includeFastStart  includeFastStart
               No value
               h323.NULL

           h323.irrFrequency  irrFrequency
               Unsigned 32-bit integer
               h323.INTEGER_1_65535

           h323.messageContent  messageContent
               Unsigned 32-bit integer
               h323.T_messageContent

           h323.messageContent_item  messageContent item
               Byte array
               h323.OCTET_STRING

           h323.nonStandardData  nonStandardData
               No value
               h225.NonStandardParameter

           h323.rcfData  rcfData
               No value
               h323.Rcf_RD

           h323.resetH245  resetH245
               No value
               h323.NULL

           h323.robustnessData  robustnessData
               Unsigned 32-bit integer
               h323.T_robustnessData

           h323.rrqData  rrqData
               No value
               h323.Rrq_RD

           h323.setupData  setupData
               No value
               h323.Setup_RD

           h323.statusData  statusData
               No value
               h323.Status_RD

           h323.statusInquiryData  statusInquiryData
               No value
               h323.StatusInquiry_RD

           h323.tcp  tcp
               Unsigned 32-bit integer
               h225.TransportAddress

           h323.timeToLive  timeToLive
               Unsigned 32-bit integer
               h225.TimeToLive

           h323.tunnelledProtocolID  tunnelledProtocolID
               No value
               h225.TunnelledProtocol

           h323.tunnellingRequired  tunnellingRequired
               No value
               h323.NULL

           h323.versionID  versionID
               Unsigned 32-bit integer
               h323.INTEGER_1_256

   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
               CRC

           srp.crc_bad  Bad CRC
               Boolean

           srp.header  Header
               Unsigned 8-bit integer
               SRP header octet

           srp.seqno  Sequence Number
               Unsigned 8-bit integer
               Sequence Number

   H.450 Remote Operations Apdus (h450.ros)
           h450.ros.argument  argument
               Byte array
               h450_ros.InvokeArgument

           h450.ros.errcode  errcode
               Unsigned 32-bit integer
               h450_ros.Code

           h450.ros.general  general
               Signed 32-bit integer
               h450_ros.GeneralProblem

           h450.ros.global  global
               Object Identifier
               h450_ros.T_global

           h450.ros.invoke  invoke
               No value
               h450_ros.Invoke

           h450.ros.invokeId  invokeId
               Signed 32-bit integer
               h450_ros.T_invokeIdConstrained

           h450.ros.linkedId  linkedId
               Signed 32-bit integer
               h450_ros.InvokeId

           h450.ros.local  local
               Signed 32-bit integer
               h450_ros.T_local

           h450.ros.opcode  opcode
               Unsigned 32-bit integer
               h450_ros.Code

           h450.ros.parameter  parameter
               Byte array
               h450_ros.T_parameter

           h450.ros.problem  problem
               Unsigned 32-bit integer
               h450_ros.T_problem

           h450.ros.reject  reject
               No value
               h450_ros.Reject

           h450.ros.result  result
               No value
               h450_ros.T_result

           h450.ros.returnError  returnError
               No value
               h450_ros.ReturnError

           h450.ros.returnResult  returnResult
               No value
               h450_ros.ReturnResult

   H.450 Supplementary Services (h450)
           h450.10.CfbOvrOptArg  CfbOvrOptArg
               No value
               h450_10.CfbOvrOptArg

           h450.10.CoReqOptArg  CoReqOptArg
               No value
               h450_10.CoReqOptArg

           h450.10.MixedExtension  MixedExtension
               Unsigned 32-bit integer
               h450_4.MixedExtension

           h450.10.RUAlertOptArg  RUAlertOptArg
               No value
               h450_10.RUAlertOptArg

           h450.10.extension  extension
               Unsigned 32-bit integer
               h450_10.SEQUENCE_SIZE_0_255_OF_MixedExtension

           h450.11.CIFrcRelArg  CIFrcRelArg
               No value
               h450_11.CIFrcRelArg

           h450.11.CIFrcRelOptRes  CIFrcRelOptRes
               No value
               h450_11.CIFrcRelOptRes

           h450.11.CIGetCIPLOptArg  CIGetCIPLOptArg
               No value
               h450_11.CIGetCIPLOptArg

           h450.11.CIGetCIPLRes  CIGetCIPLRes
               No value
               h450_11.CIGetCIPLRes

           h450.11.CIIsOptArg  CIIsOptArg
               No value
               h450_11.CIIsOptArg

           h450.11.CIIsOptRes  CIIsOptRes
               No value
               h450_11.CIIsOptRes

           h450.11.CINotificationArg  CINotificationArg
               No value
               h450_11.CINotificationArg

           h450.11.CIRequestArg  CIRequestArg
               No value
               h450_11.CIRequestArg

           h450.11.CIRequestRes  CIRequestRes
               No value
               h450_11.CIRequestRes

           h450.11.CISilentArg  CISilentArg
               No value
               h450_11.CISilentArg

           h450.11.CISilentOptRes  CISilentOptRes
               No value
               h450_11.CISilentOptRes

           h450.11.CIWobOptArg  CIWobOptArg
               No value
               h450_11.CIWobOptArg

           h450.11.CIWobOptRes  CIWobOptRes
               No value
               h450_11.CIWobOptRes

           h450.11.MixedExtension  MixedExtension
               Unsigned 32-bit integer
               h450_4.MixedExtension

           h450.11.argumentExtension  argumentExtension
               Unsigned 32-bit integer
               h450_11.SEQUENCE_SIZE_0_255_OF_MixedExtension

           h450.11.callForceReleased  callForceReleased
               No value
               h450_11.NULL

           h450.11.callIntruded  callIntruded
               No value
               h450_11.NULL

           h450.11.callIntrusionComplete  callIntrusionComplete
               No value
               h450_11.NULL

           h450.11.callIntrusionEnd  callIntrusionEnd
               No value
               h450_11.NULL

           h450.11.callIntrusionImpending  callIntrusionImpending
               No value
               h450_11.NULL

           h450.11.callIsolated  callIsolated
               No value
               h450_11.NULL

           h450.11.ciCapabilityLevel  ciCapabilityLevel
               Unsigned 32-bit integer
               h450_11.CICapabilityLevel

           h450.11.ciProtectionLevel  ciProtectionLevel
               Unsigned 32-bit integer
               h450_11.CIProtectionLevel

           h450.11.ciStatusInformation  ciStatusInformation
               Unsigned 32-bit integer
               h450_11.CIStatusInformation

           h450.11.resultExtension  resultExtension
               Unsigned 32-bit integer
               h450_11.SEQUENCE_SIZE_0_255_OF_MixedExtension

           h450.11.silentMonitoringPermitted  silentMonitoringPermitted
               No value
               h450_11.NULL

           h450.11.specificCall  specificCall
               No value
               h225.CallIdentifier

           h450.12.CmnArg  CmnArg
               No value
               h450_12.CmnArg

           h450.12.DummyArg  DummyArg
               No value
               h450_12.DummyArg

           h450.12.MixedExtension  MixedExtension
               Unsigned 32-bit integer
               h450_4.MixedExtension

           h450.12.extension  extension
               Unsigned 32-bit integer
               h450_12.SEQUENCE_SIZE_0_255_OF_MixedExtension

           h450.12.extensionArg  extensionArg
               Unsigned 32-bit integer
               h450_12.SEQUENCE_SIZE_0_255_OF_MixedExtension

           h450.12.featureControl  featureControl
               No value
               h450_12.FeatureControl

           h450.12.featureList  featureList
               No value
               h450_12.FeatureList

           h450.12.featureValues  featureValues
               No value
               h450_12.FeatureValues

           h450.12.partyCategory  partyCategory
               Unsigned 32-bit integer
               h450_12.PartyCategory

           h450.12.ssCCBSPossible  ssCCBSPossible
               No value
               h450_12.NULL

           h450.12.ssCCNRPossible  ssCCNRPossible
               No value
               h450_12.NULL

           h450.12.ssCFreRoutingSupported  ssCFreRoutingSupported
               No value
               h450_12.NULL

           h450.12.ssCHDoNotHold  ssCHDoNotHold
               No value
               h450_12.NULL

           h450.12.ssCHFarHoldSupported  ssCHFarHoldSupported
               No value
               h450_12.NULL

           h450.12.ssCIConferenceSupported  ssCIConferenceSupported
               No value
               h450_12.NULL

           h450.12.ssCIForcedReleaseSupported  ssCIForcedReleaseSupported
               No value
               h450_12.NULL

           h450.12.ssCIIsolationSupported  ssCIIsolationSupported
               No value
               h450_12.NULL

           h450.12.ssCISilentMonitorPermitted  ssCISilentMonitorPermitted
               No value
               h450_12.NULL

           h450.12.ssCISilentMonitoringSupported  ssCISilentMonitoringSupported
               No value
               h450_12.NULL

           h450.12.ssCIWaitOnBusySupported  ssCIWaitOnBusySupported
               No value
               h450_12.NULL

           h450.12.ssCIprotectionLevel  ssCIprotectionLevel
               Unsigned 32-bit integer
               h450_12.SSCIProtectionLevel

           h450.12.ssCOSupported  ssCOSupported
               No value
               h450_12.NULL

           h450.12.ssCPCallParkSupported  ssCPCallParkSupported
               No value
               h450_12.NULL

           h450.12.ssCTDoNotTransfer  ssCTDoNotTransfer
               No value
               h450_12.NULL

           h450.12.ssCTreRoutingSupported  ssCTreRoutingSupported
               No value
               h450_12.NULL

           h450.12.ssMWICallbackCall  ssMWICallbackCall
               No value
               h450_12.NULL

           h450.12.ssMWICallbackSupported  ssMWICallbackSupported
               No value
               h450_12.NULL

           h450.2.CTActiveArg  CTActiveArg
               No value
               h450_2.CTActiveArg

           h450.2.CTCompleteArg  CTCompleteArg
               No value
               h450_2.CTCompleteArg

           h450.2.CTIdentifyRes  CTIdentifyRes
               No value
               h450_2.CTIdentifyRes

           h450.2.CTInitiateArg  CTInitiateArg
               No value
               h450_2.CTInitiateArg

           h450.2.CTSetupArg  CTSetupArg
               No value
               h450_2.CTSetupArg

           h450.2.CTUpdateArg  CTUpdateArg
               No value
               h450_2.CTUpdateArg

           h450.2.DummyArg  DummyArg
               Unsigned 32-bit integer
               h450_2.DummyArg

           h450.2.DummyRes  DummyRes
               Unsigned 32-bit integer
               h450_2.DummyRes

           h450.2.Extension  Extension
               No value
               h450.Extension

           h450.2.PAR_unspecified  PAR-unspecified
               Unsigned 32-bit integer
               h450_2.PAR_unspecified

           h450.2.SubaddressTransferArg  SubaddressTransferArg
               No value
               h450_2.SubaddressTransferArg

           h450.2.argumentExtension  argumentExtension
               Unsigned 32-bit integer
               h450_2.T_cTInitiateArg_argumentExtension

           h450.2.basicCallInfoElements  basicCallInfoElements
               Byte array
               h450.H225InformationElement

           h450.2.callIdentity  callIdentity
               String
               h450_2.CallIdentity

           h450.2.callStatus  callStatus
               Unsigned 32-bit integer
               h450_2.CallStatus

           h450.2.connectedAddress  connectedAddress
               No value
               h450.EndpointAddress

           h450.2.connectedInfo  connectedInfo
               String
               h450_2.BMPString_SIZE_1_128

           h450.2.endDesignation  endDesignation
               Unsigned 32-bit integer
               h450_2.EndDesignation

           h450.2.extension  extension
               No value
               h450.Extension

           h450.2.extensionSeq  extensionSeq
               Unsigned 32-bit integer
               h450_2.ExtensionSeq

           h450.2.nonStandard  nonStandard
               No value
               h225.NonStandardParameter

           h450.2.nonStandardData  nonStandardData
               No value
               h225.NonStandardParameter

           h450.2.redirectionInfo  redirectionInfo
               String
               h450_2.BMPString_SIZE_1_128

           h450.2.redirectionNumber  redirectionNumber
               No value
               h450.EndpointAddress

           h450.2.redirectionSubaddress  redirectionSubaddress
               Unsigned 32-bit integer
               h450.PartySubaddress

           h450.2.reroutingNumber  reroutingNumber
               No value
               h450.EndpointAddress

           h450.2.resultExtension  resultExtension
               Unsigned 32-bit integer
               h450_2.T_resultExtension

           h450.2.transferringNumber  transferringNumber
               No value
               h450.EndpointAddress

           h450.3.ARG_activateDiversionQ  ARG-activateDiversionQ
               No value
               h450_3.ARG_activateDiversionQ

           h450.3.ARG_callRerouting  ARG-callRerouting
               No value
               h450_3.ARG_callRerouting

           h450.3.ARG_cfnrDivertedLegFailed  ARG-cfnrDivertedLegFailed
               Unsigned 32-bit integer
               h450_3.ARG_cfnrDivertedLegFailed

           h450.3.ARG_checkRestriction  ARG-checkRestriction
               No value
               h450_3.ARG_checkRestriction

           h450.3.ARG_deactivateDiversionQ  ARG-deactivateDiversionQ
               No value
               h450_3.ARG_deactivateDiversionQ

           h450.3.ARG_divertingLegInformation1  ARG-divertingLegInformation1
               No value
               h450_3.ARG_divertingLegInformation1

           h450.3.ARG_divertingLegInformation2  ARG-divertingLegInformation2
               No value
               h450_3.ARG_divertingLegInformation2

           h450.3.ARG_divertingLegInformation3  ARG-divertingLegInformation3
               No value
               h450_3.ARG_divertingLegInformation3

           h450.3.ARG_divertingLegInformation4  ARG-divertingLegInformation4
               No value
               h450_3.ARG_divertingLegInformation4

           h450.3.ARG_interrogateDiversionQ  ARG-interrogateDiversionQ
               No value
               h450_3.ARG_interrogateDiversionQ

           h450.3.Extension  Extension
               No value
               h450.Extension

           h450.3.IntResult  IntResult
               No value
               h450_3.IntResult

           h450.3.IntResultList  IntResultList
               Unsigned 32-bit integer
               h450_3.IntResultList

           h450.3.PAR_unspecified  PAR-unspecified
               Unsigned 32-bit integer
               h450_3.PAR_unspecified

           h450.3.RES_activateDiversionQ  RES-activateDiversionQ
               Unsigned 32-bit integer
               h450_3.RES_activateDiversionQ

           h450.3.RES_callRerouting  RES-callRerouting
               Unsigned 32-bit integer
               h450_3.RES_callRerouting

           h450.3.RES_checkRestriction  RES-checkRestriction
               Unsigned 32-bit integer
               h450_3.RES_checkRestriction

           h450.3.RES_deactivateDiversionQ  RES-deactivateDiversionQ
               Unsigned 32-bit integer
               h450_3.RES_deactivateDiversionQ

           h450.3.activatingUserNr  activatingUserNr
               No value
               h450.EndpointAddress

           h450.3.basicService  basicService
               Unsigned 32-bit integer
               h450_3.BasicService

           h450.3.calledAddress  calledAddress
               No value
               h450.EndpointAddress

           h450.3.callingInfo  callingInfo
               String
               h450_3.BMPString_SIZE_1_128

           h450.3.callingNr  callingNr
               No value
               h450.EndpointAddress

           h450.3.callingNumber  callingNumber
               No value
               h450.EndpointAddress

           h450.3.callingPartySubaddress  callingPartySubaddress
               Unsigned 32-bit integer
               h450.PartySubaddress

           h450.3.deactivatingUserNr  deactivatingUserNr
               No value
               h450.EndpointAddress

           h450.3.diversionCounter  diversionCounter
               Unsigned 32-bit integer
               h450_3.INTEGER_1_15

           h450.3.diversionReason  diversionReason
               Unsigned 32-bit integer
               h450_3.DiversionReason

           h450.3.divertedToAddress  divertedToAddress
               No value
               h450.EndpointAddress

           h450.3.divertedToNr  divertedToNr
               No value
               h450.EndpointAddress

           h450.3.divertingNr  divertingNr
               No value
               h450.EndpointAddress

           h450.3.extension  extension
               Unsigned 32-bit integer
               h450_3.ActivateDiversionQArg_extension

           h450.3.extensionSeq  extensionSeq
               Unsigned 32-bit integer
               h450_3.ExtensionSeq

           h450.3.h225InfoElement  h225InfoElement
               Byte array
               h450.H225InformationElement

           h450.3.interrogatingUserNr  interrogatingUserNr
               No value
               h450.EndpointAddress

           h450.3.lastReroutingNr  lastReroutingNr
               No value
               h450.EndpointAddress

           h450.3.nominatedInfo  nominatedInfo
               String
               h450_3.BMPString_SIZE_1_128

           h450.3.nominatedNr  nominatedNr
               No value
               h450.EndpointAddress

           h450.3.nonStandard  nonStandard
               No value
               h225.NonStandardParameter

           h450.3.nonStandardData  nonStandardData
               No value
               h225.NonStandardParameter

           h450.3.originalCalledInfo  originalCalledInfo
               String
               h450_3.BMPString_SIZE_1_128

           h450.3.originalCalledNr  originalCalledNr
               No value
               h450.EndpointAddress

           h450.3.originalDiversionReason  originalDiversionReason
               Unsigned 32-bit integer
               h450_3.DiversionReason

           h450.3.originalReroutingReason  originalReroutingReason
               Unsigned 32-bit integer
               h450_3.DiversionReason

           h450.3.presentationAllowedIndicator  presentationAllowedIndicator
               Boolean
               h450.PresentationAllowedIndicator

           h450.3.procedure  procedure
               Unsigned 32-bit integer
               h450_3.Procedure

           h450.3.redirectingInfo  redirectingInfo
               String
               h450_3.BMPString_SIZE_1_128

           h450.3.redirectingNr  redirectingNr
               No value
               h450.EndpointAddress

           h450.3.redirectionInfo  redirectionInfo
               String
               h450_3.BMPString_SIZE_1_128

           h450.3.redirectionNr  redirectionNr
               No value
               h450.EndpointAddress

           h450.3.remoteEnabled  remoteEnabled
               Boolean
               h450_3.BOOLEAN

           h450.3.reroutingReason  reroutingReason
               Unsigned 32-bit integer
               h450_3.DiversionReason

           h450.3.servedUserNr  servedUserNr
               No value
               h450.EndpointAddress

           h450.3.subscriptionOption  subscriptionOption
               Unsigned 32-bit integer
               h450_3.SubscriptionOption

           h450.4.HoldNotificArg  HoldNotificArg
               No value
               h450_4.HoldNotificArg

           h450.4.MixedExtension  MixedExtension
               Unsigned 32-bit integer
               h450_4.MixedExtension

           h450.4.PAR_undefined  PAR-undefined
               Unsigned 32-bit integer
               h450_4.PAR_undefined

           h450.4.RemoteHoldArg  RemoteHoldArg
               No value
               h450_4.RemoteHoldArg

           h450.4.RemoteHoldRes  RemoteHoldRes
               No value
               h450_4.RemoteHoldRes

           h450.4.RemoteRetrieveArg  RemoteRetrieveArg
               No value
               h450_4.RemoteRetrieveArg

           h450.4.RemoteRetrieveRes  RemoteRetrieveRes
               No value
               h450_4.RemoteRetrieveRes

           h450.4.RetrieveNotificArg  RetrieveNotificArg
               No value
               h450_4.RetrieveNotificArg

           h450.4.extension  extension
               No value
               h450.Extension

           h450.4.extensionArg  extensionArg
               Unsigned 32-bit integer
               h450_4.SEQUENCE_SIZE_0_255_OF_MixedExtension

           h450.4.extensionRes  extensionRes
               Unsigned 32-bit integer
               h450_4.SEQUENCE_SIZE_0_255_OF_MixedExtension

           h450.4.nonStandardData  nonStandardData
               No value
               h225.NonStandardParameter

           h450.5.CpNotifyArg  CpNotifyArg
               No value
               h450_5.CpNotifyArg

           h450.5.CpRequestArg  CpRequestArg
               No value
               h450_5.CpRequestArg

           h450.5.CpRequestRes  CpRequestRes
               No value
               h450_5.CpRequestRes

           h450.5.CpSetupArg  CpSetupArg
               No value
               h450_5.CpSetupArg

           h450.5.CpSetupRes  CpSetupRes
               No value
               h450_5.CpSetupRes

           h450.5.CpickupNotifyArg  CpickupNotifyArg
               No value
               h450_5.CpickupNotifyArg

           h450.5.GroupIndicationOffArg  GroupIndicationOffArg
               No value
               h450_5.GroupIndicationOffArg

           h450.5.GroupIndicationOffRes  GroupIndicationOffRes
               No value
               h450_5.GroupIndicationOffRes

           h450.5.GroupIndicationOnArg  GroupIndicationOnArg
               No value
               h450_5.GroupIndicationOnArg

           h450.5.GroupIndicationOnRes  GroupIndicationOnRes
               No value
               h450_5.GroupIndicationOnRes

           h450.5.MixedExtension  MixedExtension
               Unsigned 32-bit integer
               h450_4.MixedExtension

           h450.5.PAR_undefined  PAR-undefined
               Unsigned 32-bit integer
               h450_5.PAR_undefined

           h450.5.PickExeArg  PickExeArg
               No value
               h450_5.PickExeArg

           h450.5.PickExeRes  PickExeRes
               No value
               h450_5.PickExeRes

           h450.5.PickrequArg  PickrequArg
               No value
               h450_5.PickrequArg

           h450.5.PickrequRes  PickrequRes
               No value
               h450_5.PickrequRes

           h450.5.PickupArg  PickupArg
               No value
               h450_5.PickupArg

           h450.5.PickupRes  PickupRes
               No value
               h450_5.PickupRes

           h450.5.callPickupId  callPickupId
               No value
               h225.CallIdentifier

           h450.5.extensionArg  extensionArg
               Unsigned 32-bit integer
               h450_5.SEQUENCE_SIZE_0_255_OF_MixedExtension

           h450.5.extensionRes  extensionRes
               Unsigned 32-bit integer
               h450_5.SEQUENCE_SIZE_0_255_OF_MixedExtension

           h450.5.groupMemberUserNr  groupMemberUserNr
               No value
               h450.EndpointAddress

           h450.5.parkCondition  parkCondition
               Unsigned 32-bit integer
               h450_5.ParkCondition

           h450.5.parkPosition  parkPosition
               Unsigned 32-bit integer
               h450_5.ParkedToPosition

           h450.5.parkedNumber  parkedNumber
               No value
               h450.EndpointAddress

           h450.5.parkedToNumber  parkedToNumber
               No value
               h450.EndpointAddress

           h450.5.parkedToPosition  parkedToPosition
               Unsigned 32-bit integer
               h450_5.ParkedToPosition

           h450.5.parkingNumber  parkingNumber
               No value
               h450.EndpointAddress

           h450.5.partyToRetrieve  partyToRetrieve
               No value
               h450.EndpointAddress

           h450.5.picking_upNumber  picking-upNumber
               No value
               h450.EndpointAddress

           h450.5.retrieveAddress  retrieveAddress
               No value
               h450.EndpointAddress

           h450.5.retrieveCallType  retrieveCallType
               Unsigned 32-bit integer
               h450_5.CallType

           h450.6.CallWaitingArg  CallWaitingArg
               No value
               h450_6.CallWaitingArg

           h450.6.MixedExtension  MixedExtension
               Unsigned 32-bit integer
               h450_4.MixedExtension

           h450.6.extensionArg  extensionArg
               Unsigned 32-bit integer
               h450_6.SEQUENCE_SIZE_0_255_OF_MixedExtension

           h450.6.nbOfAddWaitingCalls  nbOfAddWaitingCalls
               Unsigned 32-bit integer
               h450_6.INTEGER_0_255

           h450.7.DummyRes  DummyRes
               Unsigned 32-bit integer
               h450_7.DummyRes

           h450.7.MWIActivateArg  MWIActivateArg
               No value
               h450_7.MWIActivateArg

           h450.7.MWIDeactivateArg  MWIDeactivateArg
               No value
               h450_7.MWIDeactivateArg

           h450.7.MWIInterrogateArg  MWIInterrogateArg
               No value
               h450_7.MWIInterrogateArg

           h450.7.MWIInterrogateRes  MWIInterrogateRes
               Unsigned 32-bit integer
               h450_7.MWIInterrogateRes

           h450.7.MWIInterrogateResElt  MWIInterrogateResElt
               No value
               h450_7.MWIInterrogateResElt

           h450.7.MixedExtension  MixedExtension
               Unsigned 32-bit integer
               h450_4.MixedExtension

           h450.7.PAR_undefined  PAR-undefined
               Unsigned 32-bit integer
               h450_7.PAR_undefined

           h450.7.basicService  basicService
               Unsigned 32-bit integer
               h450_7.BasicService

           h450.7.callbackReq  callbackReq
               Boolean
               h450_7.BOOLEAN

           h450.7.extensionArg  extensionArg
               Unsigned 32-bit integer
               h450_7.SEQUENCE_SIZE_0_255_OF_MixedExtension

           h450.7.integer  integer
               Unsigned 32-bit integer
               h450_7.INTEGER_0_65535

           h450.7.msgCentreId  msgCentreId
               Unsigned 32-bit integer
               h450_7.MsgCentreId

           h450.7.nbOfMessages  nbOfMessages
               Unsigned 32-bit integer
               h450_7.NbOfMessages

           h450.7.numericString  numericString
               String
               h450_7.NumericString_SIZE_1_10

           h450.7.originatingNr  originatingNr
               No value
               h450.EndpointAddress

           h450.7.partyNumber  partyNumber
               No value
               h450.EndpointAddress

           h450.7.priority  priority
               Unsigned 32-bit integer
               h450_7.INTEGER_0_9

           h450.7.servedUserNr  servedUserNr
               No value
               h450.EndpointAddress

           h450.7.timestamp  timestamp
               String
               h450_7.TimeStamp

           h450.8.ARG_alertingName  ARG-alertingName
               No value
               h450_8.ARG_alertingName

           h450.8.ARG_busyName  ARG-busyName
               No value
               h450_8.ARG_busyName

           h450.8.ARG_callingName  ARG-callingName
               No value
               h450_8.ARG_callingName

           h450.8.ARG_connectedName  ARG-connectedName
               No value
               h450_8.ARG_connectedName

           h450.8.MixedExtension  MixedExtension
               Unsigned 32-bit integer
               h450_4.MixedExtension

           h450.8.extendedName  extendedName
               String
               h450_8.ExtendedName

           h450.8.extensionArg  extensionArg
               Unsigned 32-bit integer
               h450_8.SEQUENCE_SIZE_0_255_OF_MixedExtension

           h450.8.name  name
               Unsigned 32-bit integer
               h450_8.Name

           h450.8.nameNotAvailable  nameNotAvailable
               No value
               h450_8.NULL

           h450.8.namePresentationAllowed  namePresentationAllowed
               Unsigned 32-bit integer
               h450_8.NamePresentationAllowed

           h450.8.namePresentationRestricted  namePresentationRestricted
               Unsigned 32-bit integer
               h450_8.NamePresentationRestricted

           h450.8.restrictedNull  restrictedNull
               No value
               h450_8.NULL

           h450.8.simpleName  simpleName
               Byte array
               h450_8.SimpleName

           h450.9.CcArg  CcArg
               Unsigned 32-bit integer
               h450_9.CcArg

           h450.9.CcRequestArg  CcRequestArg
               No value
               h450_9.CcRequestArg

           h450.9.CcRequestRes  CcRequestRes
               No value
               h450_9.CcRequestRes

           h450.9.CcShortArg  CcShortArg
               No value
               h450_9.CcShortArg

           h450.9.MixedExtension  MixedExtension
               Unsigned 32-bit integer
               h450_4.MixedExtension

           h450.9.can_retain_service  can-retain-service
               Boolean
               h450_9.BOOLEAN

           h450.9.ccIdentifier  ccIdentifier
               No value
               h225.CallIdentifier

           h450.9.extension  extension
               Unsigned 32-bit integer
               h450_9.SEQUENCE_SIZE_0_255_OF_MixedExtension

           h450.9.longArg  longArg
               No value
               h450_9.CcLongArg

           h450.9.numberA  numberA
               No value
               h450.EndpointAddress

           h450.9.numberB  numberB
               No value
               h450.EndpointAddress

           h450.9.retain_service  retain-service
               Boolean
               h450_9.BOOLEAN

           h450.9.retain_sig_connection  retain-sig-connection
               Boolean
               h450_9.BOOLEAN

           h450.9.service  service
               Unsigned 32-bit integer
               h450_7.BasicService

           h450.9.shortArg  shortArg
               No value
               h450_9.CcShortArg

           h450.AliasAddress  AliasAddress
               Unsigned 32-bit integer
               h225.AliasAddress

           h450.H4501SupplementaryService  H4501SupplementaryService
               No value
               h450.H4501SupplementaryService

           h450.anyEntity  anyEntity
               No value
               h450.NULL

           h450.clearCallIfAnyInvokePduNotRecognized  clearCallIfAnyInvokePduNotRecognized
               No value
               h450.NULL

           h450.destinationAddress  destinationAddress
               Unsigned 32-bit integer
               h450.SEQUENCE_OF_AliasAddress

           h450.destinationAddressPresentationIndicator  destinationAddressPresentationIndicator
               Unsigned 32-bit integer
               h225.PresentationIndicator

           h450.destinationAddressScreeningIndicator  destinationAddressScreeningIndicator
               Unsigned 32-bit integer
               h225.ScreeningIndicator

           h450.destinationEntity  destinationEntity
               Unsigned 32-bit integer
               h450.EntityType

           h450.destinationEntityAddress  destinationEntityAddress
               Unsigned 32-bit integer
               h450.AddressInformation

           h450.discardAnyUnrecognizedInvokePdu  discardAnyUnrecognizedInvokePdu
               No value
               h450.NULL

           h450.endpoint  endpoint
               No value
               h450.NULL

           h450.error  Error
               Unsigned 8-bit integer
               Error

           h450.extensionArgument  extensionArgument
               No value
               h450.T_extensionArgument

           h450.extensionId  extensionId
               Object Identifier
               h450.OBJECT_IDENTIFIER

           h450.interpretationApdu  interpretationApdu
               Unsigned 32-bit integer
               h450.InterpretationApdu

           h450.networkFacilityExtension  networkFacilityExtension
               No value
               h450.NetworkFacilityExtension

           h450.nsapSubaddress  nsapSubaddress
               Byte array
               h450.NSAPSubaddress

           h450.oddCountIndicator  oddCountIndicator
               Boolean
               h450.BOOLEAN

           h450.operation  Operation
               Unsigned 8-bit integer
               Operation

           h450.rejectAnyUnrecognizedInvokePdu  rejectAnyUnrecognizedInvokePdu
               No value
               h450.NULL

           h450.remoteExtensionAddress  remoteExtensionAddress
               Unsigned 32-bit integer
               h225.AliasAddress

           h450.remoteExtensionAddressPresentationIndicator  remoteExtensionAddressPresentationIndicator
               Unsigned 32-bit integer
               h225.PresentationIndicator

           h450.remoteExtensionAddressScreeningIndicator  remoteExtensionAddressScreeningIndicator
               Unsigned 32-bit integer
               h225.ScreeningIndicator

           h450.rosApdus  rosApdus
               Unsigned 32-bit integer
               h450.T_rosApdus

           h450.rosApdus_item  rosApdus item
               Unsigned 32-bit integer
               h450.T_rosApdus_item

           h450.serviceApdu  serviceApdu
               Unsigned 32-bit integer
               h450.ServiceApdus

           h450.sourceEntity  sourceEntity
               Unsigned 32-bit integer
               h450.EntityType

           h450.sourceEntityAddress  sourceEntityAddress
               Unsigned 32-bit integer
               h450.AddressInformation

           h450.subaddressInformation  subaddressInformation
               Byte array
               h450.SubaddressInformation

           h450.userSpecifiedSubaddress  userSpecifiedSubaddress
               No value
               h450.UserSpecifiedSubaddress

   H.460 Supplementary Services (h460)
           h460.10.CallPartyCategoryInfo  CallPartyCategoryInfo
               No value
               h460_10.CallPartyCategoryInfo

           h460.10.callPartyCategory  callPartyCategory
               Unsigned 32-bit integer
               h460_10.CallPartyCategory

           h460.10.originatingLineInfo  originatingLineInfo
               Unsigned 32-bit integer
               h460_10.OriginatingLineInfo

           h460.14.MLPPInfo  MLPPInfo
               No value
               h460_14.MLPPInfo

           h460.14.altID  altID
               Unsigned 32-bit integer
               h225.AliasAddress

           h460.14.altTimer  altTimer
               Unsigned 32-bit integer
               h460_14.INTEGER_0_255

           h460.14.alternateParty  alternateParty
               No value
               h460_14.AlternateParty

           h460.14.mlppNotification  mlppNotification
               Unsigned 32-bit integer
               h460_14.MlppNotification

           h460.14.mlppReason  mlppReason
               Unsigned 32-bit integer
               h460_14.MlppReason

           h460.14.precedence  precedence
               Unsigned 32-bit integer
               h460_14.MlppPrecedence

           h460.14.preemptCallID  preemptCallID
               No value
               h225.CallIdentifier

           h460.14.preemptionComplete  preemptionComplete
               No value
               h460_14.NULL

           h460.14.preemptionEnd  preemptionEnd
               No value
               h460_14.NULL

           h460.14.preemptionInProgress  preemptionInProgress
               No value
               h460_14.NULL

           h460.14.preemptionPending  preemptionPending
               No value
               h460_14.NULL

           h460.14.releaseCall  releaseCall
               No value
               h460_14.ReleaseCall

           h460.14.releaseDelay  releaseDelay
               Unsigned 32-bit integer
               h460_14.INTEGER_0_255

           h460.14.releaseReason  releaseReason
               Unsigned 32-bit integer
               h460_14.MlppReason

           h460.15.SignallingChannelData  SignallingChannelData
               No value
               h460_15.SignallingChannelData

           h460.15.TransportAddress  TransportAddress
               Unsigned 32-bit integer
               h225.TransportAddress

           h460.15.channelResumeAddress  channelResumeAddress
               Unsigned 32-bit integer
               h460_15.SEQUENCE_OF_TransportAddress

           h460.15.channelResumeRequest  channelResumeRequest
               No value
               h460_15.ChannelResumeRequest

           h460.15.channelResumeResponse  channelResumeResponse
               No value
               h460_15.ChannelResumeResponse

           h460.15.channelSuspendCancel  channelSuspendCancel
               No value
               h460_15.ChannelSuspendCancel

           h460.15.channelSuspendConfirm  channelSuspendConfirm
               No value
               h460_15.ChannelSuspendConfirm

           h460.15.channelSuspendRequest  channelSuspendRequest
               No value
               h460_15.ChannelSuspendRequest

           h460.15.channelSuspendResponse  channelSuspendResponse
               No value
               h460_15.ChannelSuspendResponse

           h460.15.immediateResume  immediateResume
               Boolean
               h460_15.BOOLEAN

           h460.15.okToSuspend  okToSuspend
               Boolean
               h460_15.BOOLEAN

           h460.15.randomNumber  randomNumber
               Unsigned 32-bit integer
               h460_15.INTEGER_0_4294967295

           h460.15.resetH245  resetH245
               No value
               h460_15.NULL

           h460.15.signallingChannelData  signallingChannelData
               Unsigned 32-bit integer
               h460_15.T_signallingChannelData

           h460.18.IncomingCallIndication  IncomingCallIndication
               No value
               h460_18.IncomingCallIndication

           h460.18.LRQKeepAliveData  LRQKeepAliveData
               No value
               h460_18.LRQKeepAliveData

           h460.18.callID  callID
               No value
               h225.CallIdentifier

           h460.18.callSignallingAddress  callSignallingAddress
               Unsigned 32-bit integer
               h225.TransportAddress

           h460.18.lrqKeepAliveInterval  lrqKeepAliveInterval
               Unsigned 32-bit integer
               h225.TimeToLive

           h460.19.TraversalParameters  TraversalParameters
               No value
               h460_19.TraversalParameters

           h460.19.keepAliveChannel  keepAliveChannel
               Unsigned 32-bit integer
               h245.TransportAddress

           h460.19.keepAliveInterval  keepAliveInterval
               Unsigned 32-bit integer
               h225.TimeToLive

           h460.19.keepAlivePayloadType  keepAlivePayloadType
               Unsigned 32-bit integer
               h460_19.INTEGER_0_127

           h460.19.multiplexID  multiplexID
               Unsigned 32-bit integer
               h460_19.INTEGER_0_4294967295

           h460.19.multiplexedMediaChannel  multiplexedMediaChannel
               Unsigned 32-bit integer
               h245.TransportAddress

           h460.19.multiplexedMediaControlChannel  multiplexedMediaControlChannel
               Unsigned 32-bit integer
               h245.TransportAddress

           h460.2.NumberPortabilityInfo  NumberPortabilityInfo
               Unsigned 32-bit integer
               h460_2.NumberPortabilityInfo

           h460.2.addressTranslated  addressTranslated
               No value
               h460_2.NULL

           h460.2.aliasAddress  aliasAddress
               Unsigned 32-bit integer
               h225.AliasAddress

           h460.2.concatenatedNumber  concatenatedNumber
               No value
               h460_2.NULL

           h460.2.nUMBERPORTABILITYDATA  nUMBERPORTABILITYDATA
               No value
               h460_2.T_nUMBERPORTABILITYDATA

           h460.2.numberPortabilityRejectReason  numberPortabilityRejectReason
               Unsigned 32-bit integer
               h460_2.NumberPortabilityRejectReason

           h460.2.portabilityTypeOfNumber  portabilityTypeOfNumber
               Unsigned 32-bit integer
               h460_2.PortabilityTypeOfNumber

           h460.2.portedAddress  portedAddress
               No value
               h460_2.PortabilityAddress

           h460.2.portedNumber  portedNumber
               No value
               h460_2.NULL

           h460.2.privateTypeOfNumber  privateTypeOfNumber
               Unsigned 32-bit integer
               h225.PrivateTypeOfNumber

           h460.2.publicTypeOfNumber  publicTypeOfNumber
               Unsigned 32-bit integer
               h225.PublicTypeOfNumber

           h460.2.qorPortedNumber  qorPortedNumber
               No value
               h460_2.NULL

           h460.2.regionalData  regionalData
               Byte array
               h460_2.OCTET_STRING

           h460.2.regionalParams  regionalParams
               No value
               h460_2.RegionalParameters

           h460.2.routingAddress  routingAddress
               No value
               h460_2.PortabilityAddress

           h460.2.routingNumber  routingNumber
               No value
               h460_2.NULL

           h460.2.t35CountryCode  t35CountryCode
               Unsigned 32-bit integer
               h460_2.INTEGER_0_255

           h460.2.t35Extension  t35Extension
               Unsigned 32-bit integer
               h460_2.INTEGER_0_255

           h460.2.typeOfAddress  typeOfAddress
               Unsigned 32-bit integer
               h460_2.NumberPortabilityTypeOfNumber

           h460.2.unspecified  unspecified
               No value
               h460_2.NULL

           h460.2.variantIdentifier  variantIdentifier
               Unsigned 32-bit integer
               h460_2.INTEGER_1_255

           h460.21.Capability  Capability
               Unsigned 32-bit integer
               h245.Capability

           h460.21.CapabilityAdvertisement  CapabilityAdvertisement
               No value
               h460_21.CapabilityAdvertisement

           h460.21.TransmitCapabilities  TransmitCapabilities
               No value
               h460_21.TransmitCapabilities

           h460.21.capabilities  capabilities
               Unsigned 32-bit integer
               h460_21.SEQUENCE_SIZE_1_256_OF_Capability

           h460.21.capability  capability
               Unsigned 32-bit integer
               h245.Capability

           h460.21.groupIdentifer  groupIdentifer
               Byte array
               h460_21.GloballyUniqueID

           h460.21.maxGroups  maxGroups
               Unsigned 32-bit integer
               h460_21.INTEGER_1_65535

           h460.21.receiveCapabilities  receiveCapabilities
               No value
               h460_21.ReceiveCapabilities

           h460.21.sourceAddress  sourceAddress
               Unsigned 32-bit integer
               h245.UnicastAddress

           h460.21.transmitCapabilities  transmitCapabilities
               Unsigned 32-bit integer
               h460_21.SEQUENCE_SIZE_1_256_OF_TransmitCapabilities

           h460.3.CircuitStatus  CircuitStatus
               No value
               h460_3.CircuitStatus

           h460.3.CircuitStatusMap  CircuitStatusMap
               No value
               h460_3.CircuitStatusMap

           h460.3.baseCircuitID  baseCircuitID
               No value
               h225.CircuitIdentifier

           h460.3.busyStatus  busyStatus
               No value
               h460_3.NULL

           h460.3.circuitStatusMap  circuitStatusMap
               Unsigned 32-bit integer
               h460_3.SEQUENCE_OF_CircuitStatusMap

           h460.3.range  range
               Unsigned 32-bit integer
               h460_3.INTEGER_0_4095

           h460.3.serviceStatus  serviceStatus
               No value
               h460_3.NULL

           h460.3.status  status
               Byte array
               h460_3.OCTET_STRING

           h460.3.statusType  statusType
               Unsigned 32-bit integer
               h460_3.CircuitStatusType

           h460.4.CallPriorityInfo  CallPriorityInfo
               No value
               h460_4.CallPriorityInfo

           h460.4.ClearToken  ClearToken
               No value
               h235.ClearToken

           h460.4.CountryInternationalNetworkCallOriginationIdentification  CountryInternationalNetworkCallOriginationIdentification
               No value
               h460_4.CountryInternationalNetworkCallOriginationIdentification

           h460.4.CryptoToken  CryptoToken
               Unsigned 32-bit integer
               h235.CryptoToken

           h460.4.countryCode  countryCode
               String
               h460_4.X121CountryCode

           h460.4.cryptoTokens  cryptoTokens
               Unsigned 32-bit integer
               h460_4.SEQUENCE_OF_CryptoToken

           h460.4.e164  e164
               No value
               h460_4.T_e164

           h460.4.emergencyAuthorized  emergencyAuthorized
               No value
               h460_4.NULL

           h460.4.emergencyPublic  emergencyPublic
               No value
               h460_4.NULL

           h460.4.high  high
               No value
               h460_4.NULL

           h460.4.identificationCode  identificationCode
               String
               h460_4.T_identificationCode

           h460.4.normal  normal
               No value
               h460_4.NULL

           h460.4.numberingPlan  numberingPlan
               Unsigned 32-bit integer
               h460_4.T_numberingPlan

           h460.4.priorityExtension  priorityExtension
               Unsigned 32-bit integer
               h460_4.INTEGER_0_255

           h460.4.priorityUnauthorized  priorityUnauthorized
               No value
               h460_4.NULL

           h460.4.priorityUnavailable  priorityUnavailable
               No value
               h460_4.NULL

           h460.4.priorityValue  priorityValue
               Unsigned 32-bit integer
               h460_4.T_priorityValue

           h460.4.priorityValueUnknown  priorityValueUnknown
               No value
               h460_4.NULL

           h460.4.rejectReason  rejectReason
               Unsigned 32-bit integer
               h460_4.T_rejectReason

           h460.4.tokens  tokens
               Unsigned 32-bit integer
               h460_4.SEQUENCE_OF_ClearToken

           h460.4.x121  x121
               No value
               h460_4.T_x121

           h460.9.ExtendedRTPMetrics  ExtendedRTPMetrics
               No value
               h460_9.ExtendedRTPMetrics

           h460.9.Extension  Extension
               No value
               h460_9.Extension

           h460.9.PerCallQoSReport  PerCallQoSReport
               No value
               h460_9.PerCallQoSReport

           h460.9.QosMonitoringReportData  QosMonitoringReportData
               Unsigned 32-bit integer
               h460_9.QosMonitoringReportData

           h460.9.RTCPMeasures  RTCPMeasures
               No value
               h460_9.RTCPMeasures

           h460.9.adaptive  adaptive
               No value
               h460_9.NULL

           h460.9.burstDuration  burstDuration
               Unsigned 32-bit integer
               h460_9.INTEGER_0_65535

           h460.9.burstLossDensity  burstLossDensity
               Unsigned 32-bit integer
               h460_9.INTEGER_0_255

           h460.9.burstMetrics  burstMetrics
               No value
               h460_9.BurstMetrics

           h460.9.callIdentifier  callIdentifier
               No value
               h225.CallIdentifier

           h460.9.callReferenceValue  callReferenceValue
               Unsigned 32-bit integer
               h225.CallReferenceValue

           h460.9.conferenceID  conferenceID
               Globally Unique Identifier
               h225.ConferenceIdentifier

           h460.9.cumulativeNumberOfPacketsLost  cumulativeNumberOfPacketsLost
               Unsigned 32-bit integer
               h460_9.INTEGER_0_4294967295

           h460.9.disabled  disabled
               No value
               h460_9.NULL

           h460.9.endSystemDelay  endSystemDelay
               Unsigned 32-bit integer
               h460_9.INTEGER_0_65535

           h460.9.enhanced  enhanced
               No value
               h460_9.NULL

           h460.9.estimatedMOSCQ  estimatedMOSCQ
               Unsigned 32-bit integer
               h460_9.INTEGER_10_50

           h460.9.estimatedMOSLQ  estimatedMOSLQ
               Unsigned 32-bit integer
               h460_9.INTEGER_10_50

           h460.9.estimatedThroughput  estimatedThroughput
               Unsigned 32-bit integer
               h225.BandWidth

           h460.9.extRFactor  extRFactor
               Unsigned 32-bit integer
               h460_9.INTEGER_0_100

           h460.9.extensionContent  extensionContent
               Byte array
               h460_9.OCTET_STRING

           h460.9.extensionId  extensionId
               Unsigned 32-bit integer
               h225.GenericIdentifier

           h460.9.extensions  extensions
               Unsigned 32-bit integer
               h460_9.SEQUENCE_OF_Extension

           h460.9.final  final
               No value
               h460_9.FinalQosMonReport

           h460.9.fractionLostRate  fractionLostRate
               Unsigned 32-bit integer
               h460_9.INTEGER_0_65535

           h460.9.gapDuration  gapDuration
               Unsigned 32-bit integer
               h460_9.INTEGER_0_65535

           h460.9.gapLossDensity  gapLossDensity
               Unsigned 32-bit integer
               h460_9.INTEGER_0_255

           h460.9.gmin  gmin
               Unsigned 32-bit integer
               h460_9.INTEGER_0_255

           h460.9.interGK  interGK
               No value
               h460_9.InterGKQosMonReport

           h460.9.jitterBufferAbsoluteMax  jitterBufferAbsoluteMax
               Unsigned 32-bit integer
               h460_9.INTEGER_0_65535

           h460.9.jitterBufferAdaptRate  jitterBufferAdaptRate
               Unsigned 32-bit integer
               h460_9.INTEGER_0_15

           h460.9.jitterBufferDiscardRate  jitterBufferDiscardRate
               Unsigned 32-bit integer
               h460_9.INTEGER_0_255

           h460.9.jitterBufferMaxSize  jitterBufferMaxSize
               Unsigned 32-bit integer
               h460_9.INTEGER_0_65535

           h460.9.jitterBufferNominalSize  jitterBufferNominalSize
               Unsigned 32-bit integer
               h460_9.INTEGER_0_65535

           h460.9.jitterBufferParms  jitterBufferParms
               No value
               h460_9.JitterBufferParms

           h460.9.jitterBufferType  jitterBufferType
               Unsigned 32-bit integer
               h460_9.JitterBufferTypes

           h460.9.meanEstimatedEnd2EndDelay  meanEstimatedEnd2EndDelay
               Unsigned 32-bit integer
               h460_9.EstimatedEnd2EndDelay

           h460.9.meanJitter  meanJitter
               Unsigned 32-bit integer
               h460_9.CalculatedJitter

           h460.9.mediaChannelsQoS  mediaChannelsQoS
               Unsigned 32-bit integer
               h460_9.SEQUENCE_OF_RTCPMeasures

           h460.9.mediaInfo  mediaInfo
               Unsigned 32-bit integer
               h460_9.SEQUENCE_OF_RTCPMeasures

           h460.9.mediaReceiverMeasures  mediaReceiverMeasures
               No value
               h460_9.T_mediaReceiverMeasures

           h460.9.mediaSenderMeasures  mediaSenderMeasures
               No value
               h460_9.T_mediaSenderMeasures

           h460.9.networkPacketLossRate  networkPacketLossRate
               Unsigned 32-bit integer
               h460_9.INTEGER_0_255

           h460.9.noiseLevel  noiseLevel
               Signed 32-bit integer
               h460_9.INTEGER_M127_0

           h460.9.nonStandardData  nonStandardData
               No value
               h225.NonStandardParameter

           h460.9.nonadaptive  nonadaptive
               No value
               h460_9.NULL

           h460.9.packetLostRate  packetLostRate
               Unsigned 32-bit integer
               h460_9.INTEGER_0_65535

           h460.9.perCallInfo  perCallInfo
               Unsigned 32-bit integer
               h460_9.SEQUENCE_OF_PerCallQoSReport

           h460.9.periodic  periodic
               No value
               h460_9.PeriodicQoSMonReport

           h460.9.plcType  plcType
               Unsigned 32-bit integer
               h460_9.PLCtypes

           h460.9.rFactor  rFactor
               Unsigned 32-bit integer
               h460_9.INTEGER_0_100

           h460.9.reserved  reserved
               No value
               h460_9.NULL

           h460.9.residualEchoReturnLoss  residualEchoReturnLoss
               Unsigned 32-bit integer
               h460_9.INTEGER_0_127

           h460.9.rtcpAddress  rtcpAddress
               No value
               h225.TransportChannelInfo

           h460.9.rtcpRoundTripDelay  rtcpRoundTripDelay
               Unsigned 32-bit integer
               h460_9.INTEGER_0_65535

           h460.9.rtpAddress  rtpAddress
               No value
               h225.TransportChannelInfo

           h460.9.sessionId  sessionId
               Unsigned 32-bit integer
               h460_9.INTEGER_1_255

           h460.9.signalLevel  signalLevel
               Signed 32-bit integer
               h460_9.INTEGER_M127_10

           h460.9.standard  standard
               No value
               h460_9.NULL

           h460.9.unknown  unknown
               No value
               h460_9.NULL

           h460.9.unspecified  unspecified
               No value
               h460_9.NULL

           h460.9.worstEstimatedEnd2EndDelay  worstEstimatedEnd2EndDelay
               Unsigned 32-bit integer
               h460_9.EstimatedEnd2EndDelay

           h460.9.worstJitter  worstJitter
               Unsigned 32-bit integer
               h460_9.CalculatedJitter

   H.501 Mobility (h501)
           h501.AccessToken  AccessToken
               Unsigned 32-bit integer
               h501.AccessToken

           h501.AddressTemplate  AddressTemplate
               No value
               h501.AddressTemplate

           h501.AliasAddress  AliasAddress
               Unsigned 32-bit integer
               h225.AliasAddress

           h501.AlternatePE  AlternatePE
               No value
               h501.AlternatePE

           h501.CircuitIdentifier  CircuitIdentifier
               No value
               h225.CircuitIdentifier

           h501.ClearToken  ClearToken
               No value
               h235.ClearToken

           h501.ContactInformation  ContactInformation
               No value
               h501.ContactInformation

           h501.CryptoH323Token  CryptoH323Token
               Unsigned 32-bit integer
               h225.CryptoH323Token

           h501.Descriptor  Descriptor
               No value
               h501.Descriptor

           h501.DescriptorID  DescriptorID
               Globally Unique Identifier
               h501.DescriptorID

           h501.DescriptorInfo  DescriptorInfo
               No value
               h501.DescriptorInfo

           h501.GenericData  GenericData
               No value
               h225.GenericData

           h501.Message  Message
               No value
               h501.Message

           h501.NonStandardParameter  NonStandardParameter
               No value
               h225.NonStandardParameter

           h501.Pattern  Pattern
               Unsigned 32-bit integer
               h501.Pattern

           h501.PriceElement  PriceElement
               No value
               h501.PriceElement

           h501.PriceInfoSpec  PriceInfoSpec
               No value
               h501.PriceInfoSpec

           h501.RouteInformation  RouteInformation
               No value
               h501.RouteInformation

           h501.SecurityMode  SecurityMode
               No value
               h501.SecurityMode

           h501.ServiceControlSession  ServiceControlSession
               No value
               h225.ServiceControlSession

           h501.SupportedProtocols  SupportedProtocols
               Unsigned 32-bit integer
               h225.SupportedProtocols

           h501.TransportAddress  TransportAddress
               Unsigned 32-bit integer
               h225.TransportAddress

           h501.UpdateInformation  UpdateInformation
               No value
               h501.UpdateInformation

           h501.UsageField  UsageField
               No value
               h501.UsageField

           h501.accessConfirmation  accessConfirmation
               No value
               h501.AccessConfirmation

           h501.accessRejection  accessRejection
               No value
               h501.AccessRejection

           h501.accessRequest  accessRequest
               No value
               h501.AccessRequest

           h501.accessToken  accessToken
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_AccessToken

           h501.accessTokens  accessTokens
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_AccessToken

           h501.added  added
               No value
               h501.NULL

           h501.algorithmOIDs  algorithmOIDs
               Unsigned 32-bit integer
               h501.T_algorithmOIDs

           h501.algorithmOIDs_item  algorithmOIDs item
               Object Identifier
               h501.OBJECT_IDENTIFIER

           h501.aliasesInconsistent  aliasesInconsistent
               No value
               h501.NULL

           h501.alternateIsPermanent  alternateIsPermanent
               Boolean
               h501.BOOLEAN

           h501.alternatePE  alternatePE
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_AlternatePE

           h501.alternates  alternates
               No value
               h501.AlternatePEInfo

           h501.amount  amount
               Unsigned 32-bit integer
               h501.INTEGER_0_4294967295

           h501.annexGversion  annexGversion
               Object Identifier
               h501.ProtocolVersion

           h501.applicationMessage  applicationMessage
               Byte array
               h501.ApplicationMessage

           h501.authentication  authentication
               Unsigned 32-bit integer
               h235.AuthenticationMechanism

           h501.authenticationConfirmation  authenticationConfirmation
               No value
               h501.AuthenticationConfirmation

           h501.authenticationRejection  authenticationRejection
               No value
               h501.AuthenticationRejection

           h501.authenticationRequest  authenticationRequest
               No value
               h501.AuthenticationRequest

           h501.body  body
               Unsigned 32-bit integer
               h501.MessageBody

           h501.bytes  bytes
               No value
               h501.NULL

           h501.callEnded  callEnded
               No value
               h501.NULL

           h501.callIdentifier  callIdentifier
               No value
               h225.CallIdentifier

           h501.callInProgress  callInProgress
               No value
               h501.NULL

           h501.callInfo  callInfo
               No value
               h501.CallInformation

           h501.callSpecific  callSpecific
               Boolean
               h501.BOOLEAN

           h501.cannotSupportUsageSpec  cannotSupportUsageSpec
               No value
               h501.NULL

           h501.causeIE  causeIE
               Unsigned 32-bit integer
               h501.INTEGER_1_65535

           h501.changed  changed
               No value
               h501.NULL

           h501.circuitID  circuitID
               No value
               h225.CircuitInfo

           h501.common  common
               No value
               h501.MessageCommonInfo

           h501.conferenceID  conferenceID
               Globally Unique Identifier
               h225.ConferenceIdentifier

           h501.contactAddress  contactAddress
               Unsigned 32-bit integer
               h225.AliasAddress

           h501.contacts  contacts
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_ContactInformation

           h501.continue  continue
               No value
               h501.NULL

           h501.cryptoToken  cryptoToken
               Unsigned 32-bit integer
               h225.CryptoH323Token

           h501.cryptoTokens  cryptoTokens
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_CryptoH323Token

           h501.currency  currency
               String
               h501.IA5String_SIZE_3

           h501.currencyScale  currencyScale
               Signed 32-bit integer
               h501.INTEGER_M127_127

           h501.delay  delay
               Unsigned 32-bit integer
               h501.INTEGER_1_65535

           h501.deleted  deleted
               No value
               h501.NULL

           h501.descriptor  descriptor
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_Descriptor

           h501.descriptorConfirmation  descriptorConfirmation
               No value
               h501.DescriptorConfirmation

           h501.descriptorID  descriptorID
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_DescriptorID

           h501.descriptorIDConfirmation  descriptorIDConfirmation
               No value
               h501.DescriptorIDConfirmation

           h501.descriptorIDRejection  descriptorIDRejection
               No value
               h501.DescriptorIDRejection

           h501.descriptorIDRequest  descriptorIDRequest
               No value
               h501.DescriptorIDRequest

           h501.descriptorInfo  descriptorInfo
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_DescriptorInfo

           h501.descriptorRejection  descriptorRejection
               No value
               h501.DescriptorRejection

           h501.descriptorRequest  descriptorRequest
               No value
               h501.DescriptorRequest

           h501.descriptorUpdate  descriptorUpdate
               No value
               h501.DescriptorUpdate

           h501.descriptorUpdateAck  descriptorUpdateAck
               No value
               h501.DescriptorUpdateAck

           h501.desiredProtocols  desiredProtocols
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_SupportedProtocols

           h501.destAddress  destAddress
               No value
               h501.PartyInformation

           h501.destination  destination
               No value
               h501.NULL

           h501.destinationInfo  destinationInfo
               No value
               h501.PartyInformation

           h501.destinationUnavailable  destinationUnavailable
               No value
               h501.NULL

           h501.domainIdentifier  domainIdentifier
               Unsigned 32-bit integer
               h225.AliasAddress

           h501.elementIdentifier  elementIdentifier
               String
               h501.ElementIdentifier

           h501.end  end
               No value
               h501.NULL

           h501.endOfRange  endOfRange
               Unsigned 32-bit integer
               h225.PartyNumber

           h501.endTime  endTime
               Date/Time stamp
               h235.TimeStamp

           h501.endpointType  endpointType
               No value
               h225.EndpointType

           h501.expired  expired
               No value
               h501.NULL

           h501.failures  failures
               No value
               h501.NULL

           h501.featureSet  featureSet
               No value
               h225.FeatureSet

           h501.gatekeeperID  gatekeeperID
               String
               h225.GatekeeperIdentifier

           h501.genericData  genericData
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_GenericData

           h501.genericDataReason  genericDataReason
               No value
               h501.NULL

           h501.hopCount  hopCount
               Unsigned 32-bit integer
               h501.INTEGER_1_255

           h501.hopCountExceeded  hopCountExceeded
               No value
               h501.NULL

           h501.hoursFrom  hoursFrom
               String
               h501.IA5String_SIZE_6

           h501.hoursUntil  hoursUntil
               String
               h501.IA5String_SIZE_6

           h501.id  id
               Object Identifier
               h501.OBJECT_IDENTIFIER

           h501.illegalID  illegalID
               No value
               h501.NULL

           h501.incomplete  incomplete
               No value
               h501.NULL

           h501.incompleteAddress  incompleteAddress
               No value
               h501.NULL

           h501.initial  initial
               No value
               h501.NULL

           h501.integrity  integrity
               Unsigned 32-bit integer
               h225.IntegrityMechanism

           h501.integrityCheckValue  integrityCheckValue
               No value
               h225.ICV

           h501.invalidCall  invalidCall
               No value
               h501.NULL

           h501.lastChanged  lastChanged
               String
               h501.GlobalTimeStamp

           h501.logicalAddresses  logicalAddresses
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_AliasAddress

           h501.maintenance  maintenance
               No value
               h501.NULL

           h501.maximum  maximum
               No value
               h501.NULL

           h501.messageType  messageType
               Unsigned 32-bit integer
               h501.T_messageType

           h501.minimum  minimum
               No value
               h501.NULL

           h501.missingDestInfo  missingDestInfo
               No value
               h501.NULL

           h501.missingSourceInfo  missingSourceInfo
               No value
               h501.NULL

           h501.multipleCalls  multipleCalls
               Boolean
               h501.BOOLEAN

           h501.needCallInformation  needCallInformation
               No value
               h501.NULL

           h501.neededFeature  neededFeature
               No value
               h501.NULL

           h501.never  never
               No value
               h501.NULL

           h501.noDescriptors  noDescriptors
               No value
               h501.NULL

           h501.noMatch  noMatch
               No value
               h501.NULL

           h501.noServiceRelationship  noServiceRelationship
               No value
               h501.NULL

           h501.nonExistent  nonExistent
               No value
               h501.NULL

           h501.nonStandard  nonStandard
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_NonStandardParameter

           h501.nonStandardConfirmation  nonStandardConfirmation
               No value
               h501.NonStandardConfirmation

           h501.nonStandardData  nonStandardData
               No value
               h225.NonStandardParameter

           h501.nonStandardRejection  nonStandardRejection
               No value
               h501.NonStandardRejection

           h501.nonStandardRequest  nonStandardRequest
               No value
               h501.NonStandardRequest

           h501.notSupported  notSupported
               No value
               h501.NULL

           h501.notUnderstood  notUnderstood
               No value
               h501.NULL

           h501.originator  originator
               No value
               h501.NULL

           h501.outOfService  outOfService
               No value
               h501.NULL

           h501.packetSizeExceeded  packetSizeExceeded
               No value
               h501.NULL

           h501.packets  packets
               No value
               h501.NULL

           h501.partialResponse  partialResponse
               Boolean
               h501.BOOLEAN

           h501.pattern  pattern
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_Pattern

           h501.period  period
               Unsigned 32-bit integer
               h501.INTEGER_1_65535

           h501.preConnect  preConnect
               No value
               h501.NULL

           h501.preferred  preferred
               Unsigned 32-bit integer
               h501.T_preferred

           h501.preferred_item  preferred item
               Object Identifier
               h501.OBJECT_IDENTIFIER

           h501.priceElement  priceElement
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_PriceElement

           h501.priceFormula  priceFormula
               String
               h501.IA5String_SIZE_1_2048

           h501.priceInfo  priceInfo
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_PriceInfoSpec

           h501.priority  priority
               Unsigned 32-bit integer
               h501.INTEGER_0_127

           h501.quantum  quantum
               Unsigned 32-bit integer
               h501.INTEGER_0_4294967295

           h501.range  range
               No value
               h501.T_range

           h501.reason  reason
               Unsigned 32-bit integer
               h501.ServiceRejectionReason

           h501.registrationLost  registrationLost
               No value
               h501.NULL

           h501.releaseCompleteReason  releaseCompleteReason
               Unsigned 32-bit integer
               h225.ReleaseCompleteReason

           h501.replyAddress  replyAddress
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_TransportAddress

           h501.requestInProgress  requestInProgress
               No value
               h501.RequestInProgress

           h501.required  required
               Unsigned 32-bit integer
               h501.T_required

           h501.required_item  required item
               Object Identifier
               h501.OBJECT_IDENTIFIER

           h501.resourceUnavailable  resourceUnavailable
               No value
               h501.NULL

           h501.routeInfo  routeInfo
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_RouteInformation

           h501.seconds  seconds
               No value
               h501.NULL

           h501.security  security
               No value
               h501.NULL

           h501.securityIntegrityFailed  securityIntegrityFailed
               No value
               h501.NULL

           h501.securityMode  securityMode
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_SecurityMode

           h501.securityReplay  securityReplay
               No value
               h501.NULL

           h501.securityWrongGeneralID  securityWrongGeneralID
               No value
               h501.NULL

           h501.securityWrongOID  securityWrongOID
               No value
               h501.NULL

           h501.securityWrongSendersID  securityWrongSendersID
               No value
               h501.NULL

           h501.securityWrongSyncTime  securityWrongSyncTime
               No value
               h501.NULL

           h501.sendAccessRequest  sendAccessRequest
               No value
               h501.NULL

           h501.sendSetup  sendSetup
               No value
               h501.NULL

           h501.sendTo  sendTo
               String
               h501.ElementIdentifier

           h501.sendToPEAddress  sendToPEAddress
               Unsigned 32-bit integer
               h225.AliasAddress

           h501.sender  sender
               Unsigned 32-bit integer
               h225.AliasAddress

           h501.senderRole  senderRole
               Unsigned 32-bit integer
               h501.Role

           h501.sequenceNumber  sequenceNumber
               Unsigned 32-bit integer
               h501.INTEGER_0_65535

           h501.serviceConfirmation  serviceConfirmation
               No value
               h501.ServiceConfirmation

           h501.serviceControl  serviceControl
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_ServiceControlSession

           h501.serviceID  serviceID
               Globally Unique Identifier
               h501.ServiceID

           h501.serviceRedirected  serviceRedirected
               No value
               h501.NULL

           h501.serviceRejection  serviceRejection
               No value
               h501.ServiceRejection

           h501.serviceRelease  serviceRelease
               No value
               h501.ServiceRelease

           h501.serviceRequest  serviceRequest
               No value
               h501.ServiceRequest

           h501.serviceUnavailable  serviceUnavailable
               No value
               h501.NULL

           h501.sourceInfo  sourceInfo
               No value
               h501.PartyInformation

           h501.specific  specific
               Unsigned 32-bit integer
               h225.AliasAddress

           h501.srcInfo  srcInfo
               No value
               h501.PartyInformation

           h501.start  start
               No value
               h501.NULL

           h501.startOfRange  startOfRange
               Unsigned 32-bit integer
               h225.PartyNumber

           h501.startTime  startTime
               Date/Time stamp
               h235.TimeStamp

           h501.supportedCircuits  supportedCircuits
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_CircuitIdentifier

           h501.supportedProtocols  supportedProtocols
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_SupportedProtocols

           h501.templates  templates
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_AddressTemplate

           h501.terminated  terminated
               No value
               h501.NULL

           h501.terminationCause  terminationCause
               No value
               h501.TerminationCause

           h501.timeToLive  timeToLive
               Unsigned 32-bit integer
               h501.INTEGER_1_4294967295

           h501.timeZone  timeZone
               Signed 32-bit integer
               h501.TimeZone

           h501.token  token
               No value
               h235.ClearToken

           h501.tokenNotValid  tokenNotValid
               No value
               h501.NULL

           h501.tokens  tokens
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_ClearToken

           h501.transportAddress  transportAddress
               Unsigned 32-bit integer
               h225.AliasAddress

           h501.transportQoS  transportQoS
               Unsigned 32-bit integer
               h225.TransportQOS

           h501.type  type
               No value
               h225.EndpointType

           h501.unavailable  unavailable
               No value
               h501.NULL

           h501.undefined  undefined
               No value
               h501.NULL

           h501.units  units
               Unsigned 32-bit integer
               h501.T_units

           h501.unknownCall  unknownCall
               No value
               h501.NULL

           h501.unknownMessage  unknownMessage
               Byte array
               h501.OCTET_STRING

           h501.unknownMessageResponse  unknownMessageResponse
               No value
               h501.UnknownMessageResponse

           h501.unknownServiceID  unknownServiceID
               No value
               h501.NULL

           h501.unknownUsageSendTo  unknownUsageSendTo
               No value
               h501.NULL

           h501.updateInfo  updateInfo
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_UpdateInformation

           h501.updateType  updateType
               Unsigned 32-bit integer
               h501.T_updateType

           h501.usageCallStatus  usageCallStatus
               Unsigned 32-bit integer
               h501.UsageCallStatus

           h501.usageConfirmation  usageConfirmation
               No value
               h501.UsageConfirmation

           h501.usageFields  usageFields
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_UsageField

           h501.usageIndication  usageIndication
               No value
               h501.UsageIndication

           h501.usageIndicationConfirmation  usageIndicationConfirmation
               No value
               h501.UsageIndicationConfirmation

           h501.usageIndicationRejection  usageIndicationRejection
               No value
               h501.UsageIndicationRejection

           h501.usageRejection  usageRejection
               No value
               h501.UsageRejection

           h501.usageRequest  usageRequest
               No value
               h501.UsageRequest

           h501.usageSpec  usageSpec
               No value
               h501.UsageSpecification

           h501.usageUnavailable  usageUnavailable
               No value
               h501.NULL

           h501.userAuthenticator  userAuthenticator
               Unsigned 32-bit integer
               h501.SEQUENCE_OF_CryptoH323Token

           h501.userIdentifier  userIdentifier
               Unsigned 32-bit integer
               h225.AliasAddress

           h501.userInfo  userInfo
               No value
               h501.UserInformation

           h501.validFrom  validFrom
               String
               h501.GlobalTimeStamp

           h501.validUntil  validUntil
               String
               h501.GlobalTimeStamp

           h501.validationConfirmation  validationConfirmation
               No value
               h501.ValidationConfirmation

           h501.validationRejection  validationRejection
               No value
               h501.ValidationRejection

           h501.validationRequest  validationRequest
               No value
               h501.ValidationRequest

           h501.value  value
               Byte array
               h501.OCTET_STRING

           h501.version  version
               Object Identifier
               h501.ProtocolVersion

           h501.when  when
               No value
               h501.T_when

           h501.wildcard  wildcard
               Unsigned 32-bit integer
               h225.AliasAddress

   H221NonStandard (h221nonstd)
   H235-SECURITY-MESSAGES (h235)
           h235.GenericData  GenericData
               No value
               h225.GenericData

           h235.ProfileElement  ProfileElement
               No value
               h235.ProfileElement

           h235.SrtpCryptoCapability  SrtpCryptoCapability
               Unsigned 32-bit integer
               h235.SrtpCryptoCapability

           h235.SrtpCryptoInfo  SrtpCryptoInfo
               No value
               h235.SrtpCryptoInfo

           h235.SrtpKeyParameters  SrtpKeyParameters
               No value
               h235.SrtpKeyParameters

           h235.algorithmOID  algorithmOID
               Object Identifier
               h235.OBJECT_IDENTIFIER

           h235.allowMKI  allowMKI
               Boolean
               h235.BOOLEAN

           h235.authenticationBES  authenticationBES
               Unsigned 32-bit integer
               h235.AuthenticationBES

           h235.base  base
               No value
               h235.ECpoint

           h235.bits  bits
               Byte array
               h235.BIT_STRING

           h235.certProtectedKey  certProtectedKey
               No value
               h235.SIGNED

           h235.certSign  certSign
               No value
               h235.NULL

           h235.certificate  certificate
               Byte array
               h235.OCTET_STRING

           h235.challenge  challenge
               Byte array
               h235.ChallengeString

           h235.clearSalt  clearSalt
               Byte array
               h235.OCTET_STRING

           h235.clearSaltingKey  clearSaltingKey
               Byte array
               h235.OCTET_STRING

           h235.cryptoEncryptedToken  cryptoEncryptedToken
               No value
               h235.T_cryptoEncryptedToken

           h235.cryptoHashedToken  cryptoHashedToken
               No value
               h235.T_cryptoHashedToken

           h235.cryptoPwdEncr  cryptoPwdEncr
               No value
               h235.ENCRYPTED

           h235.cryptoSignedToken  cryptoSignedToken
               No value
               h235.T_cryptoSignedToken

           h235.cryptoSuite  cryptoSuite
               Object Identifier
               h235.OBJECT_IDENTIFIER

           h235.data  data
               Unsigned 32-bit integer
               h235.OCTET_STRING

           h235.default  default
               No value
               h235.NULL

           h235.dhExch  dhExch
               No value
               h235.NULL

           h235.dhkey  dhkey
               No value
               h235.DHset

           h235.eckasdh2  eckasdh2
               No value
               h235.T_eckasdh2

           h235.eckasdhkey  eckasdhkey
               Unsigned 32-bit integer
               h235.ECKASDH

           h235.eckasdhp  eckasdhp
               No value
               h235.T_eckasdhp

           h235.element  element
               Unsigned 32-bit integer
               h235.Element

           h235.elementID  elementID
               Unsigned 32-bit integer
               h235.INTEGER_0_255

           h235.encryptedData  encryptedData
               Byte array
               h235.OCTET_STRING

           h235.encryptedSaltingKey  encryptedSaltingKey
               Byte array
               h235.OCTET_STRING

           h235.encryptedSessionKey  encryptedSessionKey
               Byte array
               h235.OCTET_STRING

           h235.fecAfterSrtp  fecAfterSrtp
               No value
               h235.NULL

           h235.fecBeforeSrtp  fecBeforeSrtp
               No value
               h235.NULL

           h235.fecOrder  fecOrder
               No value
               h235.FecOrder

           h235.fieldSize  fieldSize
               Byte array
               h235.BIT_STRING_SIZE_0_511

           h235.flag  flag
               Boolean
               h235.BOOLEAN

           h235.generalID  generalID
               String
               h235.Identifier

           h235.generator  generator
               Byte array
               h235.BIT_STRING_SIZE_0_2048

           h235.genericKeyMaterial  genericKeyMaterial
               Byte array
               h235.OCTET_STRING

           h235.h235Key  h235Key
               Unsigned 32-bit integer
               h235.H235Key

           h235.halfkey  halfkey
               Byte array
               h235.BIT_STRING_SIZE_0_2048

           h235.hash  hash
               Byte array
               h235.BIT_STRING

           h235.hashedVals  hashedVals
               No value
               h235.ClearToken

           h235.integer  integer
               Signed 32-bit integer
               h235.INTEGER

           h235.ipsec  ipsec
               No value
               h235.NULL

           h235.iv  iv
               Byte array
               h235.OCTET_STRING

           h235.iv16  iv16
               Byte array
               h235.IV16

           h235.iv8  iv8
               Byte array
               h235.IV8

           h235.kdr  kdr
               Unsigned 32-bit integer
               h235.INTEGER_0_24

           h235.keyDerivationOID  keyDerivationOID
               Object Identifier
               h235.OBJECT_IDENTIFIER

           h235.keyExch  keyExch
               Object Identifier
               h235.OBJECT_IDENTIFIER

           h235.length  length
               Unsigned 32-bit integer
               h235.INTEGER_1_128

           h235.lifetime  lifetime
               Unsigned 32-bit integer
               h235.T_lifetime

           h235.masterKey  masterKey
               Byte array
               h235.OCTET_STRING

           h235.masterSalt  masterSalt
               Byte array
               h235.OCTET_STRING

           h235.mki  mki
               No value
               h235.T_mki

           h235.modSize  modSize
               Byte array
               h235.BIT_STRING_SIZE_0_2048

           h235.modulus  modulus
               Byte array
               h235.BIT_STRING_SIZE_0_511

           h235.name  name
               String
               h235.BMPString

           h235.newParameter  newParameter
               Unsigned 32-bit integer
               h235.SEQUENCE_OF_GenericData

           h235.nonStandard  nonStandard
               No value
               h235.NonStandardParameter

           h235.nonStandardIdentifier  nonStandardIdentifier
               Object Identifier
               h235.OBJECT_IDENTIFIER

           h235.octets  octets
               Byte array
               h235.OCTET_STRING

           h235.paramS  paramS
               No value
               h235.Params

           h235.paramSsalt  paramSsalt
               No value
               h235.Params

           h235.password  password
               String
               h235.Password

           h235.powerOfTwo  powerOfTwo
               Signed 32-bit integer
               h235.INTEGER

           h235.profileInfo  profileInfo
               Unsigned 32-bit integer
               h235.SEQUENCE_OF_ProfileElement

           h235.public_key  public-key
               No value
               h235.ECpoint

           h235.pwdHash  pwdHash
               No value
               h235.NULL

           h235.pwdSymEnc  pwdSymEnc
               No value
               h235.NULL

           h235.radius  radius
               No value
               h235.NULL

           h235.ranInt  ranInt
               Signed 32-bit integer
               h235.INTEGER

           h235.random  random
               Signed 32-bit integer
               h235.RandomVal

           h235.secureChannel  secureChannel
               Byte array
               h235.KeyMaterial

           h235.secureSharedSecret  secureSharedSecret
               No value
               h235.V3KeySyncMaterial

           h235.sendersID  sendersID
               String
               h235.Identifier

           h235.sessionParams  sessionParams
               No value
               h235.SrtpSessionParameters

           h235.sharedSecret  sharedSecret
               No value
               h235.ENCRYPTED

           h235.signature  signature
               Byte array
               h235.BIT_STRING

           h235.specific  specific
               Signed 32-bit integer
               h235.INTEGER

           h235.timeStamp  timeStamp
               Date/Time stamp
               h235.TimeStamp

           h235.tls  tls
               No value
               h235.NULL

           h235.toBeSigned  toBeSigned
               No value
               xxx.ToBeSigned

           h235.token  token
               No value
               h235.ENCRYPTED

           h235.tokenOID  tokenOID
               Object Identifier
               h235.OBJECT_IDENTIFIER

           h235.type  type
               Object Identifier
               h235.OBJECT_IDENTIFIER

           h235.unauthenticatedSrtp  unauthenticatedSrtp
               Boolean
               h235.BOOLEAN

           h235.unencryptedSrtcp  unencryptedSrtcp
               Boolean
               h235.BOOLEAN

           h235.unencryptedSrtp  unencryptedSrtp
               Boolean
               h235.BOOLEAN

           h235.value  value
               Byte array
               h235.OCTET_STRING

           h235.weierstrassA  weierstrassA
               Byte array
               h235.BIT_STRING_SIZE_0_511

           h235.weierstrassB  weierstrassB
               Byte array
               h235.BIT_STRING_SIZE_0_511

           h235.windowSizeHint  windowSizeHint
               Unsigned 32-bit integer
               h235.INTEGER_64_65535

           h235.x  x
               Byte array
               h235.BIT_STRING_SIZE_0_511

           h235.y  y
               Byte array
               h235.BIT_STRING_SIZE_0_511

   H323-MESSAGES (h225)
           h221.Manufacturer  H.221 Manufacturer
               Unsigned 32-bit integer
               H.221 Manufacturer

           h225.AddressPattern  AddressPattern
               Unsigned 32-bit integer
               h225.AddressPattern

           h225.AdmissionConfirm  AdmissionConfirm
               No value
               h225.AdmissionConfirm

           h225.AliasAddress  AliasAddress
               Unsigned 32-bit integer
               h225.AliasAddress

           h225.AlternateGK  AlternateGK
               No value
               h225.AlternateGK

           h225.AuthenticationMechanism  AuthenticationMechanism
               Unsigned 32-bit integer
               h235.AuthenticationMechanism

           h225.BandwidthDetails  BandwidthDetails
               No value
               h225.BandwidthDetails

           h225.CallReferenceValue  CallReferenceValue
               Unsigned 32-bit integer
               h225.CallReferenceValue

           h225.CallsAvailable  CallsAvailable
               No value
               h225.CallsAvailable

           h225.ClearToken  ClearToken
               No value
               h235.ClearToken

           h225.ConferenceIdentifier  ConferenceIdentifier
               Globally Unique Identifier
               h225.ConferenceIdentifier

           h225.ConferenceList  ConferenceList
               No value
               h225.ConferenceList

           h225.CryptoH323Token  CryptoH323Token
               Unsigned 32-bit integer
               h225.CryptoH323Token

           h225.DataRate  DataRate
               No value
               h225.DataRate

           h225.DestinationInfo_item  DestinationInfo item
               Unsigned 32-bit integer
               h225.DestinationInfo_item

           h225.Endpoint  Endpoint
               No value
               h225.Endpoint

           h225.EnumeratedParameter  EnumeratedParameter
               No value
               h225.EnumeratedParameter

           h225.ExtendedAliasAddress  ExtendedAliasAddress
               No value
               h225.ExtendedAliasAddress

           h225.FastStart_item  FastStart item
               Unsigned 32-bit integer
               h225.FastStart_item

           h225.FeatureDescriptor  FeatureDescriptor
               No value
               h225.FeatureDescriptor

           h225.GenericData  GenericData
               No value
               h225.GenericData

           h225.H245Control_item  H245Control item
               Unsigned 32-bit integer
               h225.H245Control_item

           h225.H245Security  H245Security
               Unsigned 32-bit integer
               h225.H245Security

           h225.H248PackagesDescriptor  H248PackagesDescriptor
               Byte array
               h225.H248PackagesDescriptor

           h225.H323_UserInformation  H323-UserInformation
               No value
               h225.H323_UserInformation

           h225.IntegrityMechanism  IntegrityMechanism
               Unsigned 32-bit integer
               h225.IntegrityMechanism

           h225.Language_item  Language item
               String
               h225.IA5String_SIZE_1_32

           h225.NonStandardParameter  NonStandardParameter
               No value
               h225.NonStandardParameter

           h225.ParallelH245Control_item  ParallelH245Control item
               Unsigned 32-bit integer
               h225.ParallelH245Control_item

           h225.PartyNumber  PartyNumber
               Unsigned 32-bit integer
               h225.PartyNumber

           h225.QOSCapability  QOSCapability
               No value
               h245.QOSCapability

           h225.RTPSession  RTPSession
               No value
               h225.RTPSession

           h225.RasMessage  RasMessage
               Unsigned 32-bit integer
               h225.RasMessage

           h225.RasUsageSpecification  RasUsageSpecification
               No value
               h225.RasUsageSpecification

           h225.ServiceControlSession  ServiceControlSession
               No value
               h225.ServiceControlSession

           h225.SupportedPrefix  SupportedPrefix
               No value
               h225.SupportedPrefix

           h225.SupportedProtocols  SupportedProtocols
               Unsigned 32-bit integer
               h225.SupportedProtocols

           h225.TransportAddress  TransportAddress
               Unsigned 32-bit integer
               h225.TransportAddress

           h225.TransportChannelInfo  TransportChannelInfo
               No value
               h225.TransportChannelInfo

           h225.TunnelledProtocol  TunnelledProtocol
               No value
               h225.TunnelledProtocol

           h225.abbreviatedNumber  abbreviatedNumber
               No value
               h225.NULL

           h225.activeMC  activeMC
               Boolean
               h225.BOOLEAN

           h225.adaptiveBusy  adaptiveBusy
               No value
               h225.NULL

           h225.additionalSourceAddresses  additionalSourceAddresses
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_ExtendedAliasAddress

           h225.additiveRegistration  additiveRegistration
               No value
               h225.NULL

           h225.additiveRegistrationNotSupported  additiveRegistrationNotSupported
               No value
               h225.NULL

           h225.address  address
               String
               h225.IsupDigits

           h225.addressNotAvailable  addressNotAvailable
               No value
               h225.NULL

           h225.admissionConfirm  admissionConfirm
               No value
               h225.AdmissionConfirm

           h225.admissionConfirmSequence  admissionConfirmSequence
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AdmissionConfirm

           h225.admissionReject  admissionReject
               No value
               h225.AdmissionReject

           h225.admissionRequest  admissionRequest
               No value
               h225.AdmissionRequest

           h225.alerting  alerting
               No value
               h225.Alerting_UUIE

           h225.alertingAddress  alertingAddress
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AliasAddress

           h225.alertingTime  alertingTime
               Date/Time stamp
               h235.TimeStamp

           h225.algorithmOID  algorithmOID
               Object Identifier
               h225.OBJECT_IDENTIFIER

           h225.algorithmOIDs  algorithmOIDs
               Unsigned 32-bit integer
               h225.T_algorithmOIDs

           h225.algorithmOIDs_item  algorithmOIDs item
               Object Identifier
               h225.OBJECT_IDENTIFIER

           h225.alias  alias
               Unsigned 32-bit integer
               h225.AliasAddress

           h225.aliasAddress  aliasAddress
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AliasAddress

           h225.aliasesInconsistent  aliasesInconsistent
               No value
               h225.NULL

           h225.allowedBandWidth  allowedBandWidth
               Unsigned 32-bit integer
               h225.BandWidth

           h225.almostOutOfResources  almostOutOfResources
               Boolean
               h225.BOOLEAN

           h225.altGKInfo  altGKInfo
               No value
               h225.AltGKInfo

           h225.altGKisPermanent  altGKisPermanent
               Boolean
               h225.BOOLEAN

           h225.alternateEndpoints  alternateEndpoints
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_Endpoint

           h225.alternateGatekeeper  alternateGatekeeper
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AlternateGK

           h225.alternateTransportAddresses  alternateTransportAddresses
               No value
               h225.AlternateTransportAddresses

           h225.alternativeAddress  alternativeAddress
               Unsigned 32-bit integer
               h225.TransportAddress

           h225.alternativeAliasAddress  alternativeAliasAddress
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AliasAddress

           h225.amountString  amountString
               String
               h225.BMPString_SIZE_1_512

           h225.annexE  annexE
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_TransportAddress

           h225.ansi_41_uim  ansi-41-uim
               No value
               h225.ANSI_41_UIM

           h225.answerCall  answerCall
               Boolean
               h225.BOOLEAN

           h225.answeredCall  answeredCall
               Boolean
               h225.BOOLEAN

           h225.assignedGatekeeper  assignedGatekeeper
               No value
               h225.AlternateGK

           h225.associatedSessionIds  associatedSessionIds
               Unsigned 32-bit integer
               h225.T_associatedSessionIds

           h225.associatedSessionIds_item  associatedSessionIds item
               Unsigned 32-bit integer
               h225.INTEGER_1_255

           h225.audio  audio
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_RTPSession

           h225.authenticationCapability  authenticationCapability
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AuthenticationMechanism

           h225.authenticationMode  authenticationMode
               Unsigned 32-bit integer
               h235.AuthenticationMechanism

           h225.authenticaton  authenticaton
               Unsigned 32-bit integer
               h225.SecurityServiceMode

           h225.auto  auto
               No value
               h225.NULL

           h225.bChannel  bChannel
               No value
               h225.NULL

           h225.badFormatAddress  badFormatAddress
               No value
               h225.NULL

           h225.bandWidth  bandWidth
               Unsigned 32-bit integer
               h225.BandWidth

           h225.bandwidth  bandwidth
               Unsigned 32-bit integer
               h225.BandWidth

           h225.bandwidthConfirm  bandwidthConfirm
               No value
               h225.BandwidthConfirm

           h225.bandwidthDetails  bandwidthDetails
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_BandwidthDetails

           h225.bandwidthReject  bandwidthReject
               No value
               h225.BandwidthReject

           h225.bandwidthRequest  bandwidthRequest
               No value
               h225.BandwidthRequest

           h225.billingMode  billingMode
               Unsigned 32-bit integer
               h225.T_billingMode

           h225.bonded_mode1  bonded-mode1
               No value
               h225.NULL

           h225.bonded_mode2  bonded-mode2
               No value
               h225.NULL

           h225.bonded_mode3  bonded-mode3
               No value
               h225.NULL

           h225.bool  bool
               Boolean
               h225.BOOLEAN

           h225.busyAddress  busyAddress
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AliasAddress

           h225.callCreditCapability  callCreditCapability
               No value
               h225.CallCreditCapability

           h225.callCreditServiceControl  callCreditServiceControl
               No value
               h225.CallCreditServiceControl

           h225.callDurationLimit  callDurationLimit
               Unsigned 32-bit integer
               h225.INTEGER_1_4294967295

           h225.callEnd  callEnd
               No value
               h225.NULL

           h225.callForwarded  callForwarded
               No value
               h225.NULL

           h225.callIdentifier  callIdentifier
               No value
               h225.CallIdentifier

           h225.callInProgress  callInProgress
               No value
               h225.NULL

           h225.callIndependentSupplementaryService  callIndependentSupplementaryService
               No value
               h225.NULL

           h225.callLinkage  callLinkage
               No value
               h225.CallLinkage

           h225.callModel  callModel
               Unsigned 32-bit integer
               h225.CallModel

           h225.callProceeding  callProceeding
               No value
               h225.CallProceeding_UUIE

           h225.callReferenceValue  callReferenceValue
               Unsigned 32-bit integer
               h225.CallReferenceValue

           h225.callServices  callServices
               No value
               h225.QseriesOptions

           h225.callSignalAddress  callSignalAddress
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_TransportAddress

           h225.callSignaling  callSignaling
               No value
               h225.TransportChannelInfo

           h225.callSpecific  callSpecific
               No value
               h225.T_callSpecific

           h225.callStart  callStart
               No value
               h225.NULL

           h225.callStartingPoint  callStartingPoint
               No value
               h225.RasUsageSpecificationcallStartingPoint

           h225.callType  callType
               Unsigned 32-bit integer
               h225.CallType

           h225.calledPartyNotRegistered  calledPartyNotRegistered
               No value
               h225.NULL

           h225.callerNotRegistered  callerNotRegistered
               No value
               h225.NULL

           h225.calls  calls
               Unsigned 32-bit integer
               h225.INTEGER_0_4294967295

           h225.canDisplayAmountString  canDisplayAmountString
               Boolean
               h225.BOOLEAN

           h225.canEnforceDurationLimit  canEnforceDurationLimit
               Boolean
               h225.BOOLEAN

           h225.canMapAlias  canMapAlias
               Boolean
               h225.BOOLEAN

           h225.canMapSrcAlias  canMapSrcAlias
               Boolean
               h225.BOOLEAN

           h225.canOverlapSend  canOverlapSend
               Boolean
               h225.BOOLEAN

           h225.canReportCallCapacity  canReportCallCapacity
               Boolean
               h225.BOOLEAN

           h225.capability_negotiation  capability-negotiation
               No value
               h225.NULL

           h225.capacity  capacity
               No value
               h225.CallCapacity

           h225.capacityInfoRequested  capacityInfoRequested
               No value
               h225.NULL

           h225.capacityReportingCapability  capacityReportingCapability
               No value
               h225.CapacityReportingCapability

           h225.capacityReportingSpec  capacityReportingSpec
               No value
               h225.CapacityReportingSpecification

           h225.carrier  carrier
               No value
               h225.CarrierInfo

           h225.carrierIdentificationCode  carrierIdentificationCode
               Byte array
               h225.OCTET_STRING_SIZE_3_4

           h225.carrierName  carrierName
               String
               h225.IA5String_SIZE_1_128

           h225.channelMultiplier  channelMultiplier
               Unsigned 32-bit integer
               h225.INTEGER_1_256

           h225.channelRate  channelRate
               Unsigned 32-bit integer
               h225.BandWidth

           h225.cic  cic
               No value
               h225.CicInfo

           h225.cic_item  cic item
               Byte array
               h225.OCTET_STRING_SIZE_2_4

           h225.circuitInfo  circuitInfo
               No value
               h225.CircuitInfo

           h225.close  close
               No value
               h225.NULL

           h225.cname  cname
               String
               h225.PrintableString

           h225.collectDestination  collectDestination
               No value
               h225.NULL

           h225.collectPIN  collectPIN
               No value
               h225.NULL

           h225.complete  complete
               No value
               h225.NULL

           h225.compound  compound
               Unsigned 32-bit integer
               h225.SEQUENCE_SIZE_1_512_OF_EnumeratedParameter

           h225.conferenceAlias  conferenceAlias
               Unsigned 32-bit integer
               h225.AliasAddress

           h225.conferenceCalling  conferenceCalling
               Boolean
               h225.BOOLEAN

           h225.conferenceGoal  conferenceGoal
               Unsigned 32-bit integer
               h225.T_conferenceGoal

           h225.conferenceID  conferenceID
               Globally Unique Identifier
               h225.ConferenceIdentifier

           h225.conferenceListChoice  conferenceListChoice
               No value
               h225.NULL

           h225.conferences  conferences
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_ConferenceList

           h225.connect  connect
               No value
               h225.Connect_UUIE

           h225.connectTime  connectTime
               Date/Time stamp
               h235.TimeStamp

           h225.connectedAddress  connectedAddress
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AliasAddress

           h225.connectionAggregation  connectionAggregation
               Unsigned 32-bit integer
               h225.ScnConnectionAggregation

           h225.connectionParameters  connectionParameters
               No value
               h225.T_connectionParameters

           h225.connectionType  connectionType
               Unsigned 32-bit integer
               h225.ScnConnectionType

           h225.content  content
               Unsigned 32-bit integer
               h225.Content

           h225.contents  contents
               Unsigned 32-bit integer
               h225.ServiceControlDescriptor

           h225.create  create
               No value
               h225.NULL

           h225.credit  credit
               No value
               h225.NULL

           h225.cryptoEPCert  cryptoEPCert
               No value
               h235.SIGNED

           h225.cryptoEPPwdEncr  cryptoEPPwdEncr
               No value
               h235.ENCRYPTED

           h225.cryptoEPPwdHash  cryptoEPPwdHash
               No value
               h225.T_cryptoEPPwdHash

           h225.cryptoFastStart  cryptoFastStart
               No value
               h235.SIGNED

           h225.cryptoGKCert  cryptoGKCert
               No value
               h235.SIGNED

           h225.cryptoGKPwdEncr  cryptoGKPwdEncr
               No value
               h235.ENCRYPTED

           h225.cryptoGKPwdHash  cryptoGKPwdHash
               No value
               h225.T_cryptoGKPwdHash

           h225.cryptoTokens  cryptoTokens
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_CryptoH323Token

           h225.currentCallCapacity  currentCallCapacity
               No value
               h225.CallCapacityInfo

           h225.data  data
               Unsigned 32-bit integer
               h225.T_nsp_data

           h225.dataPartyNumber  dataPartyNumber
               String
               h225.NumberDigits

           h225.dataRatesSupported  dataRatesSupported
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_DataRate

           h225.debit  debit
               No value
               h225.NULL

           h225.default  default
               No value
               h225.NULL

           h225.delay  delay
               Unsigned 32-bit integer
               h225.INTEGER_1_65535

           h225.desiredFeatures  desiredFeatures
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_FeatureDescriptor

           h225.desiredProtocols  desiredProtocols
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_SupportedProtocols

           h225.desiredTunnelledProtocol  desiredTunnelledProtocol
               No value
               h225.TunnelledProtocol

           h225.destAlternatives  destAlternatives
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_Endpoint

           h225.destCallSignalAddress  destCallSignalAddress
               Unsigned 32-bit integer
               h225.TransportAddress

           h225.destExtraCRV  destExtraCRV
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_CallReferenceValue

           h225.destExtraCallInfo  destExtraCallInfo
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AliasAddress

           h225.destinationAddress  destinationAddress
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AliasAddress

           h225.destinationCircuitID  destinationCircuitID
               No value
               h225.CircuitIdentifier

           h225.destinationInfo  destinationInfo
               No value
               h225.EndpointType

           h225.destinationRejection  destinationRejection
               No value
               h225.NULL

           h225.destinationType  destinationType
               No value
               h225.EndpointType

           h225.dialedDigits  dialedDigits
               String
               h225.DialedDigits

           h225.digSig  digSig
               No value
               h225.NULL

           h225.direct  direct
               No value
               h225.NULL

           h225.discoveryComplete  discoveryComplete
               Boolean
               h225.BOOLEAN

           h225.discoveryRequired  discoveryRequired
               No value
               h225.NULL

           h225.disengageConfirm  disengageConfirm
               No value
               h225.DisengageConfirm

           h225.disengageReason  disengageReason
               Unsigned 32-bit integer
               h225.DisengageReason

           h225.disengageReject  disengageReject
               No value
               h225.DisengageReject

           h225.disengageRequest  disengageRequest
               No value
               h225.DisengageRequest

           h225.duplicateAlias  duplicateAlias
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AliasAddress

           h225.e164Number  e164Number
               No value
               h225.PublicPartyNumber

           h225.email_ID  email-ID
               String
               h225.IA5String_SIZE_1_512

           h225.empty  empty
               No value
               h225.T_empty_flg

           h225.encryption  encryption
               Unsigned 32-bit integer
               h225.SecurityServiceMode

           h225.end  end
               No value
               h225.NULL

           h225.endOfRange  endOfRange
               Unsigned 32-bit integer
               h225.PartyNumber

           h225.endTime  endTime
               No value
               h225.NULL

           h225.endpointAlias  endpointAlias
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AliasAddress

           h225.endpointAliasPattern  endpointAliasPattern
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AddressPattern

           h225.endpointBased  endpointBased
               No value
               h225.NULL

           h225.endpointControlled  endpointControlled
               No value
               h225.NULL

           h225.endpointIdentifier  endpointIdentifier
               String
               h225.EndpointIdentifier

           h225.endpointType  endpointType
               No value
               h225.EndpointType

           h225.endpointVendor  endpointVendor
               No value
               h225.VendorIdentifier

           h225.enforceCallDurationLimit  enforceCallDurationLimit
               Boolean
               h225.BOOLEAN

           h225.enterpriseNumber  enterpriseNumber
               Object Identifier
               h225.OBJECT_IDENTIFIER

           h225.esn  esn
               String
               h225.TBCD_STRING_SIZE_16

           h225.exceedsCallCapacity  exceedsCallCapacity
               No value
               h225.NULL

           h225.facility  facility
               No value
               h225.Facility_UUIE

           h225.facilityCallDeflection  facilityCallDeflection
               No value
               h225.NULL

           h225.failed  failed
               No value
               h225.NULL

           h225.fastConnectRefused  fastConnectRefused
               No value
               h225.NULL

           h225.fastStart  fastStart
               Unsigned 32-bit integer
               h225.FastStart

           h225.featureServerAlias  featureServerAlias
               Unsigned 32-bit integer
               h225.AliasAddress

           h225.featureSet  featureSet
               No value
               h225.FeatureSet

           h225.featureSetUpdate  featureSetUpdate
               No value
               h225.NULL

           h225.forcedDrop  forcedDrop
               No value
               h225.NULL

           h225.forwardedElements  forwardedElements
               No value
               h225.NULL

           h225.fullRegistrationRequired  fullRegistrationRequired
               No value
               h225.NULL

           h225.gatekeeper  gatekeeper
               No value
               h225.GatekeeperInfo

           h225.gatekeeperBased  gatekeeperBased
               No value
               h225.NULL

           h225.gatekeeperConfirm  gatekeeperConfirm
               No value
               h225.GatekeeperConfirm

           h225.gatekeeperControlled  gatekeeperControlled
               No value
               h225.NULL

           h225.gatekeeperId  gatekeeperId
               String
               h225.GatekeeperIdentifier

           h225.gatekeeperIdentifier  gatekeeperIdentifier
               String
               h225.GatekeeperIdentifier

           h225.gatekeeperReject  gatekeeperReject
               No value
               h225.GatekeeperReject

           h225.gatekeeperRequest  gatekeeperRequest
               No value
               h225.GatekeeperRequest

           h225.gatekeeperResources  gatekeeperResources
               No value
               h225.NULL

           h225.gatekeeperRouted  gatekeeperRouted
               No value
               h225.NULL

           h225.gateway  gateway
               No value
               h225.GatewayInfo

           h225.gatewayDataRate  gatewayDataRate
               No value
               h225.DataRate

           h225.gatewayResources  gatewayResources
               No value
               h225.NULL

           h225.genericData  genericData
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_GenericData

           h225.genericDataReason  genericDataReason
               No value
               h225.NULL

           h225.globalCallId  globalCallId
               Globally Unique Identifier
               h225.GloballyUniqueID

           h225.group  group
               String
               h225.IA5String_SIZE_1_128

           h225.gsm_uim  gsm-uim
               No value
               h225.GSM_UIM

           h225.guid  guid
               Globally Unique Identifier
               h225.T_guid

           h225.h221  h221
               No value
               h225.NULL

           h225.h221NonStandard  h221NonStandard
               No value
               h225.H221NonStandard

           h225.h245  h245
               No value
               h225.TransportChannelInfo

           h225.h245Address  h245Address
               Unsigned 32-bit integer
               h225.H245TransportAddress

           h225.h245Control  h245Control
               Unsigned 32-bit integer
               h225.H245Control

           h225.h245SecurityCapability  h245SecurityCapability
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_H245Security

           h225.h245SecurityMode  h245SecurityMode
               Unsigned 32-bit integer
               h225.H245Security

           h225.h245Tunneling  h245Tunneling
               Boolean
               h225.T_h245Tunneling

           h225.h248Message  h248Message
               Byte array
               h225.OCTET_STRING

           h225.h310  h310
               No value
               h225.H310Caps

           h225.h310GwCallsAvailable  h310GwCallsAvailable
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_CallsAvailable

           h225.h320  h320
               No value
               h225.H320Caps

           h225.h320GwCallsAvailable  h320GwCallsAvailable
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_CallsAvailable

           h225.h321  h321
               No value
               h225.H321Caps

           h225.h321GwCallsAvailable  h321GwCallsAvailable
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_CallsAvailable

           h225.h322  h322
               No value
               h225.H322Caps

           h225.h322GwCallsAvailable  h322GwCallsAvailable
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_CallsAvailable

           h225.h323  h323
               No value
               h225.H323Caps

           h225.h323GwCallsAvailable  h323GwCallsAvailable
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_CallsAvailable

           h225.h323_ID  h323-ID
               String
               h225.BMPString_SIZE_1_256

           h225.h323_message_body  h323-message-body
               Unsigned 32-bit integer
               h225.T_h323_message_body

           h225.h323_uu_pdu  h323-uu-pdu
               No value
               h225.H323_UU_PDU

           h225.h323pdu  h323pdu
               No value
               h225.H323_UU_PDU

           h225.h324  h324
               No value
               h225.H324Caps

           h225.h324GwCallsAvailable  h324GwCallsAvailable
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_CallsAvailable

           h225.h4501SupplementaryService  h4501SupplementaryService
               Unsigned 32-bit integer
               h225.T_h4501SupplementaryService

           h225.h4501SupplementaryService_item  h4501SupplementaryService item
               Unsigned 32-bit integer
               h225.T_h4501SupplementaryService_item

           h225.hMAC_MD5  hMAC-MD5
               No value
               h225.NULL

           h225.hMAC_iso10118_2_l  hMAC-iso10118-2-l
               Unsigned 32-bit integer
               h225.EncryptIntAlg

           h225.hMAC_iso10118_2_s  hMAC-iso10118-2-s
               Unsigned 32-bit integer
               h225.EncryptIntAlg

           h225.hMAC_iso10118_3  hMAC-iso10118-3
               Object Identifier
               h225.OBJECT_IDENTIFIER

           h225.hopCount  hopCount
               Unsigned 32-bit integer
               h225.INTEGER_1_31

           h225.hopCountExceeded  hopCountExceeded
               No value
               h225.NULL

           h225.hplmn  hplmn
               String
               h225.TBCD_STRING_SIZE_1_4

           h225.hybrid1536  hybrid1536
               No value
               h225.NULL

           h225.hybrid1920  hybrid1920
               No value
               h225.NULL

           h225.hybrid2x64  hybrid2x64
               No value
               h225.NULL

           h225.hybrid384  hybrid384
               No value
               h225.NULL

           h225.icv  icv
               Byte array
               h225.BIT_STRING

           h225.id  id
               Unsigned 32-bit integer
               h225.TunnelledProtocol_id

           h225.imei  imei
               String
               h225.TBCD_STRING_SIZE_15_16

           h225.imsi  imsi
               String
               h225.TBCD_STRING_SIZE_3_16

           h225.inConf  inConf
               No value
               h225.NULL

           h225.inIrr  inIrr
               No value
               h225.NULL

           h225.incomplete  incomplete
               No value
               h225.NULL

           h225.incompleteAddress  incompleteAddress
               No value
               h225.NULL

           h225.infoRequest  infoRequest
               No value
               h225.InfoRequest

           h225.infoRequestAck  infoRequestAck
               No value
               h225.InfoRequestAck

           h225.infoRequestNak  infoRequestNak
               No value
               h225.InfoRequestNak

           h225.infoRequestResponse  infoRequestResponse
               No value
               h225.InfoRequestResponse

           h225.information  information
               No value
               h225.Information_UUIE

           h225.insufficientResources  insufficientResources
               No value
               h225.NULL

           h225.integrity  integrity
               Unsigned 32-bit integer
               h225.SecurityServiceMode

           h225.integrityCheckValue  integrityCheckValue
               No value
               h225.ICV

           h225.internationalNumber  internationalNumber
               No value
               h225.NULL

           h225.invalidAlias  invalidAlias
               No value
               h225.NULL

           h225.invalidCID  invalidCID
               No value
               h225.NULL

           h225.invalidCall  invalidCall
               No value
               h225.NULL

           h225.invalidCallSignalAddress  invalidCallSignalAddress
               No value
               h225.NULL

           h225.invalidConferenceID  invalidConferenceID
               No value
               h225.NULL

           h225.invalidEndpointIdentifier  invalidEndpointIdentifier
               No value
               h225.NULL

           h225.invalidPermission  invalidPermission
               No value
               h225.NULL

           h225.invalidRASAddress  invalidRASAddress
               No value
               h225.NULL

           h225.invalidRevision  invalidRevision
               No value
               h225.NULL

           h225.invalidTerminalAliases  invalidTerminalAliases
               No value
               h225.T_invalidTerminalAliases

           h225.invalidTerminalType  invalidTerminalType
               No value
               h225.NULL

           h225.invite  invite
               No value
               h225.NULL

           h225.ip  ip
               IPv4 address
               h225.T_h245Ip

           h225.ip6Address  ip6Address
               No value
               h225.T_h245Ip6Address

           h225.ipAddress  ipAddress
               No value
               h225.T_h245IpAddress

           h225.ipSourceRoute  ipSourceRoute
               No value
               h225.T_h245IpSourceRoute

           h225.ipsec  ipsec
               No value
               h225.SecurityCapabilities

           h225.ipxAddress  ipxAddress
               No value
               h225.T_h245IpxAddress

           h225.irrFrequency  irrFrequency
               Unsigned 32-bit integer
               h225.INTEGER_1_65535

           h225.irrFrequencyInCall  irrFrequencyInCall
               Unsigned 32-bit integer
               h225.INTEGER_1_65535

           h225.irrStatus  irrStatus
               Unsigned 32-bit integer
               h225.InfoRequestResponseStatus

           h225.isText  isText
               No value
               h225.NULL

           h225.iso9797  iso9797
               Object Identifier
               h225.OBJECT_IDENTIFIER

           h225.isoAlgorithm  isoAlgorithm
               Object Identifier
               h225.OBJECT_IDENTIFIER

           h225.isupNumber  isupNumber
               Unsigned 32-bit integer
               h225.IsupNumber

           h225.join  join
               No value
               h225.NULL

           h225.keepAlive  keepAlive
               Boolean
               h225.BOOLEAN

           h225.language  language
               Unsigned 32-bit integer
               h225.Language

           h225.level1RegionalNumber  level1RegionalNumber
               No value
               h225.NULL

           h225.level2RegionalNumber  level2RegionalNumber
               No value
               h225.NULL

           h225.localNumber  localNumber
               No value
               h225.NULL

           h225.locationConfirm  locationConfirm
               No value
               h225.LocationConfirm

           h225.locationReject  locationReject
               No value
               h225.LocationReject

           h225.locationRequest  locationRequest
               No value
               h225.LocationRequest

           h225.loose  loose
               No value
               h225.NULL

           h225.maintainConnection  maintainConnection
               Boolean
               h225.BOOLEAN

           h225.maintenance  maintenance
               No value
               h225.NULL

           h225.makeCall  makeCall
               Boolean
               h225.BOOLEAN

           h225.manufacturerCode  manufacturerCode
               Unsigned 32-bit integer
               h225.T_manufacturerCode

           h225.maximumCallCapacity  maximumCallCapacity
               No value
               h225.CallCapacityInfo

           h225.mc  mc
               Boolean
               h225.BOOLEAN

           h225.mcu  mcu
               No value
               h225.McuInfo

           h225.mcuCallsAvailable  mcuCallsAvailable
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_CallsAvailable

           h225.mdn  mdn
               String
               h225.TBCD_STRING_SIZE_3_16

           h225.mediaWaitForConnect  mediaWaitForConnect
               Boolean
               h225.BOOLEAN

           h225.member  member
               Unsigned 32-bit integer
               h225.T_member

           h225.member_item  member item
               Unsigned 32-bit integer
               h225.INTEGER_0_65535

           h225.messageContent  messageContent
               Unsigned 32-bit integer
               h225.T_messageContent

           h225.messageContent_item  messageContent item
               Unsigned 32-bit integer
               h225.T_messageContent_item

           h225.messageNotUnderstood  messageNotUnderstood
               Byte array
               h225.OCTET_STRING

           h225.mid  mid
               String
               h225.TBCD_STRING_SIZE_1_4

           h225.min  min
               String
               h225.TBCD_STRING_SIZE_3_16

           h225.mobileUIM  mobileUIM
               Unsigned 32-bit integer
               h225.MobileUIM

           h225.modifiedSrcInfo  modifiedSrcInfo
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AliasAddress

           h225.mscid  mscid
               String
               h225.TBCD_STRING_SIZE_3_16

           h225.msisdn  msisdn
               String
               h225.TBCD_STRING_SIZE_3_16

           h225.multicast  multicast
               Boolean
               h225.BOOLEAN

           h225.multipleCalls  multipleCalls
               Boolean
               h225.BOOLEAN

           h225.multirate  multirate
               No value
               h225.NULL

           h225.nToN  nToN
               No value
               h225.NULL

           h225.nToOne  nToOne
               No value
               h225.NULL

           h225.nakReason  nakReason
               Unsigned 32-bit integer
               h225.InfoRequestNakReason

           h225.nationalNumber  nationalNumber
               No value
               h225.NULL

           h225.nationalStandardPartyNumber  nationalStandardPartyNumber
               String
               h225.NumberDigits

           h225.natureOfAddress  natureOfAddress
               Unsigned 32-bit integer
               h225.NatureOfAddress

           h225.needResponse  needResponse
               Boolean
               h225.BOOLEAN

           h225.needToRegister  needToRegister
               Boolean
               h225.BOOLEAN

           h225.neededFeatureNotSupported  neededFeatureNotSupported
               No value
               h225.NULL

           h225.neededFeatures  neededFeatures
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_FeatureDescriptor

           h225.nested  nested
               Unsigned 32-bit integer
               h225.SEQUENCE_SIZE_1_16_OF_GenericData

           h225.nestedcryptoToken  nestedcryptoToken
               Unsigned 32-bit integer
               h235.CryptoToken

           h225.netBios  netBios
               Byte array
               h225.OCTET_STRING_SIZE_16

           h225.netnum  netnum
               Byte array
               h225.OCTET_STRING_SIZE_4

           h225.networkSpecificNumber  networkSpecificNumber
               No value
               h225.NULL

           h225.newConnectionNeeded  newConnectionNeeded
               No value
               h225.NULL

           h225.newTokens  newTokens
               No value
               h225.NULL

           h225.nextSegmentRequested  nextSegmentRequested
               Unsigned 32-bit integer
               h225.INTEGER_0_65535

           h225.noBandwidth  noBandwidth
               No value
               h225.NULL

           h225.noControl  noControl
               No value
               h225.NULL

           h225.noH245  noH245
               No value
               h225.NULL

           h225.noPermission  noPermission
               No value
               h225.NULL

           h225.noRouteToDestination  noRouteToDestination
               No value
               h225.NULL

           h225.noSecurity  noSecurity
               No value
               h225.NULL

           h225.node  node
               Byte array
               h225.OCTET_STRING_SIZE_6

           h225.nonIsoIM  nonIsoIM
               Unsigned 32-bit integer
               h225.NonIsoIntegrityMechanism

           h225.nonStandard  nonStandard
               No value
               h225.NonStandardParameter

           h225.nonStandardAddress  nonStandardAddress
               No value
               h225.NonStandardParameter

           h225.nonStandardControl  nonStandardControl
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_NonStandardParameter

           h225.nonStandardData  nonStandardData
               No value
               h225.NonStandardParameter

           h225.nonStandardIdentifier  nonStandardIdentifier
               Unsigned 32-bit integer
               h225.NonStandardIdentifier

           h225.nonStandardMessage  nonStandardMessage
               No value
               h225.NonStandardMessage

           h225.nonStandardProtocol  nonStandardProtocol
               No value
               h225.NonStandardProtocol

           h225.nonStandardReason  nonStandardReason
               No value
               h225.NonStandardParameter

           h225.nonStandardUsageFields  nonStandardUsageFields
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_NonStandardParameter

           h225.nonStandardUsageTypes  nonStandardUsageTypes
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_NonStandardParameter

           h225.none  none
               No value
               h225.NULL

           h225.normalDrop  normalDrop
               No value
               h225.NULL

           h225.notAvailable  notAvailable
               No value
               h225.NULL

           h225.notBound  notBound
               No value
               h225.NULL

           h225.notCurrentlyRegistered  notCurrentlyRegistered
               No value
               h225.NULL

           h225.notRegistered  notRegistered
               No value
               h225.NULL

           h225.notify  notify
               No value
               h225.Notify_UUIE

           h225.nsap  nsap
               Byte array
               h225.OCTET_STRING_SIZE_1_20

           h225.number16  number16
               Unsigned 32-bit integer
               h225.INTEGER_0_65535

           h225.number32  number32
               Unsigned 32-bit integer
               h225.INTEGER_0_4294967295

           h225.number8  number8
               Unsigned 32-bit integer
               h225.INTEGER_0_255

           h225.numberOfScnConnections  numberOfScnConnections
               Unsigned 32-bit integer
               h225.INTEGER_0_65535

           h225.object  object
               Object Identifier
               h225.T_nsiOID

           h225.oid  oid
               Object Identifier
               h225.T_oid

           h225.oneToN  oneToN
               No value
               h225.NULL

           h225.open  open
               No value
               h225.NULL

           h225.originator  originator
               Boolean
               h225.BOOLEAN

           h225.pISNSpecificNumber  pISNSpecificNumber
               No value
               h225.NULL

           h225.parallelH245Control  parallelH245Control
               Unsigned 32-bit integer
               h225.ParallelH245Control

           h225.parameters  parameters
               Unsigned 32-bit integer
               h225.T_parameters

           h225.parameters_item  parameters item
               No value
               h225.T_parameters_item

           h225.partyNumber  partyNumber
               Unsigned 32-bit integer
               h225.PartyNumber

           h225.pdu  pdu
               Unsigned 32-bit integer
               h225.T_pdu

           h225.pdu_item  pdu item
               No value
               h225.T_pdu_item

           h225.perCallInfo  perCallInfo
               Unsigned 32-bit integer
               h225.T_perCallInfo

           h225.perCallInfo_item  perCallInfo item
               No value
               h225.T_perCallInfo_item

           h225.permissionDenied  permissionDenied
               No value
               h225.NULL

           h225.pointCode  pointCode
               Byte array
               h225.OCTET_STRING_SIZE_2_5

           h225.pointToPoint  pointToPoint
               No value
               h225.NULL

           h225.port  port
               Unsigned 32-bit integer
               h225.T_h245IpPort

           h225.preGrantedARQ  preGrantedARQ
               No value
               h225.T_preGrantedARQ

           h225.prefix  prefix
               Unsigned 32-bit integer
               h225.AliasAddress

           h225.presentationAllowed  presentationAllowed
               No value
               h225.NULL

           h225.presentationIndicator  presentationIndicator
               Unsigned 32-bit integer
               h225.PresentationIndicator

           h225.presentationRestricted  presentationRestricted
               No value
               h225.NULL

           h225.priority  priority
               Unsigned 32-bit integer
               h225.INTEGER_0_127

           h225.privateNumber  privateNumber
               No value
               h225.PrivatePartyNumber

           h225.privateNumberDigits  privateNumberDigits
               String
               h225.NumberDigits

           h225.privateTypeOfNumber  privateTypeOfNumber
               Unsigned 32-bit integer
               h225.PrivateTypeOfNumber

           h225.productId  productId
               String
               h225.OCTET_STRING_SIZE_1_256

           h225.progress  progress
               No value
               h225.Progress_UUIE

           h225.protocol  protocol
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_SupportedProtocols

           h225.protocolIdentifier  protocolIdentifier
               Object Identifier
               h225.ProtocolIdentifier

           h225.protocolType  protocolType
               String
               h225.IA5String_SIZE_1_64

           h225.protocolVariant  protocolVariant
               String
               h225.IA5String_SIZE_1_64

           h225.protocol_discriminator  protocol-discriminator
               Unsigned 32-bit integer
               h225.INTEGER_0_255

           h225.protocols  protocols
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_SupportedProtocols

           h225.provisionalRespToH245Tunneling  provisionalRespToH245Tunneling
               No value
               h225.NULL

           h225.publicNumberDigits  publicNumberDigits
               String
               h225.NumberDigits

           h225.publicTypeOfNumber  publicTypeOfNumber
               Unsigned 32-bit integer
               h225.PublicTypeOfNumber

           h225.q932Full  q932Full
               Boolean
               h225.BOOLEAN

           h225.q951Full  q951Full
               Boolean
               h225.BOOLEAN

           h225.q952Full  q952Full
               Boolean
               h225.BOOLEAN

           h225.q953Full  q953Full
               Boolean
               h225.BOOLEAN

           h225.q954Info  q954Info
               No value
               h225.Q954Details

           h225.q955Full  q955Full
               Boolean
               h225.BOOLEAN

           h225.q956Full  q956Full
               Boolean
               h225.BOOLEAN

           h225.q957Full  q957Full
               Boolean
               h225.BOOLEAN

           h225.qOSCapabilities  qOSCapabilities
               Unsigned 32-bit integer
               h225.SEQUENCE_SIZE_1_256_OF_QOSCapability

           h225.qosControlNotSupported  qosControlNotSupported
               No value
               h225.NULL

           h225.qualificationInformationCode  qualificationInformationCode
               Byte array
               h225.OCTET_STRING_SIZE_1

           h225.range  range
               No value
               h225.T_range

           h225.ras.dup  Duplicate RAS Message
               Unsigned 32-bit integer
               Duplicate RAS Message

           h225.ras.reqframe  RAS Request Frame
               Frame number
               RAS Request Frame

           h225.ras.rspframe  RAS Response Frame
               Frame number
               RAS Response Frame

           h225.ras.timedelta  RAS Service Response Time
               Time duration
               Timedelta between RAS-Request and RAS-Response

           h225.rasAddress  rasAddress
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_TransportAddress

           h225.raw  raw
               Byte array
               h225.OCTET_STRING

           h225.reason  reason
               Unsigned 32-bit integer
               h225.ReleaseCompleteReason

           h225.recvAddress  recvAddress
               Unsigned 32-bit integer
               h225.TransportAddress

           h225.refresh  refresh
               No value
               h225.NULL

           h225.registerWithAssignedGK  registerWithAssignedGK
               No value
               h225.NULL

           h225.registrationConfirm  registrationConfirm
               No value
               h225.RegistrationConfirm

           h225.registrationReject  registrationReject
               No value
               h225.RegistrationReject

           h225.registrationRequest  registrationRequest
               No value
               h225.RegistrationRequest

           h225.rehomingModel  rehomingModel
               Unsigned 32-bit integer
               h225.RehomingModel

           h225.rejectReason  rejectReason
               Unsigned 32-bit integer
               h225.GatekeeperRejectReason

           h225.releaseComplete  releaseComplete
               No value
               h225.ReleaseComplete_UUIE

           h225.releaseCompleteCauseIE  releaseCompleteCauseIE
               Byte array
               h225.OCTET_STRING_SIZE_2_32

           h225.remoteExtensionAddress  remoteExtensionAddress
               Unsigned 32-bit integer
               h225.AliasAddress

           h225.replaceWithConferenceInvite  replaceWithConferenceInvite
               Globally Unique Identifier
               h225.ConferenceIdentifier

           h225.replacementFeatureSet  replacementFeatureSet
               Boolean
               h225.BOOLEAN

           h225.replyAddress  replyAddress
               Unsigned 32-bit integer
               h225.TransportAddress

           h225.requestDenied  requestDenied
               No value
               h225.NULL

           h225.requestInProgress  requestInProgress
               No value
               h225.RequestInProgress

           h225.requestSeqNum  requestSeqNum
               Unsigned 32-bit integer
               h225.RequestSeqNum

           h225.requestToDropOther  requestToDropOther
               No value
               h225.NULL

           h225.required  required
               No value
               h225.RasUsageInfoTypes

           h225.reregistrationRequired  reregistrationRequired
               No value
               h225.NULL

           h225.resourceUnavailable  resourceUnavailable
               No value
               h225.NULL

           h225.resourcesAvailableConfirm  resourcesAvailableConfirm
               No value
               h225.ResourcesAvailableConfirm

           h225.resourcesAvailableIndicate  resourcesAvailableIndicate
               No value
               h225.ResourcesAvailableIndicate

           h225.restart  restart
               No value
               h225.NULL

           h225.result  result
               Unsigned 32-bit integer
               h225.T_result

           h225.route  route
               Unsigned 32-bit integer
               h225.T_h245Route

           h225.routeCallToGatekeeper  routeCallToGatekeeper
               No value
               h225.NULL

           h225.routeCallToMC  routeCallToMC
               No value
               h225.NULL

           h225.routeCallToSCN  routeCallToSCN
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_PartyNumber

           h225.routeCalltoSCN  routeCalltoSCN
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_PartyNumber

           h225.route_item  route item
               Byte array
               h225.OCTET_STRING_SIZE_4

           h225.routing  routing
               Unsigned 32-bit integer
               h225.T_h245Routing

           h225.routingNumberNationalFormat  routingNumberNationalFormat
               No value
               h225.NULL

           h225.routingNumberNetworkSpecificFormat  routingNumberNetworkSpecificFormat
               No value
               h225.NULL

           h225.routingNumberWithCalledDirectoryNumber  routingNumberWithCalledDirectoryNumber
               No value
               h225.NULL

           h225.rtcpAddress  rtcpAddress
               No value
               h225.TransportChannelInfo

           h225.rtcpAddresses  rtcpAddresses
               No value
               h225.TransportChannelInfo

           h225.rtpAddress  rtpAddress
               No value
               h225.TransportChannelInfo

           h225.screeningIndicator  screeningIndicator
               Unsigned 32-bit integer
               h225.ScreeningIndicator

           h225.sctp  sctp
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_TransportAddress

           h225.securityCertificateDateInvalid  securityCertificateDateInvalid
               No value
               h225.NULL

           h225.securityCertificateExpired  securityCertificateExpired
               No value
               h225.NULL

           h225.securityCertificateIncomplete  securityCertificateIncomplete
               No value
               h225.NULL

           h225.securityCertificateMissing  securityCertificateMissing
               No value
               h225.NULL

           h225.securityCertificateNotReadable  securityCertificateNotReadable
               No value
               h225.NULL

           h225.securityCertificateRevoked  securityCertificateRevoked
               No value
               h225.NULL

           h225.securityCertificateSignatureInvalid  securityCertificateSignatureInvalid
               No value
               h225.NULL

           h225.securityDHmismatch  securityDHmismatch
               No value
               h225.NULL

           h225.securityDenial  securityDenial
               No value
               h225.NULL

           h225.securityDenied  securityDenied
               No value
               h225.NULL

           h225.securityError  securityError
               Unsigned 32-bit integer
               h225.SecurityErrors

           h225.securityIntegrityFailed  securityIntegrityFailed
               No value
               h225.NULL

           h225.securityReplay  securityReplay
               No value
               h225.NULL

           h225.securityUnknownCA  securityUnknownCA
               No value
               h225.NULL

           h225.securityUnsupportedCertificateAlgOID  securityUnsupportedCertificateAlgOID
               No value
               h225.NULL

           h225.securityWrongGeneralID  securityWrongGeneralID
               No value
               h225.NULL

           h225.securityWrongOID  securityWrongOID
               No value
               h225.NULL

           h225.securityWrongSendersID  securityWrongSendersID
               No value
               h225.NULL

           h225.securityWrongSyncTime  securityWrongSyncTime
               No value
               h225.NULL

           h225.segment  segment
               Unsigned 32-bit integer
               h225.INTEGER_0_65535

           h225.segmentedResponseSupported  segmentedResponseSupported
               No value
               h225.NULL

           h225.sendAddress  sendAddress
               Unsigned 32-bit integer
               h225.TransportAddress

           h225.sender  sender
               Boolean
               h225.BOOLEAN

           h225.sent  sent
               Boolean
               h225.BOOLEAN

           h225.serviceControl  serviceControl
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_ServiceControlSession

           h225.serviceControlIndication  serviceControlIndication
               No value
               h225.ServiceControlIndication

           h225.serviceControlResponse  serviceControlResponse
               No value
               h225.ServiceControlResponse

           h225.sesn  sesn
               String
               h225.TBCD_STRING_SIZE_16

           h225.sessionId  sessionId
               Unsigned 32-bit integer
               h225.INTEGER_0_255

           h225.set  set
               Byte array
               h225.BIT_STRING_SIZE_32

           h225.setup  setup
               No value
               h225.Setup_UUIE

           h225.setupAcknowledge  setupAcknowledge
               No value
               h225.SetupAcknowledge_UUIE

           h225.sid  sid
               String
               h225.TBCD_STRING_SIZE_1_4

           h225.signal  signal
               Byte array
               h225.H248SignalsDescriptor

           h225.sip  sip
               No value
               h225.SIPCaps

           h225.sipGwCallsAvailable  sipGwCallsAvailable
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_CallsAvailable

           h225.soc  soc
               String
               h225.TBCD_STRING_SIZE_3_16

           h225.sourceAddress  sourceAddress
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AliasAddress

           h225.sourceCallSignalAddress  sourceCallSignalAddress
               Unsigned 32-bit integer
               h225.TransportAddress

           h225.sourceCircuitID  sourceCircuitID
               No value
               h225.CircuitIdentifier

           h225.sourceEndpointInfo  sourceEndpointInfo
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AliasAddress

           h225.sourceInfo  sourceInfo
               No value
               h225.EndpointType

           h225.srcAlternatives  srcAlternatives
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_Endpoint

           h225.srcCallSignalAddress  srcCallSignalAddress
               Unsigned 32-bit integer
               h225.TransportAddress

           h225.srcInfo  srcInfo
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AliasAddress

           h225.ssrc  ssrc
               Unsigned 32-bit integer
               h225.INTEGER_1_4294967295

           h225.standard  standard
               Unsigned 32-bit integer
               h225.T_standard

           h225.start  start
               No value
               h225.NULL

           h225.startH245  startH245
               No value
               h225.NULL

           h225.startOfRange  startOfRange
               Unsigned 32-bit integer
               h225.PartyNumber

           h225.startTime  startTime
               No value
               h225.NULL

           h225.started  started
               No value
               h225.NULL

           h225.status  status
               No value
               h225.Status_UUIE

           h225.statusInquiry  statusInquiry
               No value
               h225.StatusInquiry_UUIE

           h225.stimulusControl  stimulusControl
               No value
               h225.StimulusControl

           h225.stopped  stopped
               No value
               h225.NULL

           h225.strict  strict
               No value
               h225.NULL

           h225.subIdentifier  subIdentifier
               String
               h225.IA5String_SIZE_1_64

           h225.subscriberNumber  subscriberNumber
               No value
               h225.NULL

           h225.substituteConfIDs  substituteConfIDs
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_ConferenceIdentifier

           h225.supportedFeatures  supportedFeatures
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_FeatureDescriptor

           h225.supportedH248Packages  supportedH248Packages
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_H248PackagesDescriptor

           h225.supportedPrefixes  supportedPrefixes
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_SupportedPrefix

           h225.supportedProtocols  supportedProtocols
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_SupportedProtocols

           h225.supportedTunnelledProtocols  supportedTunnelledProtocols
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_TunnelledProtocol

           h225.supportsACFSequences  supportsACFSequences
               No value
               h225.NULL

           h225.supportsAdditiveRegistration  supportsAdditiveRegistration
               No value
               h225.NULL

           h225.supportsAltGK  supportsAltGK
               No value
               h225.NULL

           h225.supportsAssignedGK  supportsAssignedGK
               Boolean
               h225.BOOLEAN

           h225.symmetricOperationRequired  symmetricOperationRequired
               No value
               h225.NULL

           h225.systemAccessType  systemAccessType
               Byte array
               h225.OCTET_STRING_SIZE_1

           h225.systemMyTypeCode  systemMyTypeCode
               Byte array
               h225.OCTET_STRING_SIZE_1

           h225.system_id  system-id
               Unsigned 32-bit integer
               h225.T_system_id

           h225.t120OnlyGwCallsAvailable  t120OnlyGwCallsAvailable
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_CallsAvailable

           h225.t120_only  t120-only
               No value
               h225.T120OnlyCaps

           h225.t35CountryCode  t35CountryCode
               Unsigned 32-bit integer
               h225.T_t35CountryCode

           h225.t35Extension  t35Extension
               Unsigned 32-bit integer
               h225.T_t35Extension

           h225.t38FaxAnnexbOnly  t38FaxAnnexbOnly
               No value
               h225.T38FaxAnnexbOnlyCaps

           h225.t38FaxAnnexbOnlyGwCallsAvailable  t38FaxAnnexbOnlyGwCallsAvailable
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_CallsAvailable

           h225.t38FaxProfile  t38FaxProfile
               No value
               h245.T38FaxProfile

           h225.t38FaxProtocol  t38FaxProtocol
               Unsigned 32-bit integer
               h245.DataProtocolCapability

           h225.tcp  tcp
               No value
               h225.NULL

           h225.telexPartyNumber  telexPartyNumber
               String
               h225.NumberDigits

           h225.terminal  terminal
               No value
               h225.TerminalInfo

           h225.terminalAlias  terminalAlias
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AliasAddress

           h225.terminalAliasPattern  terminalAliasPattern
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_AddressPattern

           h225.terminalCallsAvailable  terminalCallsAvailable
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_CallsAvailable

           h225.terminalExcluded  terminalExcluded
               No value
               h225.NULL

           h225.terminalType  terminalType
               No value
               h225.EndpointType

           h225.terminationCause  terminationCause
               No value
               h225.NULL

           h225.text  text
               String
               h225.IA5String

           h225.threadId  threadId
               Globally Unique Identifier
               h225.GloballyUniqueID

           h225.threePartyService  threePartyService
               Boolean
               h225.BOOLEAN

           h225.timeStamp  timeStamp
               Date/Time stamp
               h235.TimeStamp

           h225.timeToLive  timeToLive
               Unsigned 32-bit integer
               h225.TimeToLive

           h225.tls  tls
               No value
               h225.SecurityCapabilities

           h225.tmsi  tmsi
               Byte array
               h225.OCTET_STRING_SIZE_1_4

           h225.token  token
               No value
               h235.HASHED

           h225.tokens  tokens
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_ClearToken

           h225.totalBandwidthRestriction  totalBandwidthRestriction
               Unsigned 32-bit integer
               h225.BandWidth

           h225.transport  transport
               Unsigned 32-bit integer
               h225.TransportAddress

           h225.transportID  transportID
               Unsigned 32-bit integer
               h225.TransportAddress

           h225.transportNotSupported  transportNotSupported
               No value
               h225.NULL

           h225.transportQOS  transportQOS
               Unsigned 32-bit integer
               h225.TransportQOS

           h225.transportQOSNotSupported  transportQOSNotSupported
               No value
               h225.NULL

           h225.transportedInformation  transportedInformation
               No value
               h225.NULL

           h225.ttlExpired  ttlExpired
               No value
               h225.NULL

           h225.tunnelledProtocolAlternateID  tunnelledProtocolAlternateID
               No value
               h225.TunnelledProtocolAlternateIdentifier

           h225.tunnelledProtocolID  tunnelledProtocolID
               No value
               h225.TunnelledProtocol

           h225.tunnelledProtocolObjectID  tunnelledProtocolObjectID
               Object Identifier
               h225.T_tunnelledProtocolObjectID

           h225.tunnelledSignallingMessage  tunnelledSignallingMessage
               No value
               h225.T_tunnelledSignallingMessage

           h225.tunnelledSignallingRejected  tunnelledSignallingRejected
               No value
               h225.NULL

           h225.tunnellingRequired  tunnellingRequired
               No value
               h225.NULL

           h225.unallocatedNumber  unallocatedNumber
               No value
               h225.NULL

           h225.undefinedNode  undefinedNode
               Boolean
               h225.BOOLEAN

           h225.undefinedReason  undefinedReason
               No value
               h225.NULL

           h225.unicode  unicode
               String
               h225.BMPString

           h225.unknown  unknown
               No value
               h225.NULL

           h225.unknownMessageResponse  unknownMessageResponse
               No value
               h225.UnknownMessageResponse

           h225.unreachableDestination  unreachableDestination
               No value
               h225.NULL

           h225.unreachableGatekeeper  unreachableGatekeeper
               No value
               h225.NULL

           h225.unregistrationConfirm  unregistrationConfirm
               No value
               h225.UnregistrationConfirm

           h225.unregistrationReject  unregistrationReject
               No value
               h225.UnregistrationReject

           h225.unregistrationRequest  unregistrationRequest
               No value
               h225.UnregistrationRequest

           h225.unsolicited  unsolicited
               Boolean
               h225.BOOLEAN

           h225.url  url
               String
               h225.IA5String_SIZE_0_512

           h225.url_ID  url-ID
               String
               h225.IA5String_SIZE_1_512

           h225.usageInfoRequested  usageInfoRequested
               No value
               h225.RasUsageInfoTypes

           h225.usageInformation  usageInformation
               No value
               h225.RasUsageInformation

           h225.usageReportingCapability  usageReportingCapability
               No value
               h225.RasUsageInfoTypes

           h225.usageSpec  usageSpec
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_RasUsageSpecification

           h225.useGKCallSignalAddressToAnswer  useGKCallSignalAddressToAnswer
               Boolean
               h225.BOOLEAN

           h225.useGKCallSignalAddressToMakeCall  useGKCallSignalAddressToMakeCall
               Boolean
               h225.BOOLEAN

           h225.useSpecifiedTransport  useSpecifiedTransport
               Unsigned 32-bit integer
               h225.UseSpecifiedTransport

           h225.user_data  user-data
               No value
               h225.T_user_data

           h225.user_information  user-information
               Byte array
               h225.OCTET_STRING_SIZE_1_131

           h225.uuiesRequested  uuiesRequested
               No value
               h225.UUIEsRequested

           h225.vendor  vendor
               No value
               h225.VendorIdentifier

           h225.versionId  versionId
               String
               h225.OCTET_STRING_SIZE_1_256

           h225.video  video
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_RTPSession

           h225.voice  voice
               No value
               h225.VoiceCaps

           h225.voiceGwCallsAvailable  voiceGwCallsAvailable
               Unsigned 32-bit integer
               h225.SEQUENCE_OF_CallsAvailable

           h225.vplmn  vplmn
               String
               h225.TBCD_STRING_SIZE_1_4

           h225.when  when
               No value
               h225.CapacityReportingSpecification_when

           h225.wildcard  wildcard
               Unsigned 32-bit integer
               h225.AliasAddress

           h225.willRespondToIRR  willRespondToIRR
               Boolean
               h225.BOOLEAN

           h225.willSupplyUUIEs  willSupplyUUIEs
               Boolean
               h225.BOOLEAN

   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)
   HP Extended Local-Link Control (hpext)
           hpext.dxsap  DXSAP
               Unsigned 16-bit integer

           hpext.sxsap  SXSAP
               Unsigned 16-bit integer

   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-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
               Bridging Characteristics Local

           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
               Reserved

           homeplug.bcn  Bridging Characteristics Network
               No value
               Bridging Characteristics Network

           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
               Address of Bridge

           homeplug.bcn.fbn  First Bridge Number
               Unsigned 8-bit integer
               First Bridge Number

           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
               Reserved

           homeplug.cer  Channel Estimation Response
               No value
               Channel Estimation Response

           homeplug.cer.bda  Bridged Destination Address
               6-byte Hardware (MAC) Address
               Bridged Destination Address

           homeplug.cer.bp  Bridge Proxy
               Unsigned 8-bit integer
               Bridge Proxy

           homeplug.cer.cerv  Channel Estimation Response Version
               Unsigned 8-bit integer
               Channel Estimation Response Version

           homeplug.cer.mod  Modulation Method
               Unsigned 8-bit integer
               Modulation Method

           homeplug.cer.nbdas  Number Bridged Destination Addresses
               Unsigned 8-bit integer
               Number Bridged Destination Addresses

           homeplug.cer.rate  FEC Rate
               Unsigned 8-bit integer
               FEC Rate

           homeplug.cer.rsvd1  Reserved
               No value
               Reserved

           homeplug.cer.rsvd2  Reserved
               Unsigned 8-bit integer
               Reserved

           homeplug.cer.rxtmi  Receive Tone Map Index
               Unsigned 8-bit integer
               Receive Tone Map Index

           homeplug.cer.vt  Valid Tone Flags
               Unsigned 8-bit integer
               Valid Tone Flags

           homeplug.cer.vt11  Valid Tone Flags [83-80]
               Unsigned 8-bit integer
               Valid Tone Flags [83-80]

           homeplug.data  Data
               Byte array
               Data

           homeplug.mctrl  MAC Control Field
               No value
               MAC Control Field

           homeplug.mctrl.ne  Number of MAC Data Entries
               Unsigned 8-bit integer
               Number of MAC Data Entries

           homeplug.mctrl.rsvd  Reserved
               Unsigned 8-bit integer
               Reserved

           homeplug.mehdr  MAC Management Entry Header
               No value
               MAC Management Entry Header

           homeplug.mehdr.metype  MAC Entry Type
               Unsigned 8-bit integer
               MAC Entry Type

           homeplug.mehdr.mev  MAC Entry Version
               Unsigned 8-bit integer
               MAC Entry Version

           homeplug.melen  MAC Management Entry Length
               Unsigned 8-bit integer
               MAC Management Entry Length

           homeplug.mmentry  MAC Management Entry Data
               Unsigned 8-bit integer
               MAC Management Entry Data

           homeplug.ns  Network Statistics
               No value
               Network Statistics

           homeplug.ns.ac  Action Control
               Boolean
               Action Control

           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
               Bytes in 40 symbols

           homeplug.ns.bytes40_robo  Bytes in 40 symbols in ROBO
               Unsigned 16-bit integer
               Bytes in 40 symbols in ROBO

           homeplug.ns.drops  Frame Drops
               Unsigned 16-bit integer
               Frame Drops

           homeplug.ns.drops_robo  Frame Drops in ROBO
               Unsigned 16-bit integer
               Frame Drops in ROBO

           homeplug.ns.extended  Network Statistics is Extended
               Boolean
               Network Statistics is Extended (MELEN >= 199)

           homeplug.ns.fails  Fails Received
               Unsigned 16-bit integer
               Fails Received

           homeplug.ns.fails_robo  Fails Received in ROBO
               Unsigned 16-bit integer
               Fails Received in ROBO

           homeplug.ns.icid  IC_ID
               Unsigned 8-bit integer
               IC_ID

           homeplug.ns.msdu_len  MSDU Length
               Unsigned 8-bit integer
               MSDU Length

           homeplug.ns.netw_da  Address of Network DA
               6-byte Hardware (MAC) Address
               Address of Network DA

           homeplug.ns.prio  Priority
               Unsigned 8-bit integer
               Priority

           homeplug.ns.seqn  Sequence Number
               Unsigned 8-bit integer
               Sequence Number

           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
               Transmit Buffer State

           homeplug.psr  Parameters and Statistics Response
               No value
               Parameters and Statistics Response

           homeplug.psr.rxbp40  Receive Cumulative Bytes per 40-symbol
               Unsigned 32-bit integer
               Receive Cumulative Bytes per 40-symbol

           homeplug.psr.txack  Transmit ACK Counter
               Unsigned 16-bit integer
               Transmit ACK Counter

           homeplug.psr.txca0lat  Transmit CA0 Latency Counter
               Unsigned 16-bit integer
               Transmit CA0 Latency Counter

           homeplug.psr.txca1lat  Transmit CA1 Latency Counter
               Unsigned 16-bit integer
               Transmit CA1 Latency Counter

           homeplug.psr.txca2lat  Transmit CA2 Latency Counter
               Unsigned 16-bit integer
               Transmit CA2 Latency Counter

           homeplug.psr.txca3lat  Transmit CA3 Latency Counter
               Unsigned 16-bit integer
               Transmit CA3 Latency Counter

           homeplug.psr.txcloss  Transmit Contention Loss Counter
               Unsigned 16-bit integer
               Transmit Contention Loss Counter

           homeplug.psr.txcoll  Transmit Collision Counter
               Unsigned 16-bit integer
               Transmit Collision Counter

           homeplug.psr.txfail  Transmit FAIL Counter
               Unsigned 16-bit integer
               Transmit FAIL Counter

           homeplug.psr.txnack  Transmit NACK Counter
               Unsigned 16-bit integer
               Transmit NACK Counter

           homeplug.rce  Request Channel Estimation
               No value
               Request Channel Estimation

           homeplug.rce.cev  Channel Estimation Version
               Unsigned 8-bit integer
               Channel Estimation Version

           homeplug.rce.rsvd  Reserved
               No value
               Reserved

           homeplug.rps  Request Parameters and Statistics
               No value
               Request Parameters and Statistics

           homeplug.slp  Set Local Parameters
               No value
               Set Local Parameters

           homeplug.slp.ma  MAC Address
               6-byte Hardware (MAC) Address
               MAC Address

           homeplug.snk  Set Network Encryption Key
               No value
               Set Network Encryption Key

           homeplug.snk.eks  Encryption Key Select
               Unsigned 8-bit integer
               Encryption Key Select

           homeplug.snk.nek  Network Encryption Key
               Byte array
               Network Encryption Key

           homeplug.stc  Set Transmit Characteristics
               No value
               Set Transmit Characteristics

           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
               Disable Default Encryption Receive

           homeplug.stc.dees  Disable EEPROM Save
               Boolean
               Disable EEPROM Save

           homeplug.stc.dur  Disable Unencrypted Receive
               Boolean
               Disable Unencrypted Receive

           homeplug.stc.ebp  INT51X1 (Host/DTE Option) Enable Backpressure
               Boolean
               INT51X1 (Host/DTE Option) Enable Backpressure

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

           homeplug.stc.rexp  Response Expected
               Boolean
               Mark subsequent frames to receive response

           homeplug.stc.rsvd1  Reserved
               Unsigned 8-bit integer
               Reserved

           homeplug.stc.rsvd2  Reserved
               Unsigned 8-bit integer
               Reserved

           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
               EKS to be used for encryption

           homeplug.stc.txprio  Transmit Priority
               Unsigned 8-bit integer
               Transmit Priority

           homeplug.vs  Vendor Specific
               No value
               Vendor Specific

           homeplug.vs.oui  OUI
               Byte array
               Should be an IEEE assigned Organizationally Unique Identifier

           homeplug.vs.vd  Vendor Defined
               Byte array
               Vendor Defined

   Hummingbird NFS Daemon (hclnfsd)
           hclnfsd.access  Access
               Unsigned 32-bit integer
               Access

           hclnfsd.authorize.ident.obscure  Obscure Ident
               String
               Authentication Obscure Ident

           hclnfsd.cookie  Cookie
               Unsigned 32-bit integer
               Cookie

           hclnfsd.copies  Copies
               Unsigned 32-bit integer
               Copies

           hclnfsd.device  Device
               String
               Device

           hclnfsd.exclusive  Exclusive
               Unsigned 32-bit integer
               Exclusive

           hclnfsd.fileext  File Extension
               Unsigned 32-bit integer
               File Extension

           hclnfsd.filename  Filename
               String
               Filename

           hclnfsd.gid  GID
               Unsigned 32-bit integer
               Group ID

           hclnfsd.group  Group
               String
               Group

           hclnfsd.host_ip  Host IP
               IPv4 address
               Host IP

           hclnfsd.hostname  Hostname
               String
               Hostname

           hclnfsd.jobstatus  Job Status
               Unsigned 32-bit integer
               Job Status

           hclnfsd.length  Length
               Unsigned 32-bit integer
               Length

           hclnfsd.lockname  Lockname
               String
               Lockname

           hclnfsd.lockowner  Lockowner
               Byte array
               Lockowner

           hclnfsd.logintext  Login Text
               String
               Login Text

           hclnfsd.mode  Mode
               Unsigned 32-bit integer
               Mode

           hclnfsd.npp  Number of Physical Printers
               Unsigned 32-bit integer
               Number of Physical Printers

           hclnfsd.offset  Offset
               Unsigned 32-bit integer
               Offset

           hclnfsd.pqn  Print Queue Number
               Unsigned 32-bit integer
               Print Queue Number

           hclnfsd.printername  Printer Name
               String
               Printer name

           hclnfsd.printparameters  Print Parameters
               String
               Print Parameters

           hclnfsd.printqueuecomment  Comment
               String
               Print Queue Comment

           hclnfsd.printqueuename  Name
               String
               Print Queue Name

           hclnfsd.procedure_v1  V1 Procedure
               Unsigned 32-bit integer
               V1 Procedure

           hclnfsd.queuestatus  Queue Status
               Unsigned 32-bit integer
               Queue Status

           hclnfsd.request_type  Request Type
               Unsigned 32-bit integer
               Request Type

           hclnfsd.sequence  Sequence
               Unsigned 32-bit integer
               Sequence

           hclnfsd.server_ip  Server IP
               IPv4 address
               Server IP

           hclnfsd.size  Size
               Unsigned 32-bit integer
               Size

           hclnfsd.status  Status
               Unsigned 32-bit integer
               Status

           hclnfsd.timesubmitted  Time Submitted
               Unsigned 32-bit integer
               Time Submitted

           hclnfsd.uid  UID
               Unsigned 32-bit integer
               User ID

           hclnfsd.unknown_data  Unknown
               Byte array
               Data

           hclnfsd.username  Username
               String
               Username

   HyperSCSI (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
               Operation

           cba.acco.ping_factor  PingFactor
               Unsigned 16-bit integer

           cba.acco.prov_crid  ProviderCRID
               Unsigned 32-bit integer

           cba.acco.qc  QualityCode
               Unsigned 8-bit integer

           cba.acco.readitemout  ReadItemOut
               No value

           cba.acco.rtauto  RTAuto
               String

           cba.acco.srt  SrtRuntime
               Boolean
               This is an SRT runtime context

           cba.acco.time_stamp  TimeStamp
               Unsigned 64-bit integer

           cba.acco.writeitemin  WriteItemIn
               No value

   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
               Operation

           cba.production_date  ProductionDate
               Double-precision floating point

           cba.serial_no  SerialNo
               No value

           cba.state  State
               Unsigned 16-bit integer

           cba.state_new  NewState
               Unsigned 16-bit integer

           cba.state_old  OldState
               Unsigned 16-bit integer

           cba.time  Time
               Double-precision floating point

   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
               Negative

           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
               Test

           104asdu.typeid  TypeId
               Unsigned 8-bit integer
               Asdu Type Id

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

           radiotap.channel.type.2ghz  2 GHz spectrum
               Boolean
               Channel Type 2 GHz spectrum

           radiotap.channel.type.5ghz  5 GHz spectrum
               Boolean
               Channel Type 5 GHz spectrum

           radiotap.channel.type.cck  Complementary Code Keying (CCK)
               Boolean
               Channel Type Complementary Code Keying (CCK) Modulation

           radiotap.channel.type.dynamic  Dynamic CCK-OFDM
               Boolean
               Channel Type Dynamic CCK-OFDM Channel

           radiotap.channel.type.gfsk  Gaussian Frequency Shift Keying (GFSK)
               Boolean
               Channel Type Gaussian Frequency Shift Keying (GFSK) Modulation

           radiotap.channel.type.gsm  GSM (900MHz)
               Boolean
               Channel Type GSM

           radiotap.channel.type.half  Half Rate Channel (10MHz Channel Width)
               Boolean
               Channel Type Half Rate

           radiotap.channel.type.ofdm  Orthogonal Frequency-Division Multiplexing (OFDM)
               Boolean
               Channel Type Orthogonal Frequency-Division Multiplexing (OFDM)

           radiotap.channel.type.passive  Passive
               Boolean
               Channel Type Passive

           radiotap.channel.type.quarter  Quarter Rate Channel (5MHz Channel Width)
               Boolean
               Channel Type Quarter Rate

           radiotap.channel.type.sturbo  Static Turbo
               Boolean
               Channel Type Status Turbo

           radiotap.channel.type.turbo  Turbo
               Boolean
               Channel Type Turbo

           radiotap.channel.xtype.passive  Passive
               Boolean
               Channel Type Passive

           radiotap.datarate  Data rate
               Unsigned 32-bit integer
               Speed this frame was sent/received at

           radiotap.db_antnoise  SSI Noise (dB)
               Unsigned 32-bit integer
               RF noise power at the antenna from a fixed, arbitrary value in decibels

           radiotap.db_antsignal  SSI Signal (dB)
               Unsigned 32-bit integer
               RF signal power at the antenna from a fixed, arbitrary value in decibels

           radiotap.db_txattenuation  Transmit attenuation (dB)
               Unsigned 16-bit integer
               Transmit power expressed as decibels from max power set at factory (0 is max power)

           radiotap.dbm_antsignal  SSI Signal (dBm)
               Signed 32-bit integer
               RF signal power at the antenna from a fixed, arbitrary value in decibels from one milliwatt

           radiotap.fcs  802.11 FCS
               Unsigned 32-bit integer
               Frame check sequence of this frame

           radiotap.fcs_bad  Bad FCS
               Boolean
               Specifies if this frame has a bad frame check sequence

           radiotap.fhss.hopset  FHSS Hop Set
               Unsigned 8-bit integer
               Frequency Hopping Spread Spectrum hopset

           radiotap.fhss.pattern  FHSS Pattern
               Unsigned 8-bit integer
               Frequency Hopping Spread Spectrum hop pattern

           radiotap.flags  Flags
               Unsigned 8-bit integer

           radiotap.flags.badfcs  Bad FCS
               Boolean
               Frame received with bad FCS

           radiotap.flags.cfp  CFP
               Boolean
               Sent/Received during CFP

           radiotap.flags.datapad  Data Pad
               Boolean
               Frame has padding between 802.11 header and payload

           radiotap.flags.fcs  FCS at end
               Boolean
               Frame includes FCS at end

           radiotap.flags.frag  Fragmentation
               Boolean
               Sent/Received with fragmentation

           radiotap.flags.preamble  Preamble
               Boolean
               Sent/Received with short preamble

           radiotap.flags.shortgi  Short GI
               Boolean
               Frame Sent/Received with HT short Guard Interval

           radiotap.flags.wep  WEP
               Boolean
               Sent/Received with WEP encryption

           radiotap.length  Header length
               Unsigned 16-bit integer
               Length of header including version, pad, length and data fields

           radiotap.mactime  MAC timestamp
               Unsigned 64-bit integer
                Value in microseconds of the MAC's Time Synchronization Function timer when the first bit of the MPDU arrived at the MAC.

           radiotap.pad  Header pad
               Unsigned 8-bit integer
               Padding

           radiotap.present  Present flags
               Unsigned 32-bit integer
               Bitmask indicating which fields are present

           radiotap.present.antenna  Antenna
               Boolean
               Specifies if the antenna number field is present

           radiotap.present.channel  Channel
               Boolean
               Specifies if the transmit/receive frequency field is present

           radiotap.present.db_antnoise  DB Antenna Noise
               Boolean
               Specifies if the RF signal power at antenna in dBm field is present

           radiotap.present.db_antsignal  DB Antenna Signal
               Boolean
               Specifies if the RF signal power at antenna in dB field is present

           radiotap.present.db_tx_attenuation  DB TX Attenuation
               Boolean
               Specifies if the transmit power from max power (in dB) field is present

           radiotap.present.dbm_antnoise  DBM Antenna Noise
               Boolean
               Specifies if the RF noise power at antenna field is present

           radiotap.present.dbm_antsignal  DBM Antenna Signal
               Boolean
               Specifies if the antenna signal strength in dBm is present

           radiotap.present.dbm_tx_attenuation  DBM TX Attenuation
               Boolean
               Specifies if the transmit power from max power (in dBm) field is present

           radiotap.present.ext  Ext
               Boolean
               Specifies if there are any extensions to the header present

           radiotap.present.fcs  FCS in header
               Boolean
               Specifies if the FCS field is present

           radiotap.present.fhss  FHSS
               Boolean
               Specifies if the hop set and pattern is present for frequency hopping radios

           radiotap.present.flags  Flags
               Boolean
               Specifies if the channel flags field is present

           radiotap.present.lock_quality  Lock Quality
               Boolean
               Specifies if the signal quality field is present

           radiotap.present.rate  Rate
               Boolean
               Specifies if the transmit/receive rate field is present

           radiotap.present.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
               Adaptable

           chan.chan_channel  channel
               Unsigned 8-bit integer
               channel

           chan.chan_content  Contents
               Unsigned 8-bit integer
               Contents

           chan.chan_length  Length
               Unsigned 8-bit integer
               Length

           chan.chan_rate  Rate
               Unsigned 8-bit integer
               Rate

           chan.chan_tx_pow  Tx Power
               Unsigned 8-bit integer
               Tx Power

           chan.chan_uknown  Number of Channels
               Unsigned 8-bit integer
               Number of Channels

           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
               Block Ack Request Control

           wlan.ba.control.ackpolicy  BAR Ack Policy
               Boolean
               Block Ack Request (BAR) Ack Policy

           wlan.ba.control.cbitmap  Compressed Bitmap
               Boolean
               Compressed Bitmap

           wlan.ba.control.multitid  Multi-TID
               Boolean
               Multi-Traffic Identifier (TID)

           wlan.ba.mtid.tid  Traffic Identifier (TID) Info
               Unsigned 8-bit integer
               Traffic Identifier (TID) Info

           wlan.ba.mtid.tidinfo  Number of TIDs Present
               Unsigned 16-bit integer
               Number of Traffic Identifiers (TIDs) Present

           wlan.ba.type  Block Ack 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
               Block Ack Request (BAR) Control

           wlan.bar.mtid.tidinfo.reserved  Reserved
               Unsigned 16-bit integer
               Reserved

           wlan.bar.mtid.tidinfo.value  Multi-TID Value
               Unsigned 16-bit integer
               Multi-TID Value

           wlan.bar.type  Block Ack Request Type
               Unsigned 8-bit integer
               Block Ack Request (BAR) Type

           wlan.bssid  BSS Id
               6-byte Hardware (MAC) Address
               Basic Service Set ID

           wlan.ccmp.extiv  CCMP Ext. Initialization Vector
               String
               CCMP Extended Initialization Vector

           wlan.channel  Channel
               Unsigned 8-bit integer
               802.11 channel number that this frame was sent/received on

           wlan.channel_frequency  Channel frequency
               Unsigned 32-bit integer
               Channel frequency in megahertz that this frame was sent/received on

           wlan.controlwrap.addr1  First Address of Contained Frame
               6-byte Hardware (MAC) Address
               First Address of Contained Frame

           wlan.da  Destination address
               6-byte Hardware (MAC) Address
               Destination Hardware Address

           wlan.data_rate  Data Rate
               Unsigned 64-bit integer
               Data rate (b/s)

           wlan.dbm_antsignal  SSI Signal (dBm)
               Signed 32-bit integer
               RF signal power at the antenna from a fixed, arbitrary value in decibels from one milliwatt

           wlan.duration  Duration
               Unsigned 16-bit integer
               Duration field

           wlan.fc  Frame Control Field
               Unsigned 16-bit integer
               MAC Frame control

           wlan.fc.ds  DS status
               Unsigned 8-bit integer
               Data-frame DS-traversal status

           wlan.fc.frag  More Fragments
               Boolean
               More Fragments flag

           wlan.fc.fromds  From DS
               Boolean
               From DS flag

           wlan.fc.moredata  More Data
               Boolean
               More data flag

           wlan.fc.order  Order flag
               Boolean
               Strictly ordered flag

           wlan.fc.protected  Protected flag
               Boolean
               Protected flag

           wlan.fc.pwrmgt  PWR MGT
               Boolean
               Power management status

           wlan.fc.retry  Retry
               Boolean
               Retransmission flag

           wlan.fc.subtype  Subtype
               Unsigned 8-bit integer
               Frame subtype

           wlan.fc.tods  To DS
               Boolean
               To DS flag

           wlan.fc.type  Type
               Unsigned 8-bit integer
               Frame type

           wlan.fc.type_subtype  Type/Subtype
               Unsigned 8-bit integer
               Type and subtype combined (first byte: type, second byte: subtype)

           wlan.fc.version  Version
               Unsigned 8-bit integer
               MAC Protocol version

           wlan.fcs  Frame check sequence
               Unsigned 32-bit integer
               Frame Check Sequence (FCS)

           wlan.fcs_bad  Bad
               Boolean
               True if the FCS is incorrect

           wlan.fcs_good  Good
               Boolean
               True if the FCS is correct

           wlan.flags  Protocol Flags
               Unsigned 8-bit integer
               Protocol flags

           wlan.frag  Fragment number
               Unsigned 16-bit integer
               Fragment number

           wlan.fragment  802.11 Fragment
               Frame number
               802.11 Fragment

           wlan.fragment.error  Defragmentation error
               Frame number
               Defragmentation error due to illegal fragments

           wlan.fragment.multipletails  Multiple tail fragments found
               Boolean
               Several tails were found when defragmenting the packet

           wlan.fragment.overlap  Fragment overlap
               Boolean
               Fragment overlaps with other fragments

           wlan.fragment.overlap.conflict  Conflicting data in fragment overlap
               Boolean
               Overlapping fragments contained conflicting data

           wlan.fragment.toolongfragment  Fragment too long
               Boolean
               Fragment contained data past end of packet

           wlan.fragments  802.11 Fragments
               No value
               802.11 Fragments

           wlan.hosttime  Host timestamp
               Unsigned 64-bit integer

           wlan.mactime  MAC timestamp
               Unsigned 64-bit integer
               Value in microseconds of the MAC's Time Synchronization Function timer when the first bit of the MPDU arrived at the MAC

           wlan.normrssi_antnoise  Normalized RSSI Noise
               Unsigned 32-bit integer
               RF noise power at the antenna, normalized to the range 0-1000

           wlan.normrssi_antsignal  Normalized RSSI Signal
               Unsigned 32-bit integer
               RF signal power at the antenna, normalized to the range 0-1000

           wlan.qos.ack  Ack Policy
               Unsigned 8-bit integer
               Ack Policy

           wlan.qos.amsdupresent  Payload Type
               Boolean
               Payload Type

           wlan.qos.bit4  QoS bit 4
               Boolean
               QoS bit 4

           wlan.qos.buf_state_indicated  Buffer State Indicated
               Boolean
               Buffer State Indicated

           wlan.qos.eosp  EOSP
               Boolean
               EOSP Field

           wlan.qos.highest_pri_buf_ac  Highest-Priority Buffered AC
               Unsigned 8-bit integer
               Highest-Priority Buffered AC

           wlan.qos.priority  Priority
               Unsigned 16-bit integer
               802.1D Tag

           wlan.qos.qap_buf_load  QAP Buffered Load
               Unsigned 8-bit integer
               QAP Buffered Load

           wlan.qos.queue_size  Queue Size
               Unsigned 16-bit integer
               Queue Size

           wlan.qos.txop_dur_req  TXOP Duration Requested
               Unsigned 16-bit integer
               TXOP Duration Requested

           wlan.qos.txop_limit  TXOP Limit
               Unsigned 16-bit integer
               TXOP Limit

           wlan.ra  Receiver address
               6-byte Hardware (MAC) Address
               Receiving Station Hardware Address

           wlan.rawrssi_antnoise  Raw RSSI Noise
               Unsigned 32-bit integer
               RF noise power at the antenna, reported as RSSI by the adapter

           wlan.rawrssi_antsignal  Raw RSSI Signal
               Unsigned 32-bit integer
               RF signal power at the antenna, reported as RSSI by the adapter

           wlan.reassembled_in  Reassembled 802.11 in frame
               Frame number
               This 802.11 packet is reassembled in this frame

           wlan.sa  Source address
               6-byte Hardware (MAC) Address
               Source Hardware Address

           wlan.seq  Sequence number
               Unsigned 16-bit integer
               Sequence number

           wlan.signal_strength  Signal Strength
               Unsigned 8-bit integer
               Signal strength (Percentage)

           wlan.ta  Transmitter address
               6-byte Hardware (MAC) Address
               Transmitting Station Hardware Address

           wlan.tkip.extiv  TKIP Ext. Initialization Vector
               String
               TKIP Extended Initialization Vector

           wlan.wep.icv  WEP ICV
               Unsigned 32-bit integer
               WEP ICV

           wlan.wep.iv  Initialization Vector
               Unsigned 24-bit integer
               Initialization Vector

           wlan.wep.key  Key Index
               Unsigned 8-bit integer
               Key Index

           wlan.wep.weakiv  Weak IV
               Boolean
               Weak IV

   IEEE 802.11 wireless LAN aggregate frame (wlan_aggregate)
           wlan_aggregate.msduheader  MAC Service Data Unit (MSDU)
               Unsigned 16-bit integer
               MAC Service Data Unit (MSDU)

   IEEE 802.11 wireless LAN management frame (wlan_mgt)
           wlan_mgt.aironet.data  Aironet IE data
               Byte array
               Aironet IE data

           wlan_mgt.aironet.qos.paramset  Aironet IE QoS paramset
               Unsigned 8-bit integer
               Aironet IE QoS paramset

           wlan_mgt.aironet.qos.unk1  Aironet IE QoS unknown 1
               Unsigned 8-bit integer
               Aironet IE QoS unknown 1

           wlan_mgt.aironet.qos.val  Aironet IE QoS valueset
               Byte array
               Aironet IE QoS valueset

           wlan_mgt.aironet.type  Aironet IE type
               Unsigned 8-bit integer
               Aironet IE type

           wlan_mgt.aironet.version  Aironet IE CCX version?
               Unsigned 8-bit integer
               Aironet IE CCX version?

           wlan_mgt.aruba_heartbeat_sequence  Aruba Heartbeat Sequence
               Unsigned 64-bit integer
               Aruba Heartbeat Sequence

           wlan_mgt.aruba_mtu_size  Aruba MTU Size
               Unsigned 16-bit integer
               Aruba MTU Size

           wlan_mgt.aruba_type  Aruba Type
               Unsigned 16-bit integer
               Aruba Management

           wlan_mgt.asel  Antenna Selection (ASEL) Capabilities
               Unsigned 8-bit integer
               Antenna Selection (ASEL) Capabilities

           wlan_mgt.asel.capable  Antenna Selection Capable
               Boolean
               Antenna Selection Capable

           wlan_mgt.asel.csi  Explicit CSI Feedback
               Boolean
               Explicit CSI Feedback

           wlan_mgt.asel.if  Antenna Indices Feedback
               Boolean
               Antenna Indices Feedback

           wlan_mgt.asel.reserved  Reserved
               Unsigned 8-bit integer
               Reserved

           wlan_mgt.asel.rx  Rx ASEL
               Boolean
               Rx ASEL

           wlan_mgt.asel.sppdu  Tx Sounding PPDUs
               Boolean
               Tx Sounding PPDUs

           wlan_mgt.asel.txcsi  Explicit CSI Feedback Based Tx ASEL
               Boolean
               Explicit CSI Feedback Based Tx ASEL

           wlan_mgt.asel.txif  Antenna Indices Feedback Based Tx ASEL
               Boolean
               Antenna Indices Feedback Based Tx ASEL

           wlan_mgt.extcap  Extended Capabilities
               Unsigned 8-bit integer
               Extended Capabilities

           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
               On-demand beacon

           wlan_mgt.extcap.infoexchange.b2  Extended Channel Switching
               Boolean
               Extended Channel Switching

           wlan_mgt.extcap.infoexchange.b3  WAVE indication
               Boolean
               WAVE indication

           wlan_mgt.extchanswitch.new.channumber  New Channel Number
               Unsigned 8-bit integer
               New Channel Number

           wlan_mgt.extchanswitch.new.regclass  New Regulatory Class
               Unsigned 8-bit integer
               New Regulatory Class

           wlan_mgt.extchanswitch.switchcount  Channel Switch Count
               Unsigned 8-bit integer
               Channel Switch Count

           wlan_mgt.extchanswitch.switchmode  Channel Switch Mode
               Unsigned 8-bit integer
               Channel Switch Mode

           wlan_mgt.fixed.action  Action
               Unsigned 8-bit integer
               Action

           wlan_mgt.fixed.action_code  Action code
               Unsigned 16-bit integer
               Management action code

           wlan_mgt.fixed.aid  Association ID
               Unsigned 16-bit integer
               Association ID

           wlan_mgt.fixed.all  Fixed parameters
               Unsigned 16-bit integer
               Fixed parameters

           wlan_mgt.fixed.antsel  Antenna Selection
               Unsigned 8-bit integer
               Antenna Selection

           wlan_mgt.fixed.antsel.ant0  Antenna 0
               Unsigned 8-bit integer
               Antenna 0

           wlan_mgt.fixed.antsel.ant1  Antenna 1
               Unsigned 8-bit integer
               Antenna 1

           wlan_mgt.fixed.antsel.ant2  Antenna 2
               Unsigned 8-bit integer
               Antenna 2

           wlan_mgt.fixed.antsel.ant3  Antenna 3
               Unsigned 8-bit integer
               Antenna 3

           wlan_mgt.fixed.antsel.ant4  Antenna 4
               Unsigned 8-bit integer
               Antenna 4

           wlan_mgt.fixed.antsel.ant5  Antenna 5
               Unsigned 8-bit integer
               Antenna 5

           wlan_mgt.fixed.antsel.ant6  Antenna 6
               Unsigned 8-bit integer
               Antenna 6

           wlan_mgt.fixed.antsel.ant7  Antenna 7
               Unsigned 8-bit integer
               Antenna 7

           wlan_mgt.fixed.auth.alg  Authentication Algorithm
               Unsigned 16-bit integer
               Authentication Algorithm

           wlan_mgt.fixed.auth_seq  Authentication SEQ
               Unsigned 16-bit integer
               Authentication Sequence Number

           wlan_mgt.fixed.baparams  Block Ack Parameters
               Unsigned 16-bit integer
               Block Ack Parameters

           wlan_mgt.fixed.baparams.amsdu  A-MSDUs
               Boolean
               A-MSDU Permitted in QoS Data MPDUs

           wlan_mgt.fixed.baparams.buffersize  Number of Buffers (1 Buffer = 2304 Bytes)
               Unsigned 16-bit integer
               Number of Buffers

           wlan_mgt.fixed.baparams.policy  Block Ack Policy
               Boolean
               Block Ack Policy

           wlan_mgt.fixed.baparams.tid  Traffic Identifier
               Unsigned 8-bit integer
               Traffic Identifier

           wlan_mgt.fixed.batimeout  Block Ack Timeout
               Unsigned 16-bit integer
               Block Ack Timeout

           wlan_mgt.fixed.beacon  Beacon Interval
               Double-precision floating point
               Beacon Interval

           wlan_mgt.fixed.capabilities  Capabilities
               Unsigned 16-bit integer
               Capability information

           wlan_mgt.fixed.capabilities.agility  Channel Agility
               Boolean
               Channel Agility

           wlan_mgt.fixed.capabilities.apsd  Automatic Power Save Delivery
               Boolean
               Automatic Power Save Delivery

           wlan_mgt.fixed.capabilities.cfpoll.ap  CFP participation capabilities
               Unsigned 16-bit integer
               CF-Poll capabilities for an AP

           wlan_mgt.fixed.capabilities.cfpoll.sta  CFP participation capabilities
               Unsigned 16-bit integer
               CF-Poll capabilities for a STA

           wlan_mgt.fixed.capabilities.del_blk_ack  Delayed Block Ack
               Boolean
               Delayed Block Ack

           wlan_mgt.fixed.capabilities.dsss_ofdm  DSSS-OFDM
               Boolean
               DSSS-OFDM Modulation

           wlan_mgt.fixed.capabilities.ess  ESS capabilities
               Boolean
               ESS capabilities

           wlan_mgt.fixed.capabilities.ibss  IBSS status
               Boolean
               IBSS participation

           wlan_mgt.fixed.capabilities.imm_blk_ack  Immediate Block Ack
               Boolean
               Immediate Block Ack

           wlan_mgt.fixed.capabilities.pbcc  PBCC
               Boolean
               PBCC Modulation

           wlan_mgt.fixed.capabilities.preamble  Short Preamble
               Boolean
               Short Preamble

           wlan_mgt.fixed.capabilities.privacy  Privacy
               Boolean
               WEP support

           wlan_mgt.fixed.capabilities.short_slot_time  Short Slot Time
               Boolean
               Short Slot Time

           wlan_mgt.fixed.capabilities.spec_man  Spectrum Management
               Boolean
               Spectrum Management

           wlan_mgt.fixed.category_code  Category code
               Unsigned 16-bit integer
               Management action category

           wlan_mgt.fixed.chanwidth  Supported Channel Width
               Unsigned 8-bit integer
               Supported Channel Width

           wlan_mgt.fixed.country  Country String
               String
               Country String

           wlan_mgt.fixed.current_ap  Current AP
               6-byte Hardware (MAC) Address
               MAC address of current AP

           wlan_mgt.fixed.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
               Delete Block Ack (DELBA) Parameter Set

           wlan_mgt.fixed.delba.param.initiator  Initiator
               Boolean
               Initiator

           wlan_mgt.fixed.delba.param.reserved  Reserved
               Unsigned 16-bit integer
               Reserved

           wlan_mgt.fixed.delba.param.tid  TID
               Unsigned 16-bit integer
               Traffic Identifier (TID)

           wlan_mgt.fixed.dialog_token  Dialog token
               Unsigned 8-bit integer
               Management action dialog token

           wlan_mgt.fixed.dls_timeout  DLS timeout
               Unsigned 16-bit integer
               DLS timeout value

           wlan_mgt.fixed.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
               Destination Count

           wlan_mgt.fixed.extchansw  Extended Channel Switch Announcement
               Unsigned 32-bit integer

           wlan_mgt.fixed.fragment  Fragment
               Unsigned 16-bit integer
               Fragment

           wlan_mgt.fixed.hopcount  Hop Count
               Unsigned 8-bit integer
               Hop Count

           wlan_mgt.fixed.htact  HT Action
               Unsigned 8-bit integer
               HT Action Code

           wlan_mgt.fixed.length  Message Length
               Unsigned 8-bit integer
               Message Length

           wlan_mgt.fixed.lifetime  Lifetime
               Unsigned 32-bit integer
               Route Lifetime

           wlan_mgt.fixed.listen_ival  Listen Interval
               Unsigned 16-bit integer
               Listen Interval

           wlan_mgt.fixed.maxregpwr  Maximum Regulation Power
               Unsigned 16-bit integer
               Maximum Regulation Power

           wlan_mgt.fixed.maxtxpwr  Maximum Transmit Power
               Unsigned 8-bit integer
               Maximum Transmit Power

           wlan_mgt.fixed.metric  Metric
               Unsigned 32-bit integer
               Route Metric

           wlan_mgt.fixed.mimo.control.chanwidth  Channel Width
               Boolean
               Channel Width

           wlan_mgt.fixed.mimo.control.codebookinfo  Codebook Information
               Unsigned 16-bit integer
               Codebook Information

           wlan_mgt.fixed.mimo.control.cosize  Coefficient Size (Nb)
               Unsigned 16-bit integer
               Coefficient Size (Nb)

           wlan_mgt.fixed.mimo.control.grouping  Grouping (Ng)
               Unsigned 16-bit integer
               Grouping (Ng)

           wlan_mgt.fixed.mimo.control.matrixseg  Remaining Matrix Segment
               Unsigned 16-bit integer
               Remaining Matrix Segment

           wlan_mgt.fixed.mimo.control.ncindex  Nc Index
               Unsigned 16-bit integer
               Number of Columns Less One

           wlan_mgt.fixed.mimo.control.nrindex  Nr Index
               Unsigned 16-bit integer
               Number of Rows Less One

           wlan_mgt.fixed.mimo.control.reserved  Reserved
               Unsigned 16-bit integer
               Reserved

           wlan_mgt.fixed.mimo.control.soundingtime  Sounding Timestamp
               Unsigned 32-bit integer
               Sounding Timestamp

           wlan_mgt.fixed.mode  Message Mode
               Unsigned 8-bit integer
               Message Mode

           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
               Phased Coexistence Operation (PCO) Phase Control

           wlan_mgt.fixed.psmp.paramset  Power Save Multi-Poll (PSMP) Parameter Set
               Unsigned 16-bit integer
               Power Save Multi-Poll (PSMP) Parameter Set

           wlan_mgt.fixed.psmp.paramset.more  More PSMP
               Boolean
               More Power Save Multi-Poll (PSMP)

           wlan_mgt.fixed.psmp.paramset.nsta  Number of STA Info Fields Present
               Unsigned 8-bit integer
               Number of STA Info Fields Present

           wlan_mgt.fixed.psmp.paramset.seqduration  PSMP Sequence Duration
               Unsigned 16-bit integer
               Power Save Multi-Poll (PSMP) Sequence Duration

           wlan_mgt.fixed.psmp.stainfo  Power Save Multi-Poll (PSMP) Station Information
               Unsigned 8-bit integer
               Power Save Multi-Poll (PSMP) Station Information

           wlan_mgt.fixed.psmp.stainfo.dttduration  DTT Duration
               Unsigned 8-bit integer
               DTT Duration

           wlan_mgt.fixed.psmp.stainfo.dttstart  DTT Start Offset
               Unsigned 16-bit integer
               DTT Start Offset

           wlan_mgt.fixed.psmp.stainfo.multicastid  Power Save Multi-Poll (PSMP) Multicast ID
               Unsigned 64-bit integer
               Power Save Multi-Poll (PSMP) Multicast ID

           wlan_mgt.fixed.psmp.stainfo.reserved  Reserved
               Unsigned 16-bit integer
               Reserved

           wlan_mgt.fixed.psmp.stainfo.staid  Target Station ID
               Unsigned 16-bit integer
               Target Station ID

           wlan_mgt.fixed.psmp.stainfo.uttduration  UTT Duration
               Unsigned 16-bit integer
               UTT Duration

           wlan_mgt.fixed.psmp.stainfo.uttstart  UTT Start Offset
               Unsigned 16-bit integer
               UTT Start Offset

           wlan_mgt.fixed.qosinfo.ap  QoS Information (AP)
               Unsigned 8-bit integer
               QoS Information (AP)

           wlan_mgt.fixed.qosinfo.ap.edcaupdate  EDCA Parameter Set Update Count
               Unsigned 8-bit integer
               Enhanced Distributed Channel Access (EDCA) Parameter Set Update Count

           wlan_mgt.fixed.qosinfo.ap.qack  Q-Ack
               Boolean
               QoS Ack

           wlan_mgt.fixed.qosinfo.ap.reserved  Reserved
               Boolean
               Reserved

           wlan_mgt.fixed.qosinfo.ap.txopreq  TXOP Request
               Boolean
               Transmit Opportunity (TXOP) Request

           wlan_mgt.fixed.qosinfo.sta  QoS Information (STA)
               Unsigned 8-bit integer
               QoS Information (STA)

           wlan_mgt.fixed.qosinfo.sta.ac.be  AC_BE
               Boolean
               AC_BE

           wlan_mgt.fixed.qosinfo.sta.ac.bk  AC_BK
               Boolean
               AC_BK

           wlan_mgt.fixed.qosinfo.sta.ac.vi  AC_VI
               Boolean
               AC_VI

           wlan_mgt.fixed.qosinfo.sta.ac.vo  AC_VO
               Boolean
               AC_VO

           wlan_mgt.fixed.qosinfo.sta.moredataack  More Data Ack
               Boolean
               More Data Ack

           wlan_mgt.fixed.qosinfo.sta.qack  Q-Ack
               Boolean
               QoS Ack

           wlan_mgt.fixed.qosinfo.sta.splen  Service Period (SP) Length
               Unsigned 8-bit integer
               Service Period (SP) Length

           wlan_mgt.fixed.reason_code  Reason code
               Unsigned 16-bit integer
               Reason for unsolicited notification

           wlan_mgt.fixed.rreqid  RREQ ID
               Unsigned 32-bit integer
               RREQ ID

           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
               Starting Sequence Number

           wlan_mgt.fixed.sm.powercontrol  Spatial Multiplexing (SM) Power Control
               Unsigned 8-bit integer
               Spatial Multiplexing (SM) Power Control

           wlan_mgt.fixed.sm.powercontrol.enabled  SM Power Save
               Boolean
               Spatial Multiplexing (SM) Power Save

           wlan_mgt.fixed.sm.powercontrol.mode  SM Mode
               Boolean
               Spatial Multiplexing (SM) Mode

           wlan_mgt.fixed.sm.powercontrol.reserved  Reserved
               Unsigned 8-bit integer
               Reserved

           wlan_mgt.fixed.src_mac_addr  Source address
               6-byte Hardware (MAC) Address
               Source MAC address

           wlan_mgt.fixed.ssc  Block Ack Starting Sequence Control (SSC)
               Unsigned 16-bit integer
               Block Ack Starting Sequence Control (SSC)

           wlan_mgt.fixed.ssn  SSN
               Unsigned 32-bit integer
               Source Sequence Number

           wlan_mgt.fixed.status_code  Status code
               Unsigned 16-bit integer
               Status of requested event

           wlan_mgt.fixed.timestamp  Timestamp
               String
               Timestamp

           wlan_mgt.fixed.tnoisefloor  Transceiver Noise Floor
               Unsigned 8-bit integer
               Transceiver Noise Floor

           wlan_mgt.fixed.ttl  Message TTL
               Unsigned 8-bit integer
               Message TTL

           wlan_mgt.fixed.txpwr  Transmit Power Used
               Unsigned 8-bit integer
               Transmit Power Used

           wlan_mgt.ht.ampduparam  A-MPDU Parameters
               Unsigned 16-bit integer
               A-MPDU Parameters

           wlan_mgt.ht.ampduparam.maxlength  Maximum Rx A-MPDU Length
               Unsigned 8-bit integer
               Maximum Rx A-MPDU Length

           wlan_mgt.ht.ampduparam.mpdudensity  MPDU Density
               Unsigned 8-bit integer
               MPDU Density

           wlan_mgt.ht.ampduparam.reserved  Reserved
               Unsigned 8-bit integer
               Reserved

           wlan_mgt.ht.capabilities  HT Capabilities Info
               Unsigned 16-bit integer
               HT Capability information

           wlan_mgt.ht.capabilities.40mhzintolerant  HT Forty MHz Intolerant
               Boolean
               HT Forty MHz Intolerant

           wlan_mgt.ht.capabilities.amsdu  HT Max A-MSDU length
               Boolean
               HT Max A-MSDU length

           wlan_mgt.ht.capabilities.delayedblockack  HT Delayed Block ACK
               Boolean
               HT Delayed Block ACK

           wlan_mgt.ht.capabilities.dsscck  HT DSSS/CCK mode in 40MHz
               Boolean
               HT DSS/CCK mode in 40MHz

           wlan_mgt.ht.capabilities.green  HT Green Field
               Boolean
               HT Green Field

           wlan_mgt.ht.capabilities.ldpccoding  HT LDPC coding capability
               Boolean
               HT LDPC coding capability

           wlan_mgt.ht.capabilities.lsig  HT L-SIG TXOP Protection support
               Boolean
               HT L-SIG TXOP Protection support

           wlan_mgt.ht.capabilities.psmp  HT PSMP Support
               Boolean
               HT PSMP Support

           wlan_mgt.ht.capabilities.rxstbc  HT Rx STBC
               Unsigned 16-bit integer
               HT Tx STBC

           wlan_mgt.ht.capabilities.short20  HT Short GI for 20MHz
               Boolean
               HT Short GI for 20MHz

           wlan_mgt.ht.capabilities.short40  HT Short GI for 40MHz
               Boolean
               HT Short GI for 40MHz

           wlan_mgt.ht.capabilities.sm  HT SM Power Save
               Unsigned 16-bit integer
               HT SM Power Save

           wlan_mgt.ht.capabilities.txstbc  HT Tx STBC
               Boolean
               HT Tx STBC

           wlan_mgt.ht.capabilities.width  HT Support channel width
               Boolean
               HT Support channel width

           wlan_mgt.ht.info.  Shortest service interval
               Unsigned 8-bit integer
               Shortest service interval

           wlan_mgt.ht.info.burstlim  Transmit burst limit
               Boolean
               Transmit burst limit

           wlan_mgt.ht.info.chanwidth  Supported channel width
               Boolean
               Supported channel width

           wlan_mgt.ht.info.delim1  HT Information Delimiter #1
               Unsigned 8-bit integer
               HT Information Delimiter #1

           wlan_mgt.ht.info.delim2  HT Information Delimiter #2
               Unsigned 16-bit integer
               HT Information Delimiter #2

           wlan_mgt.ht.info.delim3  HT Information Delimiter #3
               Unsigned 16-bit integer
               HT Information Delimiter #3

           wlan_mgt.ht.info.dualbeacon  Dual beacon
               Boolean
               Dual beacon

           wlan_mgt.ht.info.dualcts  Dual Clear To Send (CTS) protection
               Boolean
               Dual Clear To Send (CTS) protection

           wlan_mgt.ht.info.greenfield  Non-greenfield STAs present
               Boolean
               Non-greenfield STAs present

           wlan_mgt.ht.info.lsigprotsupport  L-SIG TXOP Protection Full Support
               Boolean
               L-SIG TXOP Protection Full Support

           wlan_mgt.ht.info.obssnonht  OBSS non-HT STAs present
               Boolean
               OBSS non-HT STAs present

           wlan_mgt.ht.info.operatingmode  Operating mode of BSS
               Unsigned 16-bit integer
               Operating mode of BSS

           wlan_mgt.ht.info.pco.active  Phased Coexistence Operation (PCO)
               Boolean
               Phased Coexistence Operation (PCO)

           wlan_mgt.ht.info.pco.phase  Phased Coexistence Operation (PCO) Phase
               Boolean
               Phased Coexistence Operation (PCO) Phase

           wlan_mgt.ht.info.primarychannel  Primary Channel
               Unsigned 8-bit integer
               Primary Channel

           wlan_mgt.ht.info.psmponly  Power Save Multi-Poll (PSMP) stations only
               Boolean
               Power Save Multi-Poll (PSMP) stations only

           wlan_mgt.ht.info.reserved1  Reserved
               Unsigned 16-bit integer
               Reserved

           wlan_mgt.ht.info.reserved2  Reserved
               Unsigned 16-bit integer
               Reserved

           wlan_mgt.ht.info.reserved3  Reserved
               Unsigned 16-bit integer
               Reserved

           wlan_mgt.ht.info.rifs  Reduced Interframe Spacing (RIFS)
               Boolean
               Reduced Interframe Spacing (RIFS)

           wlan_mgt.ht.info.secchanoffset  Secondary channel offset
               Unsigned 8-bit integer
               Secondary channel offset

           wlan_mgt.ht.info.secondarybeacon  Beacon ID
               Boolean
               Beacon ID

           wlan_mgt.ht.mcsset  Rx Supported Modulation and Coding Scheme Set
               String
               Rx Supported Modulation and Coding Scheme Set

           wlan_mgt.ht.mcsset.highestdatarate  Highest Supported Data Rate
               Unsigned 16-bit integer
               Highest Supported Data Rate

           wlan_mgt.ht.mcsset.rxbitmask.0to7  Rx Bitmask Bits 0-7
               Unsigned 32-bit integer
               Rx Bitmask Bits 0-7

           wlan_mgt.ht.mcsset.rxbitmask.16to23  Rx Bitmask Bits 16-23
               Unsigned 32-bit integer
               Rx Bitmask Bits 16-23

           wlan_mgt.ht.mcsset.rxbitmask.24to31  Rx Bitmask Bits 24-31
               Unsigned 32-bit integer
               Rx Bitmask Bits 24-31

           wlan_mgt.ht.mcsset.rxbitmask.32  Rx Bitmask Bit 32
               Unsigned 32-bit integer
               Rx Bitmask Bit 32

           wlan_mgt.ht.mcsset.rxbitmask.33to38  Rx Bitmask Bits 33-38
               Unsigned 32-bit integer
               Rx Bitmask Bits 33-38

           wlan_mgt.ht.mcsset.rxbitmask.39to52  Rx Bitmask Bits 39-52
               Unsigned 32-bit integer
               Rx Bitmask Bits 39-52

           wlan_mgt.ht.mcsset.rxbitmask.53to76  Rx Bitmask Bits 53-76
               Unsigned 32-bit integer
               Rx Bitmask Bits 53-76

           wlan_mgt.ht.mcsset.rxbitmask.8to15  Rx Bitmask Bits 8-15
               Unsigned 32-bit integer
               Rx Bitmask Bits 8-15

           wlan_mgt.ht.mcsset.txmaxss  Tx Maximum Number of Spatial Streams Supported
               Unsigned 16-bit integer
               Tx Maximum Number of Spatial Streams Supported

           wlan_mgt.ht.mcsset.txrxmcsnotequal  Tx and Rx MCS Set
               Boolean
               Tx and Rx MCS Set

           wlan_mgt.ht.mcsset.txsetdefined  Tx Supported MCS Set
               Boolean
               Tx Supported MCS Set

           wlan_mgt.ht.mcsset.txunequalmod  Unequal Modulation
               Boolean
               Unequal Modulation

           wlan_mgt.hta.capabilities  HT Additional Capabilities
               Unsigned 16-bit integer
               HT Additional Capability information

           wlan_mgt.hta.capabilities.  Basic STB Modulation and Coding Scheme (MCS)
               Unsigned 16-bit integer
               Basic STB Modulation and Coding Scheme (MCS)

           wlan_mgt.hta.capabilities.controlledaccess  Controlled Access Only
               Boolean
               Controlled Access Only

           wlan_mgt.hta.capabilities.extchan  Extension Channel Offset
               Unsigned 16-bit integer
               Extension Channel Offset

           wlan_mgt.hta.capabilities.nongfdevices  Non Greenfield (GF) devices Present
               Boolean
               on Greenfield (GF) devices Present

           wlan_mgt.hta.capabilities.operatingmode  Operating Mode
               Unsigned 16-bit integer
               Operating Mode

           wlan_mgt.hta.capabilities.rectxwidth  Recommended Tx Channel Width
               Boolean
               Recommended Transmit Channel Width

           wlan_mgt.hta.capabilities.rifsmode  Reduced Interframe Spacing (RIFS) Mode
               Boolean
               Reduced Interframe Spacing (RIFS) Mode

           wlan_mgt.hta.capabilities.serviceinterval  Service Interval Granularity
               Unsigned 16-bit integer
               Service Interval Granularity

           wlan_mgt.htc  HT Control (+HTC)
               Unsigned 32-bit integer
               High Throughput Control (+HTC)

           wlan_mgt.htc.ac_constraint  AC Constraint
               Boolean
               High Throughput Control AC Constraint

           wlan_mgt.htc.cal.pos  Calibration Position
               Unsigned 16-bit integer
               High Throughput Control Calibration Position

           wlan_mgt.htc.cal.seq  Calibration Sequence Identifier
               Unsigned 16-bit integer
               High Throughput Control Calibration Sequence Identifier

           wlan_mgt.htc.csi_steering  CSI/Steering
               Unsigned 16-bit integer
               High Throughput Control CSI/Steering

           wlan_mgt.htc.lac  Link Adaptation Control (LAC)
               Unsigned 16-bit integer
               High Throughput Control Link Adaptation Control (LAC)

           wlan_mgt.htc.lac.asel.command  Antenna Selection (ASEL) Command
               Unsigned 16-bit integer
               High Throughput Control Link Adaptation Control Antenna Selection (ASEL) Command

           wlan_mgt.htc.lac.asel.data  Antenna Selection (ASEL) Data
               Unsigned 16-bit integer
               High Throughput Control Link Adaptation Control Antenna Selection (ASEL) Data

           wlan_mgt.htc.lac.mai.aseli  Antenna Selection Indication (ASELI)
               Unsigned 16-bit integer
               High Throughput Control Link Adaptation Control MAI Antenna Selection Indication

           wlan_mgt.htc.lac.mai.mrq  MCS Request (MRQ)
               Boolean
               High Throughput Control Link Adaptation Control MAI MCS Request

           wlan_mgt.htc.lac.mai.msi  MCS Request Sequence Identifier (MSI)
               Unsigned 16-bit integer
               High Throughput Control Link Adaptation Control MAI MCS Request Sequence Identifier

           wlan_mgt.htc.lac.mai.reserved  Reserved
               Unsigned 16-bit integer
               High Throughput Control Link Adaptation Control MAI Reserved

           wlan_mgt.htc.lac.mfb  MCS Feedback (MFB)
               Unsigned 16-bit integer
               High Throughput Control Link Adaptation Control MCS Feedback

           wlan_mgt.htc.lac.mfsi  MCS Feedback Sequence Identifier (MFSI)
               Unsigned 16-bit integer
               High Throughput Control Link Adaptation Control MCS Feedback Sequence Identifier (MSI)

           wlan_mgt.htc.lac.reserved  Reserved
               Boolean
               High Throughput Control Link Adaptation Control Reserved

           wlan_mgt.htc.lac.trq  Training Request (TRQ)
               Boolean
               High Throughput Control Link Adaptation Control Training Request (TRQ)

           wlan_mgt.htc.ndp_announcement  NDP Announcement
               Boolean
               High Throughput Control NDP Announcement

           wlan_mgt.htc.rdg_more_ppdu  RDG/More PPDU
               Boolean
               High Throughput Control RDG/More PPDU

           wlan_mgt.htc.reserved1  Reserved
               Unsigned 16-bit integer
               High Throughput Control Reserved

           wlan_mgt.htc.reserved2  Reserved
               Unsigned 16-bit integer
               High Throughput Control Reserved

           wlan_mgt.htex.capabilities  HT Extended Capabilities
               Unsigned 16-bit integer
               HT Extended Capability information

           wlan_mgt.htex.capabilities.htc  High Throughput
               Boolean
               High Throughput

           wlan_mgt.htex.capabilities.mcs  MCS Feedback capability
               Unsigned 16-bit integer
               MCS Feedback capability

           wlan_mgt.htex.capabilities.pco  Transmitter supports PCO
               Boolean
               Transmitter supports PCO

           wlan_mgt.htex.capabilities.rdresponder  Reverse Direction Responder
               Boolean
               Reverse Direction Responder

           wlan_mgt.htex.capabilities.transtime  Time needed to transition between 20MHz and 40MHz
               Unsigned 16-bit integer
               Time needed to transition between 20MHz and 40MHz

           wlan_mgt.marvell.data  Marvell IE data
               Byte array
               Marvell IE data

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

           wlan_mgt.measure.rep.bssid  BSSID Being Reported
               6-byte Hardware (MAC) Address
               BSSID Being Reported

           wlan_mgt.measure.rep.ccabusy  CCA Busy Fraction
               Unsigned 8-bit integer
               CCA Busy Fraction

           wlan_mgt.measure.rep.chanload  Channel Load
               Unsigned 8-bit integer
               Channel Load

           wlan_mgt.measure.rep.channelnumber  Measurement Channel Number
               Unsigned 8-bit integer
               Measurement Channel Number

           wlan_mgt.measure.rep.frameinfo  Reported Frame Information
               Unsigned 8-bit integer
               Reported Frame Information

           wlan_mgt.measure.rep.frameinfo.frametype  Reported Frame Type
               Unsigned 8-bit integer
               Reported Frame Type

           wlan_mgt.measure.rep.frameinfo.phytype  Condensed PHY
               Unsigned 8-bit integer
               Condensed PHY

           wlan_mgt.measure.rep.mapfield  Map Field
               Unsigned 8-bit integer
               Map Field

           wlan_mgt.measure.rep.parenttsf  Parent Timing Synchronization Function (TSF)
               Unsigned 32-bit integer
               Parent Timing Synchronization Function (TSF)

           wlan_mgt.measure.rep.rcpi  Received Channel Power Indicator (RCPI)
               Unsigned 8-bit integer
               Received Channel Power Indicator (RCPI)

           wlan_mgt.measure.rep.regclass  Regulatory Class
               Unsigned 8-bit integer
               Regulatory Class

           wlan_mgt.measure.rep.repmode.incapable  Measurement Reports
               Boolean
               Measurement Reports

           wlan_mgt.measure.rep.repmode.late  Measurement Report Mode Field
               Boolean
               Measurement Report Mode Field

           wlan_mgt.measure.rep.repmode.mapfield.bss  BSS
               Boolean
               BSS

           wlan_mgt.measure.rep.repmode.mapfield.radar  Radar
               Boolean
               Radar

           wlan_mgt.measure.rep.repmode.mapfield.reserved  Reserved
               Unsigned 8-bit integer
               Reserved

           wlan_mgt.measure.rep.repmode.mapfield.unidentsig  Unidentified Signal
               Boolean
               Unidentified Signal

           wlan_mgt.measure.rep.repmode.mapfield.unmeasured  Unmeasured
               Boolean
               Unmeasured

           wlan_mgt.measure.rep.repmode.refused  Autonomous Measurement Reports
               Boolean
               Autonomous Measurement Reports

           wlan_mgt.measure.rep.repmode.reserved  Reserved
               Unsigned 8-bit integer
               Reserved

           wlan_mgt.measure.rep.reptype  Measurement Report Type
               Unsigned 8-bit integer
               Measurement Report Type

           wlan_mgt.measure.rep.rpi.histogram_report  Receive Power Indicator (RPI) Histogram Report
               String
               Receive Power Indicator (RPI) Histogram Report

           wlan_mgt.measure.rep.rpi.rpi0density  RPI 0 Density
               Unsigned 8-bit integer
               Receive Power Indicator (RPI) 0 Density

           wlan_mgt.measure.rep.rpi.rpi1density  RPI 1 Density
               Unsigned 8-bit integer
               Receive Power Indicator (RPI) 1 Density

           wlan_mgt.measure.rep.rpi.rpi2density  RPI 2 Density
               Unsigned 8-bit integer
               Receive Power Indicator (RPI) 2 Density

           wlan_mgt.measure.rep.rpi.rpi3density  RPI 3 Density
               Unsigned 8-bit integer
               Receive Power Indicator (RPI) 3 Density

           wlan_mgt.measure.rep.rpi.rpi4density  RPI 4 Density
               Unsigned 8-bit integer
               Receive Power Indicator (RPI) 4 Density

           wlan_mgt.measure.rep.rpi.rpi5density  RPI 5 Density
               Unsigned 8-bit integer
               Receive Power Indicator (RPI) 5 Density

           wlan_mgt.measure.rep.rpi.rpi6density  RPI 6 Density
               Unsigned 8-bit integer
               Receive Power Indicator (RPI) 6 Density

           wlan_mgt.measure.rep.rpi.rpi7density  RPI 7 Density
               Unsigned 8-bit integer
               Receive Power Indicator (RPI) 7 Density

           wlan_mgt.measure.rep.rsni  Received Signal to Noise Indicator (RSNI)
               Unsigned 8-bit integer
               Received Signal to Noise Indicator (RSNI)

           wlan_mgt.measure.rep.starttime  Measurement Start Time
               Unsigned 64-bit integer
               Measurement Start Time

           wlan_mgt.measure.req.bssid  BSSID
               6-byte Hardware (MAC) Address
               BSSID

           wlan_mgt.measure.req.channelnumber  Measurement Channel Number
               Unsigned 8-bit integer
               Measurement Channel Number

           wlan_mgt.measure.req.clr  Measurement Token
               Unsigned 8-bit integer
               Measurement Token

           wlan_mgt.measure.req.groupid  Group ID
               Unsigned 8-bit integer
               Group ID

           wlan_mgt.measure.req.measurementmode  Measurement Mode
               Unsigned 8-bit integer
               Measurement Mode

           wlan_mgt.measure.req.measuretoken  Measurement Token
               Unsigned 8-bit integer
               Measurement Token

           wlan_mgt.measure.req.randint  Randomization Interval
               Unsigned 16-bit integer
               Randomization Interval

           wlan_mgt.measure.req.regclass  Measurement Channel Number
               Unsigned 8-bit integer
               Measurement Channel Number

           wlan_mgt.measure.req.repcond  Reporting Condition
               Unsigned 8-bit integer
               Reporting Condition

           wlan_mgt.measure.req.reportmac  MAC on wich to gather data
               6-byte Hardware (MAC) Address
               MAC on wich to gather data

           wlan_mgt.measure.req.reqmode  Measurement Request Mode
               Unsigned 8-bit integer
               Measurement Request Mode

           wlan_mgt.measure.req.reqmode.enable  Measurement Request Mode Field
               Boolean
               Measurement Request Mode Field

           wlan_mgt.measure.req.reqmode.report  Autonomous Measurement Reports
               Boolean
               Autonomous Measurement Reports

           wlan_mgt.measure.req.reqmode.request  Measurement Reports
               Boolean
               Measurement Reports

           wlan_mgt.measure.req.reqmode.reserved1  Reserved
               Unsigned 8-bit integer
               Reserved

           wlan_mgt.measure.req.reqmode.reserved2  Reserved
               Unsigned 8-bit integer
               Reserved

           wlan_mgt.measure.req.reqtype  Measurement Request Type
               Unsigned 8-bit integer
               Measurement Request Type

           wlan_mgt.measure.req.starttime  Measurement Start Time
               Unsigned 64-bit integer
               Measurement Start Time

           wlan_mgt.measure.req.threshold  Threshold/Offset
               Unsigned 8-bit integer
               Threshold/Offset

           wlan_mgt.mimo.csimatrices.snr  Signal to Noise Ratio (SNR)
               Unsigned 8-bit integer
               Signal to Noise Ratio (SNR)

           wlan_mgt.nreport.bssid  BSSID
               6-byte Hardware (MAC) Address
               BSSID

           wlan_mgt.nreport.bssid.info  BSSID Information
               Unsigned 32-bit integer
               BSSID Information

           wlan_mgt.nreport.bssid.info.capability.apsd  Capability: APSD
               Unsigned 16-bit integer
               Capability: APSD

           wlan_mgt.nreport.bssid.info.capability.dback  Capability: Delayed Block Ack
               Unsigned 16-bit integer
               Capability: Delayed Block Ack

           wlan_mgt.nreport.bssid.info.capability.iback  Capability: Immediate Block Ack
               Unsigned 16-bit integer
               Capability: Immediate Block Ack

           wlan_mgt.nreport.bssid.info.capability.qos  Capability: QoS
               Unsigned 16-bit integer
               Capability: QoS

           wlan_mgt.nreport.bssid.info.capability.radiomsnt  Capability: Radio Measurement
               Unsigned 16-bit integer
               Capability: Radio Measurement

           wlan_mgt.nreport.bssid.info.capability.specmngt  Capability: Spectrum Management
               Unsigned 16-bit integer
               Capability: Spectrum Management

           wlan_mgt.nreport.bssid.info.hthoughput  High Throughput
               Unsigned 16-bit integer
               High Throughput

           wlan_mgt.nreport.bssid.info.keyscope  Key Scope
               Unsigned 16-bit integer
               Key Scope

           wlan_mgt.nreport.bssid.info.mobilitydomain  Mobility Domain
               Unsigned 16-bit integer
               Mobility Domain

           wlan_mgt.nreport.bssid.info.reachability  AP Reachability
               Unsigned 16-bit integer
               AP Reachability

           wlan_mgt.nreport.bssid.info.reserved  Reserved
               Unsigned 32-bit integer
               Reserved

           wlan_mgt.nreport.bssid.info.security  Security
               Unsigned 16-bit integer
               Security

           wlan_mgt.nreport.channumber  Channel Number
               Unsigned 8-bit integer
               Channel Number

           wlan_mgt.nreport.phytype  PHY Type
               Unsigned 8-bit integer
               PHY Type

           wlan_mgt.nreport.regclass  Regulatory Class
               Unsigned 8-bit integer
               Regulatory Class

           wlan_mgt.powercap.max  Maximum Transmit Power
               Unsigned 8-bit integer
               Maximum Transmit Power

           wlan_mgt.powercap.min  Minimum Transmit Power
               Unsigned 8-bit integer
               Minimum Transmit Power

           wlan_mgt.qbss.adc  Available Admission Capabilities
               Unsigned 8-bit integer
               Available Admission Capabilities

           wlan_mgt.qbss.cu  Channel Utilization
               Unsigned 8-bit integer
               Channel Utilization

           wlan_mgt.qbss.scount  Station Count
               Unsigned 16-bit integer
               Station Count

           wlan_mgt.qbss.version  QBSS Version
               Unsigned 8-bit integer
               QBSS Version

           wlan_mgt.qbss2.cal  Call Admission Limit
               Unsigned 8-bit integer
               Call Admission Limit

           wlan_mgt.qbss2.cu  Channel Utilization
               Unsigned 8-bit integer
               Channel Utilization

           wlan_mgt.qbss2.glimit  G.711 CU Quantum
               Unsigned 8-bit integer
               G.711 CU Quantum

           wlan_mgt.qbss2.scount  Station Count
               Unsigned 16-bit integer
               Station Count

           wlan_mgt.rsn.capabilities  RSN Capabilities
               Unsigned 16-bit integer
               RSN Capability information

           wlan_mgt.rsn.capabilities.gtksa_replay_counter  RSN GTKSA Replay Counter capabilities
               Unsigned 16-bit integer
               RSN GTKSA Replay Counter capabilities

           wlan_mgt.rsn.capabilities.no_pairwise  RSN No Pairwise capabilities
               Boolean
               RSN No Pairwise capabilities

           wlan_mgt.rsn.capabilities.preauth  RSN Pre-Auth capabilities
               Boolean
               RSN Pre-Auth capabilities

           wlan_mgt.rsn.capabilities.ptksa_replay_counter  RSN PTKSA Replay Counter capabilities
               Unsigned 16-bit integer
               RSN PTKSA Replay Counter capabilities

           wlan_mgt.sched.sched_info  Schedule Info
               Unsigned 16-bit integer
               Schedule Info field

           wlan_mgt.sched.spec_int  Specification Interval
               Unsigned 16-bit integer
               Specification Interval

           wlan_mgt.sched.srv_int  Service Interval
               Unsigned 32-bit integer
               Service Interval

           wlan_mgt.sched.srv_start  Service Start Time
               Unsigned 32-bit integer
               Service Start Time

           wlan_mgt.secchanoffset  Secondary Channel Offset
               Unsigned 8-bit integer
               Secondary Channel Offset

           wlan_mgt.ssid  SSID
               String
               SSID

           wlan_mgt.supchan  Supported Channels Set
               Unsigned 8-bit integer
               Supported Channels Set

           wlan_mgt.supchan.first  First Supported Channel
               Unsigned 8-bit integer
               First Supported Channel

           wlan_mgt.supchan.range  Supported Channel Range
               Unsigned 8-bit integer
               Supported Channel Range

           wlan_mgt.supregclass.alt  Alternate Regulatory Classes
               String
               Alternate Regulatory Classes

           wlan_mgt.supregclass.current  Current Regulatory Class
               Unsigned 8-bit integer
               Current Regulatory Class

           wlan_mgt.tag.interpretation  Tag interpretation
               String
               Interpretation of tag

           wlan_mgt.tag.length  Tag length
               Unsigned 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
               Tagged parameters

           wlan_mgt.tclas.class_mask  Classifier Mask
               Unsigned 8-bit integer
               Classifier Mask

           wlan_mgt.tclas.class_type  Classifier Type
               Unsigned 8-bit integer
               Classifier Type

           wlan_mgt.tclas.params.dscp  IPv4 DSCP
               Unsigned 8-bit integer
               IPv4 Differentiated Services Code Point (DSCP) Field

           wlan_mgt.tclas.params.dst_port  Destination Port
               Unsigned 16-bit integer
               Destination Port

           wlan_mgt.tclas.params.flow  Flow Label
               Unsigned 24-bit integer
               IPv6 Flow Label

           wlan_mgt.tclas.params.ipv4_dst  IPv4 Dst Addr
               IPv4 address
               IPv4 Dst Addr

           wlan_mgt.tclas.params.ipv4_src  IPv4 Src Addr
               IPv4 address
               IPv4 Src Addr

           wlan_mgt.tclas.params.ipv6_dst  IPv6 Dst Addr
               IPv6 address
               IPv6 Dst Addr

           wlan_mgt.tclas.params.ipv6_src  IPv6 Src Addr
               IPv6 address
               IPv6 Src Addr

           wlan_mgt.tclas.params.protocol  Protocol
               Unsigned 8-bit integer
               IPv4 Protocol

           wlan_mgt.tclas.params.src_port  Source Port
               Unsigned 16-bit integer
               Source Port

           wlan_mgt.tclas.params.tag_type  802.1Q Tag Type
               Unsigned 16-bit integer
               802.1Q Tag Type

           wlan_mgt.tclas.params.type  Ethernet Type
               Unsigned 8-bit integer
               Classifier Parameters Ethernet Type

           wlan_mgt.tclas.params.version  IP Version
               Unsigned 8-bit integer
               IP Version

           wlan_mgt.tclas_proc.processing  Processing
               Unsigned 8-bit integer
               TCLAS Processing

           wlan_mgt.tcprep.link_mrg  Link Margin
               Signed 8-bit integer
               Link Margin

           wlan_mgt.tcprep.trsmt_pow  Transmit Power
               Signed 8-bit integer
               Transmit Power

           wlan_mgt.tim.bmapctl  Bitmap control
               Unsigned 8-bit integer
               Bitmap control

           wlan_mgt.tim.dtim_count  DTIM count
               Unsigned 8-bit integer
               DTIM count

           wlan_mgt.tim.dtim_period  DTIM period
               Unsigned 8-bit integer
               DTIM period

           wlan_mgt.tim.length  TIM length
               Unsigned 8-bit integer
               Traffic Indication Map length

           wlan_mgt.ts_delay  Traffic Stream (TS) Delay
               Unsigned 32-bit integer
               Traffic Stream (TS) Delay

           wlan_mgt.ts_info  Traffic Stream (TS) Info
               Unsigned 24-bit integer
               Traffic Stream (TS) Info field

           wlan_mgt.ts_info.ack  Ack Policy
               Unsigned 8-bit integer
               Traffic Stream (TS) Info Ack Policy

           wlan_mgt.ts_info.agg  Aggregation
               Unsigned 8-bit integer
               Traffic Stream (TS) Info Access Policy

           wlan_mgt.ts_info.apsd  Automatic Power-Save Delivery (APSD)
               Unsigned 8-bit integer
               Traffic Stream (TS) Info Automatic Power-Save Delivery (APSD)

           wlan_mgt.ts_info.dir  Direction
               Unsigned 8-bit integer
               Traffic Stream (TS) Info Direction

           wlan_mgt.ts_info.sched  Schedule
               Unsigned 8-bit integer
               Traffic Stream (TS) Info Schedule

           wlan_mgt.ts_info.tsid  Traffic Stream ID (TSID)
               Unsigned 8-bit integer
               Traffic Stream ID (TSID) Info TSID

           wlan_mgt.ts_info.type  Traffic Type
               Unsigned 8-bit integer
               Traffic Stream (TS) Info Traffic Type

           wlan_mgt.ts_info.up  User Priority
               Unsigned 8-bit integer
               Traffic Stream (TS) Info User Priority

           wlan_mgt.tspec.burst_size  Burst Size
               Unsigned 32-bit integer
               Burst Size

           wlan_mgt.tspec.delay_bound  Delay Bound
               Unsigned 32-bit integer
               Delay Bound

           wlan_mgt.tspec.inact_int  Inactivity Interval
               Unsigned 32-bit integer
               Inactivity Interval

           wlan_mgt.tspec.max_msdu  Maximum MSDU Size
               Unsigned 16-bit integer
               Maximum MSDU Size

           wlan_mgt.tspec.max_srv  Maximum Service Interval
               Unsigned 32-bit integer
               Maximum Service Interval

           wlan_mgt.tspec.mean_data  Mean Data Rate
               Unsigned 32-bit integer
               Mean Data Rate

           wlan_mgt.tspec.medium  Medium Time
               Unsigned 16-bit integer
               Medium Time

           wlan_mgt.tspec.min_data  Minimum Data Rate
               Unsigned 32-bit integer
               Minimum Data Rate

           wlan_mgt.tspec.min_phy  Minimum PHY Rate
               Unsigned 32-bit integer
               Minimum PHY Rate

           wlan_mgt.tspec.min_srv  Minimum Service Interval
               Unsigned 32-bit integer
               Minimum Service Interval

           wlan_mgt.tspec.nor_msdu  Normal MSDU Size
               Unsigned 16-bit integer
               Normal MSDU Size

           wlan_mgt.tspec.peak_data  Peak Data Rate
               Unsigned 32-bit integer
               Peak Data Rate

           wlan_mgt.tspec.srv_start  Service Start Time
               Unsigned 32-bit integer
               Service Start Time

           wlan_mgt.tspec.surplus  Surplus Bandwidth Allowance
               Unsigned 16-bit integer
               Surplus Bandwidth Allowance

           wlan_mgt.tspec.susp_int  Suspension Interval
               Unsigned 32-bit integer
               Suspension Interval

           wlan_mgt.txbf  Transmit Beam Forming (TxBF) Capabilities
               Unsigned 16-bit integer
               Transmit Beam Forming (TxBF) Capabilities

           wlan_mgt.txbf.calibration  Calibration
               Unsigned 32-bit integer
               Calibration

           wlan_mgt.txbf.channelest  Maximum number of space time streams for which channel dimensions can be simultaneously estimated
               Unsigned 32-bit integer
               Maximum number of space time streams for which channel dimensions can be simultaneously estimated

           wlan_mgt.txbf.csi  STA can apply TxBF using CSI explicit feedback
               Boolean
               Station can apply TxBF using CSI explicit feedback

           wlan_mgt.txbf.csi.maxrows  Maximum number of rows of CSI explicit feedback
               Unsigned 32-bit integer
               Maximum number of rows of CSI explicit feedback

           wlan_mgt.txbf.csinumant  Max antennae STA can support when CSI feedback required
               Unsigned 32-bit integer
               Max antennae station can support when CSI feedback required

           wlan_mgt.txbf.fm.compressed.bf  STA can compress and use compressed Beamforming Feedback Matrix
               Unsigned 32-bit integer
               Station can compress and use compressed Beamforming Feedback Matrix

           wlan_mgt.txbf.fm.compressed.maxant  Max antennae STA can support when compressed Beamforming feedback required
               Unsigned 32-bit integer
               Max antennae station can support when compressed Beamforming feedback required

           wlan_mgt.txbf.fm.compressed.tbf  STA can apply TxBF using compressed beamforming feedback matrix
               Boolean
               Station can apply TxBF using compressed beamforming feedback matrix

           wlan_mgt.txbf.fm.uncompressed.maxant  Max antennae STA can support when uncompressed Beamforming feedback required
               Unsigned 32-bit integer
               Max antennae station can support when uncompressed Beamforming feedback required

           wlan_mgt.txbf.fm.uncompressed.rbf  Receiver can return explicit uncompressed Beamforming Feedback Matrix
               Unsigned 32-bit integer
               Receiver can return explicit uncompressed Beamforming Feedback Matrix

           wlan_mgt.txbf.fm.uncompressed.tbf  STA can apply TxBF using uncompressed beamforming feedback matrix
               Boolean
               Station can apply TxBF using uncompressed beamforming feedback matrix

           wlan_mgt.txbf.impltxbf  Implicit TxBF capable
               Boolean
               Implicit Transmit Beamforming (TxBF) capable

           wlan_mgt.txbf.mingroup  Minimal grouping used for explicit feedback reports
               Unsigned 32-bit integer
               Minimal grouping used for explicit feedback reports

           wlan_mgt.txbf.rcsi  Receiver can return explicit CSI feedback
               Unsigned 32-bit integer
               Receiver can return explicit CSI feedback

           wlan_mgt.txbf.reserved  Reserved
               Unsigned 32-bit integer
               Reserved

           wlan_mgt.txbf.rxndp  Receive Null Data packet (NDP)
               Boolean
               Receive Null Data packet (NDP)

           wlan_mgt.txbf.rxss  Receive Staggered Sounding
               Boolean
               Receive Staggered Sounding

           wlan_mgt.txbf.txbf  Transmit Beamforming
               Boolean
               Transmit Beamforming

           wlan_mgt.txbf.txndp  Transmit Null Data packet (NDP)
               Boolean
               Transmit Null Data packet (NDP)

           wlan_mgt.txbf.txss  Transmit Staggered Sounding
               Boolean
               Transmit staggered sounding

           wlan_mgt.vs.asel  Antenna Selection (ASEL) Capabilities (VS)
               Unsigned 8-bit integer
               Vendor Specific Antenna Selection (ASEL) Capabilities

           wlan_mgt.vs.ht.ampduparam  A-MPDU Parameters (VS)
               Unsigned 16-bit integer
               Vendor Specific A-MPDU Parameters

           wlan_mgt.vs.ht.capabilities  HT Capabilities Info (VS)
               Unsigned 16-bit integer
               Vendor Specific HT Capability information

           wlan_mgt.vs.ht.mcsset  Rx Supported Modulation and Coding Scheme Set (VS)
               String
               Vendor Specific Rx Supported Modulation and Coding Scheme Set

           wlan_mgt.vs.htex.capabilities  HT Extended Capabilities (VS)
               Unsigned 16-bit integer
               Vendor Specific HT Extended Capability information

           wlan_mgt.vs.txbf  Transmit Beam Forming (TxBF) Capabilities (VS)
               Unsigned 16-bit integer
               Vendor Specific Transmit Beam Forming (TxBF) Capabilities

   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.bcn.assoc_permit  Association Permit
               Boolean
               Whether this PAN is accepting association requests or not.

           wpan.bcn.battery_ext  Battery Extension
               Boolean
               Whether transmissions may not extend past the length of the beacon frame.

           wpan.bcn.beacon_order  Beacon Interval
               Unsigned 8-bit integer
               Specifies the transmission interval of the beacons.

           wpan.bcn.cap  Final CAP Slot
               Unsigned 8-bit integer
               Specifies the final superframe slot used by the CAP.

           wpan.bcn.coord  PAN Coordinator
               Boolean
               Whether this beacon frame is being transmitted by the PAN coordinator or not.

           wpan.bcn.gts.count  GTS Descriptor Count
               Unsigned 8-bit integer
               The number of GTS descriptors present in this beacon frame.

           wpan.bcn.gts.direction  Direction
               Boolean
               A flag defining the direction of the GTS Slot.

           wpan.bcn.gts.permit  GTS Permit
               Boolean
               Whether the PAN coordinator is accepting GTS requests or not.

           wpan.bcn.pending16  Address
               Unsigned 16-bit integer
               Device with pending data to receive.

           wpan.bcn.pending64  Address
               Unsigned 64-bit integer
               Device with pending data to receive.

           wpan.bcn.superframe_order  Superframe Interval
               Unsigned 8-bit integer
               Specifies the length of time the coordinator will interact with the PAN.

           wpan.cmd.asrsp.addr  Short Address
               Unsigned 16-bit integer
               The short address that the device should assume. An address of 0xfffe indicates that the device should use its IEEE 64-bit long address.

           wpan.cmd.asrsp.status  Association Status
               Unsigned 8-bit integer

           wpan.cmd.cinfo.alloc_addr  Allocate Address
               Boolean
               Whether this device wishes to use a 16-bit short address instead of its IEEE 802.15.4 64-bit long address.

           wpan.cmd.cinfo.alt_coord  Alternate PAN Coordinator
               Boolean
               Whether this device can act as a PAN coordinator or not.

           wpan.cmd.cinfo.device_type  Device Type
               Boolean
               Whether this device is RFD (reduced-function device) or FFD (full-function device).

           wpan.cmd.cinfo.idle_rx  Receive On When Idle
               Boolean
               Whether this device can receive packets while idle or not.

           wpan.cmd.cinfo.power_src  Power Source
               Boolean
               Whether this device is operating on AC/mains or battery power.

           wpan.cmd.cinfo.sec_capable  Security Capability
               Boolean
               Whether this device is capable of receiving encrypted packets.

           wpan.cmd.coord.addr  Coordinator Short Address
               Unsigned 16-bit integer
               The 16-bit address the coordinator wishes to use for future communication.

           wpan.cmd.coord.channel  Logical Channel
               Unsigned 8-bit integer
               The logical channel the coordinator wishes to use for future communication.

           wpan.cmd.coord.channel_page  Channel Page
               Unsigned 8-bit integer
               The logical channel page the coordinator wishes to use for future communication.

           wpan.cmd.coord.pan  PAN ID
               Unsigned 16-bit integer
               The PAN identifier the coordinator wishes to use for future communication.

           wpan.cmd.disas.reason  Disassociation Reason
               Unsigned 8-bit integer

           wpan.cmd.gts.direction  GTS Direction
               Boolean
               The direction of traffic in the guaranteed timeslot.

           wpan.cmd.gts.length  GTS Length
               Unsigned 8-bit integer
               Number of superframe slots the device is requesting.

           wpan.cmd.gts.type  Characteristic Type
               Boolean
               Whether this request is to allocate or deallocate a timeslot.

           wpan.cmd.id  Command Identifier
               Unsigned 8-bit integer

           wpan.correlation  LQI Correlation Value
               Unsigned 8-bit integer

           wpan.dst_addr16  Destination
               Unsigned 16-bit integer

           wpan.dst_addr64  Destination
               Unsigned 64-bit integer

           wpan.dst_addr_mode  Destination Addressing Mode
               Unsigned 16-bit integer

           wpan.dst_pan  Destination PAN
               Unsigned 16-bit integer

           wpan.fcs  FCS
               Unsigned 16-bit integer

           wpan.fcs_ok  FCS Valid
               Boolean

           wpan.frame_type  Frame Type
               Unsigned 16-bit integer

           wpan.intra_pan  Intra-PAN
               Boolean
               Whether this packet originated and terminated within the same PAN or not.

           wpan.pending  Frame Pending
               Boolean
               Indication of additional packets waiting to be transferred from the source device.

           wpan.rssi  RSSI
               Signed 8-bit integer
               Received Signal Strength

           wpan.security  Security Enabled
               Boolean
               Whether security operations are performed at the MAC layer or not.

           wpan.seq_no  Sequence Number
               Unsigned 8-bit integer

           wpan.src_addr16  Source
               Unsigned 16-bit integer

           wpan.src_addr64  Source
               Unsigned 64-bit integer

           wpan.src_addr_mode  Source Addressing Mode
               Unsigned 16-bit integer

           wpan.src_pan  Source PAN
               Unsigned 16-bit integer

           wpan.version  Frame Version
               Unsigned 16-bit integer

   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
               Priority

           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
               Type

           ieee8021ah.isid  I-SID
               Unsigned 32-bit integer
               I-SID

           ieee8021ah.len  Length
               Unsigned 16-bit integer
               Length

           ieee8021ah.nca  NCA
               Unsigned 32-bit integer
               No Customer Addresses

           ieee8021ah.priority  Priority
               Unsigned 32-bit integer
               Priority

           ieee8021ah.res1  RES1
               Unsigned 32-bit integer
               Reserved1

           ieee8021ah.res2  RES2
               Unsigned 32-bit integer
               Reserved2

           ieee8021ah.trailer  Trailer
               Byte array
               802.1ah Trailer

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

           ipdc.message_code  Message code
               Unsigned 16-bit integer
               Message Code

           ipdc.nr  N(r)
               Unsigned 8-bit integer
               Receive sequence number

           ipdc.ns  N(s)
               Unsigned 8-bit integer
               Transmit sequence number

           ipdc.protocol_id  Protocol ID
               Unsigned 8-bit integer
               Protocol ID

           ipdc.trans_id  Transaction ID
               Byte array
               Transaction ID

           ipdc.trans_id_size  Transaction ID size
               Unsigned 8-bit integer
               Transaction ID size

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

           ipvs.conncount  Connection Count
               Unsigned 8-bit integer
               Connection Count

           ipvs.cport  Client Port
               Unsigned 16-bit integer
               Client Port

           ipvs.daddr  Destination Address
               IPv4 address
               Destination Address

           ipvs.dport  Destination Port
               Unsigned 16-bit integer
               Destination Port

           ipvs.flags  Flags
               Unsigned 16-bit integer
               Flags

           ipvs.in_seq.delta  Input Sequence (Delta)
               Unsigned 32-bit integer
               Input Sequence (Delta)

           ipvs.in_seq.initial  Input Sequence (Initial)
               Unsigned 32-bit integer
               Input Sequence (Initial)

           ipvs.in_seq.pdelta  Input Sequence (Previous Delta)
               Unsigned 32-bit integer
               Input Sequence (Previous Delta)

           ipvs.out_seq.delta  Output Sequence (Delta)
               Unsigned 32-bit integer
               Output Sequence (Delta)

           ipvs.out_seq.initial  Output Sequence (Initial)
               Unsigned 32-bit integer
               Output Sequence (Initial)

           ipvs.out_seq.pdelta  Output Sequence (Previous Delta)
               Unsigned 32-bit integer
               Output Sequence (Previous Delta)

           ipvs.proto  Protocol
               Unsigned 8-bit integer
               Protocol

           ipvs.resv8  Reserved
               Unsigned 8-bit integer
               Reserved

           ipvs.size  Size
               Unsigned 16-bit integer
               Size

           ipvs.state  State
               Unsigned 16-bit integer
               State

           ipvs.syncid  Synchronization ID
               Unsigned 8-bit integer
               Synchronization ID

           ipvs.vaddr  Virtual Address
               IPv4 address
               Virtual Address

           ipvs.vport  Virtual Port
               Unsigned 16-bit integer
               Virtual Port

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

           ipxmsg.sigchar  Signature Char
               Unsigned 8-bit integer
               Signature Char

   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

   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
               Operation

           remunk_private_refs  PrivateRefs
               Unsigned 32-bit integer

           remunk_public_refs  PublicRefs
               Unsigned 32-bit integer

           remunk_qiresult  QIResult
               No value

           remunk_refs  Refs
               Unsigned 32-bit integer

           remunk_reminterfaceref  RemInterfaceRef
               No value

   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
               Maximal number of Codec Modes, MACS

           bat_ase.optimisation_mode  Optimisation Mode for ACS , OM
               Unsigned 8-bit integer
               Optimisation Mode for ACS , OM

           bat_ase.organization_identifier_subfield  Organization identifier subfield
               Unsigned 8-bit integer

           bat_ase.scs  Supported Code Set
               Unsigned 8-bit integer

           bat_ase.scs.10_2  10.2 kbps rate
               Unsigned 8-bit integer

           bat_ase.scs.12_2  12.2 kbps rate
               Unsigned 8-bit integer

           bat_ase.scs.4_75  4.75 kbps rate
               Unsigned 8-bit integer

           bat_ase.scs.5_15  5.15 kbps rate
               Unsigned 8-bit integer

           bat_ase.scs.5_90  5.90 kbps rate
               Unsigned 8-bit integer

           bat_ase.scs.6_70  6.70 kbps rate
               Unsigned 8-bit integer

           bat_ase.scs.7_40  7.40 kbps rate
               Unsigned 8-bit integer

           bat_ase.scs.7_95  7.95 kbps rate
               Unsigned 8-bit integer

           bat_ase.signal_type  Q.765.5 - Signal Type
               Unsigned 8-bit integer

           bat_ase_biwfa  Interworking Function Address( X.213 NSAP encoded)
               Byte array

           bicc.bat_ase_BCTP_BVEI  BVEI
               Boolean

           bicc.bat_ase_BCTP_Tunnelled_Protocol_Indicator  Tunnelled Protocol Indicator
               Unsigned 8-bit integer

           bicc.bat_ase_BCTP_Version_Indicator  BCTP Version Indicator
               Unsigned 8-bit integer

           bicc.bat_ase_BCTP_tpei  TPEI
               Boolean

           bicc.bat_ase_Instruction_ind_for_general_action  BAT ASE Instruction indicator for general action
               Unsigned 8-bit integer

           bicc.bat_ase_Instruction_ind_for_pass_on_not_possible  Instruction ind for pass-on not possible
               Unsigned 8-bit integer

           bicc.bat_ase_Send_notification_ind_for_general_action  Send notification indicator for general action
               Boolean

           bicc.bat_ase_Send_notification_ind_for_pass_on_not_possible  Send notification indication for pass-on not possible
               Boolean

           bicc.bat_ase_bat_ase_action_indicator_field  BAT ASE action indicator field
               Unsigned 8-bit integer

           bicc.bat_ase_identifier  BAT ASE Identifiers
               Unsigned 8-bit integer

           bicc.bat_ase_length_indicator  BAT ASE Element length indicator
               Unsigned 16-bit integer

           cg_alarm_car_ind  Alarm Carrier Indicator
               Unsigned 8-bit integer

           cg_alarm_cnt_chk  Continuity Check Indicator
               Unsigned 8-bit integer

           cg_carrier_ind  CVR Circuit Group Carrier
               Unsigned 8-bit integer

           cg_char_ind.doubleSeize  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
               Originating Address length

           isup.original_redirection_reason  Original redirection reason
               Unsigned 16-bit integer

           isup.parameter_length  Parameter Length
               Unsigned 8-bit integer

           isup.parameter_type  Parameter Type
               Unsigned 8-bit integer

           isup.range_indicator  Range indicator
               Unsigned 8-bit integer

           isup.redirecting  ISUP Redirecting Number
               String

           isup.redirecting_ind  Redirection indicator
               Unsigned 16-bit integer

           isup.redirection_counter  Redirection counter
               Unsigned 16-bit integer

           isup.redirection_reason  Redirection reason
               Unsigned 16-bit integer

           isup.satellite_indicator  Satellite Indicator
               Unsigned 8-bit integer

           isup.screening_indicator  Screening indicator
               Unsigned 8-bit integer

           isup.screening_indicator_enhanced  Screening indicator
               Unsigned 8-bit integer

           isup.simple_segmentation_ind  Simple segmentation indicator
               Boolean

           isup.solicided_indicator  Solicited indicator
               Boolean

           isup.suspend_resume_indicator  Suspend/Resume indicator
               Boolean

           isup.temporary_alternative_routing_ind  Temporary alternative routing indicator
               Boolean

           isup.transit_at_intermediate_exchange_ind  Transit at intermediate exchange indicator
               Boolean

           isup.transmission_medium_requirement  Transmission medium requirement
               Unsigned 8-bit integer

           isup.transmission_medium_requirement_prime  Transmission medium requirement prime
               Unsigned 8-bit integer

           isup.type_of_network_identification  Type of network identification
               Unsigned 8-bit integer

           isup_Pass_on_not_possible_ind  Pass on not possible indicator
               Unsigned 8-bit integer

           isup_Pass_on_not_possible_val  Pass on not possible indicator
               Boolean

           isup_apm.msg.fragment  Message fragment
               Frame number

           isup_apm.msg.fragment.error  Message defragmentation error
               Frame number

           isup_apm.msg.fragment.multiple_tails  Message has multiple tail fragments
               Boolean

           isup_apm.msg.fragment.overlap  Message fragment overlap
               Boolean

           isup_apm.msg.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
               Boolean

           isup_apm.msg.fragment.too_long_fragment  Message fragment too long
               Boolean

           isup_apm.msg.fragments  Message fragments
               No value

           isup_apm.msg.reassembled.in  Reassembled in
               Frame number

           isup_broadband-narrowband_interworking_ind  Broadband narrowband interworking indicator Bits JF
               Unsigned 8-bit integer

           isup_broadband-narrowband_interworking_ind2  Broadband narrowband interworking indicator Bits GF
               Unsigned 8-bit integer

           nsap.iana_icp  IANA ICP
               Unsigned 16-bit integer

           nsap.ipv4_addr  IWFA IPv4 Address
               IPv4 address
               IPv4 address

           nsap.ipv6_addr  IWFA IPv6 Address
               IPv6 address
               IPv6 address

           x213.afi  X.213 Address Format Information ( AFI )
               Unsigned 8-bit integer

           x213.dsp  X.213 Address Format Information ( DSP )
               Byte array

   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 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
               Your TPDU number

           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_in  Reassembled COTP in frame
               Frame number
               This COTP packet is reassembled in this frame

           cotp.segment  COTP Segment
               Frame number
               COTP Segment

           cotp.segment.error  Reassembly error
               Frame number
               Reassembly error due to illegal segments

           cotp.segment.multipletails  Multiple tail segments found
               Boolean
               Several tails were found when reassembling the packet

           cotp.segment.overlap  Segment overlap
               Boolean
               Segment overlaps with other segments

           cotp.segment.overlap.conflict  Conflicting data in segment overlap
               Boolean
               Overlapping segments contained conflicting data

           cotp.segment.toolongsegment  Segment too long
               Boolean
               Segment contained data past end of packet

           cotp.segments  COTP Segments
               No value
               COTP Segments

           cotp.src-tsap  Source TSAP
               String
               Calling TSAP

           cotp.src-tsap-bytes  Source TSAP
               Byte array
               Calling TSAP (bytes representation)

           cotp.srcref  Source reference
               Unsigned 16-bit integer
               Source address reference

           cotp.tpdu-number  TPDU number
               Unsigned 8-bit integer
               TPDU number

           cotp.type  PDU Type
               Unsigned 8-bit integer
               PDU Type - upper nibble of byte

   ISO 8327-1 OSI Session Protocol (ses)
           ses.activity_identifier  Activity Identifier
               Unsigned 32-bit integer
               Activity Identifier

           ses.activity_management  Activity management function unit
               Boolean
               Activity management function unit

           ses.additional_reference_information  Additional Reference Information
               Byte array
               Additional Reference Information

           ses.begininng_of_SSDU  beginning of SSDU
               Boolean
               beginning of SSDU

           ses.called_session_selector  Called Session Selector
               Byte array
               Called Session Selector

           ses.called_ss_user_reference  Called SS User Reference
               Byte array
               Called SS User Reference

           ses.calling_session_selector  Calling Session Selector
               Byte array
               Calling Session Selector

           ses.calling_ss_user_reference  Calling SS User Reference
               Byte array
               Calling SS User Reference

           ses.capability_data  Capability function unit
               Boolean
               Capability function unit

           ses.common_reference  Common Reference
               Byte array
               Common Reference

           ses.connect.f1  Able to receive extended concatenated SPDU
               Boolean
               Able to receive extended concatenated SPDU

           ses.connect.flags  Flags
               Unsigned 8-bit integer

           ses.data_sep  Data separation function unit
               Boolean
               Data separation function unit

           ses.data_token  data token
               Boolean
               data  token

           ses.data_token_setting  data token setting
               Unsigned 8-bit integer
               data token setting

           ses.duplex  Duplex functional unit
               Boolean
               Duplex functional unit

           ses.enclosure.flags  Flags
               Unsigned 8-bit integer

           ses.end_of_SSDU  end of SSDU
               Boolean
               end of SSDU

           ses.exception_data  Exception function unit
               Boolean
               Exception function unit

           ses.exception_report.  Session exception report
               Boolean
               Session exception report

           ses.expedited_data  Expedited data function unit
               Boolean
               Expedited data function unit

           ses.half_duplex  Half-duplex functional unit
               Boolean
               Half-duplex functional unit

           ses.initial_serial_number  Initial Serial Number
               String
               Initial Serial Number

           ses.large_initial_serial_number  Large Initial Serial Number
               String
               Large Initial Serial Number

           ses.large_second_initial_serial_number  Large Second Initial Serial Number
               String
               Large Second Initial Serial Number

           ses.length  Length
               Unsigned 16-bit integer

           ses.major.token  major/activity token
               Boolean
               major/activity token

           ses.major_activity_token_setting  major/activity setting
               Unsigned 8-bit integer
               major/activity token setting

           ses.major_resynchronize  Major resynchronize function unit
               Boolean
               Major resynchronize function unit

           ses.minor_resynchronize  Minor resynchronize function unit
               Boolean
               Minor resynchronize function unit

           ses.negotiated_release  Negotiated release function unit
               Boolean
               Negotiated release function unit

           ses.proposed_tsdu_maximum_size_i2r  Proposed TSDU Maximum Size, Initiator to Responder
               Unsigned 16-bit integer
               Proposed TSDU Maximum Size, Initiator to Responder

           ses.proposed_tsdu_maximum_size_r2i  Proposed TSDU Maximum Size, Responder to Initiator
               Unsigned 16-bit integer
               Proposed TSDU Maximum Size, Responder to Initiator

           ses.protocol_version1  Protocol Version 1
               Boolean
               Protocol Version 1

           ses.protocol_version2  Protocol Version 2
               Boolean
               Protocol Version 2

           ses.release_token  release token
               Boolean
               release token

           ses.release_token_setting  release token setting
               Unsigned 8-bit integer
               release token setting

           ses.req.flags  Flags
               Unsigned 16-bit integer

           ses.reserved  Reserved
               Unsigned 8-bit integer

           ses.resynchronize  Resynchronize function unit
               Boolean
               Resynchronize function unit

           ses.second_initial_serial_number  Second Initial Serial Number
               String
               Second Initial Serial Number

           ses.second_serial_number  Second Serial Number
               String
               Second Serial Number

           ses.serial_number  Serial Number
               String
               Serial Number

           ses.symm_sync  Symmetric synchronize function unit
               Boolean
               Symmetric synchronize function unit

           ses.synchronize_minor_token_setting  synchronize-minor token setting
               Unsigned 8-bit integer
               synchronize-minor token setting

           ses.synchronize_token  synchronize minor token
               Boolean
               synchronize minor token

           ses.tken_item.flags  Flags
               Unsigned 8-bit integer

           ses.type  SPDU Type
               Unsigned 8-bit integer

           ses.typed_data  Typed data function unit
               Boolean
               Typed data function unit

           ses.version  Version
               Unsigned 8-bit integer

           ses.version.flags  Flags
               Unsigned 8-bit integer

   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_in  Reassembled CLNP in frame
               Frame number
               This CLNP packet is reassembled in this frame

           clnp.segment  CLNP Segment
               Frame number
               CLNP Segment

           clnp.segment.error  Reassembly error
               Frame number
               Reassembly error due to illegal segments

           clnp.segment.multipletails  Multiple tail segments found
               Boolean
               Several tails were found when reassembling the packet

           clnp.segment.overlap  Segment overlap
               Boolean
               Segment overlaps with other segments

           clnp.segment.overlap.conflict  Conflicting data in segment overlap
               Boolean
               Overlapping segments contained conflicting data

           clnp.segment.toolongsegment  Segment too long
               Boolean
               Segment contained data past end of packet

           clnp.segments  CLNP Segments
               No value
               CLNP Segments

           clnp.ssap   SA
               Byte array

           clnp.ssap.len  SAL
               Unsigned 8-bit integer

           clnp.ttl  Holding Time
               Unsigned 8-bit integer

           clnp.type  PDU Type
               Unsigned 8-bit integer

           clnp.version  Version
               Unsigned 8-bit integer

   ISO 8571 FTAM (ftam)
           ftam.AND_Set  AND-Set
               Unsigned 32-bit integer
               ftam.AND_Set

           ftam.AND_Set_item  AND-Set item
               Unsigned 32-bit integer
               ftam.AND_Set_item

           ftam.Abstract_Syntax_Name  Abstract-Syntax-Name
               Object Identifier
               ftam.Abstract_Syntax_Name

           ftam.Access_Control_Element  Access-Control-Element
               No value
               ftam.Access_Control_Element

           ftam.Attribute_Extension_Set  Attribute-Extension-Set
               No value
               ftam.Attribute_Extension_Set

           ftam.Attribute_Extension_Set_Name  Attribute-Extension-Set-Name
               No value
               ftam.Attribute_Extension_Set_Name

           ftam.Attribute_Extensions_Pattern_item  Attribute-Extensions-Pattern item
               No value
               ftam.Attribute_Extensions_Pattern_item

           ftam.Child_Objects_Attribute_item  Child-Objects-Attribute item
               String
               ftam.GraphicString

           ftam.Extension_Attribute  Extension-Attribute
               No value
               ftam.Extension_Attribute

           ftam.Extension_Attribute_identifier  Extension-Attribute-identifier
               Object Identifier
               ftam.Extension_Attribute_identifier

           ftam.Node_Name  Node-Name
               No value
               ftam.Node_Name

           ftam.Password  Password
               Unsigned 32-bit integer
               ftam.Password

           ftam.Pathname  Pathname
               Unsigned 32-bit integer
               ftam.Pathname

           ftam.Pathname_item  Pathname item
               String
               ftam.GraphicString

           ftam.Read_Attributes  Read-Attributes
               No value
               ftam.Read_Attributes

           ftam._untag_item  _untag item
               Unsigned 32-bit integer
               ftam.Contents_Type_List_item

           ftam.abstract_Syntax_Pattern  abstract-Syntax-Pattern
               No value
               ftam.Object_Identifier_Pattern

           ftam.abstract_Syntax_name  abstract-Syntax-name
               Object Identifier
               ftam.Abstract_Syntax_Name

           ftam.abstract_Syntax_not_supported  abstract-Syntax-not-supported
               No value
               ftam.NULL

           ftam.access-class  access-class
               Boolean

           ftam.access_context  access-context
               No value
               ftam.Access_Context

           ftam.access_control  access-control
               Unsigned 32-bit integer
               ftam.Access_Control_Change_Attribute

           ftam.access_passwords  access-passwords
               No value
               ftam.Access_Passwords

           ftam.account  account
               String
               ftam.Account

           ftam.action_list  action-list
               Byte array
               ftam.Access_Request

           ftam.action_result  action-result
               Signed 32-bit integer
               ftam.Action_Result

           ftam.activity_identifier  activity-identifier
               Signed 32-bit integer
               ftam.Activity_Identifier

           ftam.actual_values  actual-values
               Unsigned 32-bit integer
               ftam.SET_OF_Access_Control_Element

           ftam.ae  ae
               Unsigned 32-bit integer
               ftam.AE_qualifier

           ftam.any_match  any-match
               No value
               ftam.NULL

           ftam.ap  ap
               Unsigned 32-bit integer
               ftam.AP_title

           ftam.attribute_extension_names  attribute-extension-names
               Unsigned 32-bit integer
               ftam.Attribute_Extension_Names

           ftam.attribute_extensions  attribute-extensions
               Unsigned 32-bit integer
               ftam.Attribute_Extensions

           ftam.attribute_extensions_pattern  attribute-extensions-pattern
               Unsigned 32-bit integer
               ftam.Attribute_Extensions_Pattern

           ftam.attribute_groups  attribute-groups
               Byte array
               ftam.Attribute_Groups

           ftam.attribute_names  attribute-names
               Byte array
               ftam.Attribute_Names

           ftam.attribute_value_assertions  attribute-value-assertions
               Unsigned 32-bit integer
               ftam.Attribute_Value_Assertions

           ftam.attribute_value_asset_tions  attribute-value-asset-tions
               Unsigned 32-bit integer
               ftam.Attribute_Value_Assertions

           ftam.attributes  attributes
               No value
               ftam.Select_Attributes

           ftam.begin_end  begin-end
               Signed 32-bit integer
               ftam.T_begin_end

           ftam.boolean_value  boolean-value
               Boolean
               ftam.BOOLEAN

           ftam.bulk_Data_PDU  bulk-Data-PDU
               Unsigned 32-bit integer
               ftam.Bulk_Data_PDU

           ftam.bulk_transfer_number  bulk-transfer-number
               Signed 32-bit integer
               ftam.INTEGER

           ftam.change-attribute  change-attribute
               Boolean

           ftam.change_attribute  change-attribute
               Signed 32-bit integer
               ftam.Lock

           ftam.change_attribute_password  change-attribute-password
               Unsigned 32-bit integer
               ftam.Password

           ftam.charging  charging
               Unsigned 32-bit integer
               ftam.Charging

           ftam.charging_unit  charging-unit
               String
               ftam.GraphicString

           ftam.charging_value  charging-value
               Signed 32-bit integer
               ftam.INTEGER

           ftam.checkpoint_identifier  checkpoint-identifier
               Signed 32-bit integer
               ftam.INTEGER

           ftam.checkpoint_window  checkpoint-window
               Signed 32-bit integer
               ftam.INTEGER

           ftam.child_objects  child-objects
               Unsigned 32-bit integer
               ftam.Child_Objects_Attribute

           ftam.child_objects_Pattern  child-objects-Pattern
               No value
               ftam.Pathname_Pattern

           ftam.complete_pathname  complete-pathname
               Unsigned 32-bit integer
               ftam.Pathname

           ftam.concurrency_access  concurrency-access
               No value
               ftam.Concurrency_Access

           ftam.concurrency_control  concurrency-control
               No value
               ftam.Concurrency_Control

           ftam.concurrent-access  concurrent-access
               Boolean

           ftam.concurrent_bulk_transfer_number  concurrent-bulk-transfer-number
               Signed 32-bit integer
               ftam.INTEGER

           ftam.concurrent_recovery_point  concurrent-recovery-point
               Signed 32-bit integer
               ftam.INTEGER

           ftam.consecutive-access  consecutive-access
               Boolean

           ftam.constraint_Set_Pattern  constraint-Set-Pattern
               No value
               ftam.Object_Identifier_Pattern

           ftam.constraint_set_abstract_Syntax_Pattern  constraint-set-abstract-Syntax-Pattern
               No value
               ftam.T_constraint_set_abstract_Syntax_Pattern

           ftam.constraint_set_and_abstract_Syntax  constraint-set-and-abstract-Syntax
               No value
               ftam.T_constraint_set_and_abstract_Syntax

           ftam.constraint_set_name  constraint-set-name
               Object Identifier
               ftam.Constraint_Set_Name

           ftam.contents_type  contents-type
               Unsigned 32-bit integer
               ftam.T_open_contents_type

           ftam.contents_type_Pattern  contents-type-Pattern
               Unsigned 32-bit integer
               ftam.Contents_Type_Pattern

           ftam.contents_type_list  contents-type-list
               Unsigned 32-bit integer
               ftam.Contents_Type_List

           ftam.create_password  create-password
               Unsigned 32-bit integer
               ftam.Password

           ftam.date_and_time_of_creation  date-and-time-of-creation
               Unsigned 32-bit integer
               ftam.Date_and_Time_Attribute

           ftam.date_and_time_of_creation_Pattern  date-and-time-of-creation-Pattern
               No value
               ftam.Date_and_Time_Pattern

           ftam.date_and_time_of_last_attribute_modification  date-and-time-of-last-attribute-modification
               Unsigned 32-bit integer
               ftam.Date_and_Time_Attribute

           ftam.date_and_time_of_last_attribute_modification_Pattern  date-and-time-of-last-attribute-modification-Pattern
               No value
               ftam.Date_and_Time_Pattern

           ftam.date_and_time_of_last_modification  date-and-time-of-last-modification
               Unsigned 32-bit integer
               ftam.Date_and_Time_Attribute

           ftam.date_and_time_of_last_modification_Pattern  date-and-time-of-last-modification-Pattern
               No value
               ftam.Date_and_Time_Pattern

           ftam.date_and_time_of_last_read_access  date-and-time-of-last-read-access
               Unsigned 32-bit integer
               ftam.Date_and_Time_Attribute

           ftam.date_and_time_of_last_read_access_Pattern  date-and-time-of-last-read-access-Pattern
               No value
               ftam.Date_and_Time_Pattern

           ftam.define_contexts  define-contexts
               Unsigned 32-bit integer
               ftam.SET_OF_Abstract_Syntax_Name

           ftam.degree_of_overlap  degree-of-overlap
               Signed 32-bit integer
               ftam.Degree_Of_Overlap

           ftam.delete-Object  delete-Object
               Boolean

           ftam.delete_Object  delete-Object
               Signed 32-bit integer
               ftam.Lock

           ftam.delete_password  delete-password
               Unsigned 32-bit integer
               ftam.Password

           ftam.delete_values  delete-values
               Unsigned 32-bit integer
               ftam.SET_OF_Access_Control_Element

           ftam.destination_file_directory  destination-file-directory
               Unsigned 32-bit integer
               ftam.Destination_File_Directory

           ftam.diagnostic  diagnostic
               Unsigned 32-bit integer
               ftam.Diagnostic

           ftam.diagnostic_type  diagnostic-type
               Signed 32-bit integer
               ftam.T_diagnostic_type

           ftam.document_type  document-type
               No value
               ftam.T_document_type

           ftam.document_type_Pattern  document-type-Pattern
               No value
               ftam.Object_Identifier_Pattern

           ftam.document_type_name  document-type-name
               Object Identifier
               ftam.Document_Type_Name

           ftam.enable_fadu_locking  enable-fadu-locking
               Boolean
               ftam.BOOLEAN

           ftam.enhanced-file-management  enhanced-file-management
               Boolean

           ftam.enhanced-filestore-management  enhanced-filestore-management
               Boolean

           ftam.equality_comparision  equality-comparision
               Byte array
               ftam.Equality_Comparision

           ftam.equals-matches  equals-matches
               Boolean

           ftam.erase  erase
               Signed 32-bit integer
               ftam.Lock

           ftam.erase_password  erase-password
               Unsigned 32-bit integer
               ftam.Password

           ftam.error_Source  error-Source
               Signed 32-bit integer
               ftam.Entity_Reference

           ftam.error_action  error-action
               Signed 32-bit integer
               ftam.Error_Action

           ftam.error_identifier  error-identifier
               Signed 32-bit integer
               ftam.INTEGER

           ftam.error_observer  error-observer
               Signed 32-bit integer
               ftam.Entity_Reference

           ftam.exclusive  exclusive
               Boolean

           ftam.extend  extend
               Signed 32-bit integer
               ftam.Lock

           ftam.extend_password  extend-password
               Unsigned 32-bit integer
               ftam.Password

           ftam.extension  extension
               Boolean

           ftam.extension_attribute  extension-attribute
               No value
               ftam.T_extension_attribute

           ftam.extension_attribute_Pattern  extension-attribute-Pattern
               No value
               ftam.T_extension_attribute_Pattern

           ftam.extension_attribute_identifier  extension-attribute-identifier
               Object Identifier
               ftam.T_extension_attribute_identifier

           ftam.extension_attribute_names  extension-attribute-names
               Unsigned 32-bit integer
               ftam.SEQUENCE_OF_Extension_Attribute_identifier

           ftam.extension_set_attribute_Patterns  extension-set-attribute-Patterns
               Unsigned 32-bit integer
               ftam.T_extension_set_attribute_Patterns

           ftam.extension_set_attribute_Patterns_item  extension-set-attribute-Patterns item
               No value
               ftam.T_extension_set_attribute_Patterns_item

           ftam.extension_set_attributes  extension-set-attributes
               Unsigned 32-bit integer
               ftam.SEQUENCE_OF_Extension_Attribute

           ftam.extension_set_identifier  extension-set-identifier
               Object Identifier
               ftam.Extension_Set_Identifier

           ftam.f-erase  f-erase
               Boolean

           ftam.f-extend  f-extend
               Boolean

           ftam.f-insert  f-insert
               Boolean

           ftam.f-read  f-read
               Boolean

           ftam.f-replace  f-replace
               Boolean

           ftam.fSM_PDU  fSM-PDU
               Unsigned 32-bit integer
               ftam.FSM_PDU

           ftam.fTAM_Regime_PDU  fTAM-Regime-PDU
               Unsigned 32-bit integer
               ftam.FTAM_Regime_PDU

           ftam.f_Change_Iink_attrib_response  f-Change-Iink-attrib-response
               No value
               ftam.F_CHANGE_LINK_ATTRIB_response

           ftam.f_Change_attrib_reques  f-Change-attrib-reques
               No value
               ftam.F_CHANGE_ATTRIB_request

           ftam.f_Change_attrib_respon  f-Change-attrib-respon
               No value
               ftam.F_CHANGE_ATTRIB_response

           ftam.f_Change_link_attrib_request  f-Change-link-attrib-request
               No value
               ftam.F_CHANGE_LINK_ATTRIB_request

           ftam.f_Change_prefix_request  f-Change-prefix-request
               No value
               ftam.F_CHANGE_PREFIX_request

           ftam.f_Change_prefix_response  f-Change-prefix-response
               No value
               ftam.F_CHANGE_PREFIX_response

           ftam.f_begin_group_request  f-begin-group-request
               No value
               ftam.F_BEGIN_GROUP_request

           ftam.f_begin_group_response  f-begin-group-response
               No value
               ftam.F_BEGIN_GROUP_response

           ftam.f_cancel_request  f-cancel-request
               No value
               ftam.F_CANCEL_request

           ftam.f_cancel_response  f-cancel-response
               No value
               ftam.F_CANCEL_response

           ftam.f_close_request  f-close-request
               No value
               ftam.F_CLOSE_request

           ftam.f_close_response  f-close-response
               No value
               ftam.F_CLOSE_response

           ftam.f_copy_request  f-copy-request
               No value
               ftam.F_COPY_request

           ftam.f_copy_response  f-copy-response
               No value
               ftam.F_COPY_response

           ftam.f_create_directory_request  f-create-directory-request
               No value
               ftam.F_CREATE_DIRECTORY_request

           ftam.f_create_directory_response  f-create-directory-response
               No value
               ftam.F_CREATE_DIRECTORY_response

           ftam.f_create_request  f-create-request
               No value
               ftam.F_CREATE_request

           ftam.f_create_response  f-create-response
               No value
               ftam.F_CREATE_response

           ftam.f_data_end_request  f-data-end-request
               No value
               ftam.F_DATA_END_request

           ftam.f_delete_request  f-delete-request
               No value
               ftam.F_DELETE_request

           ftam.f_delete_response  f-delete-response
               No value
               ftam.F_DELETE_response

           ftam.f_deselect_request  f-deselect-request
               No value
               ftam.F_DESELECT_request

           ftam.f_deselect_response  f-deselect-response
               No value
               ftam.F_DESELECT_response

           ftam.f_end_group_request  f-end-group-request
               No value
               ftam.F_END_GROUP_request

           ftam.f_end_group_response  f-end-group-response
               No value
               ftam.F_END_GROUP_response

           ftam.f_erase_request  f-erase-request
               No value
               ftam.F_ERASE_request

           ftam.f_erase_response  f-erase-response
               No value
               ftam.F_ERASE_response

           ftam.f_group_Change_attrib_request  f-group-Change-attrib-request
               No value
               ftam.F_GROUP_CHANGE_ATTRIB_request

           ftam.f_group_Change_attrib_response  f-group-Change-attrib-response
               No value
               ftam.F_GROUP_CHANGE_ATTRIB_response

           ftam.f_group_copy_request  f-group-copy-request
               No value
               ftam.F_GROUP_COPY_request

           ftam.f_group_copy_response  f-group-copy-response
               No value
               ftam.F_GROUP_COPY_response

           ftam.f_group_delete_request  f-group-delete-request
               No value
               ftam.F_GROUP_DELETE_request

           ftam.f_group_delete_response  f-group-delete-response
               No value
               ftam.F_GROUP_DELETE_response

           ftam.f_group_list_request  f-group-list-request
               No value
               ftam.F_GROUP_LIST_request

           ftam.f_group_list_response  f-group-list-response
               No value
               ftam.F_GROUP_LIST_response

           ftam.f_group_move_request  f-group-move-request
               No value
               ftam.F_GROUP_MOVE_request

           ftam.f_group_move_response  f-group-move-response
               No value
               ftam.F_GROUP_MOVE_response

           ftam.f_group_select_request  f-group-select-request
               No value
               ftam.F_GROUP_SELECT_request

           ftam.f_group_select_response  f-group-select-response
               No value
               ftam.F_GROUP_SELECT_response

           ftam.f_initialize_request  f-initialize-request
               No value
               ftam.F_INITIALIZE_request

           ftam.f_initialize_response  f-initialize-response
               No value
               ftam.F_INITIALIZE_response

           ftam.f_link_request  f-link-request
               No value
               ftam.F_LINK_request

           ftam.f_link_response  f-link-response
               No value
               ftam.F_LINK_response

           ftam.f_list_request  f-list-request
               No value
               ftam.F_LIST_request

           ftam.f_list_response  f-list-response
               No value
               ftam.F_LIST_response

           ftam.f_locate_request  f-locate-request
               No value
               ftam.F_LOCATE_request

           ftam.f_locate_response  f-locate-response
               No value
               ftam.F_LOCATE_response

           ftam.f_move_request  f-move-request
               No value
               ftam.F_MOVE_request

           ftam.f_move_response  f-move-response
               No value
               ftam.F_MOVE_response

           ftam.f_open_request  f-open-request
               No value
               ftam.F_OPEN_request

           ftam.f_open_response  f-open-response
               No value
               ftam.F_OPEN_response

           ftam.f_p_abort_request  f-p-abort-request
               No value
               ftam.F_P_ABORT_request

           ftam.f_read_attrib_request  f-read-attrib-request
               No value
               ftam.F_READ_ATTRIB_request

           ftam.f_read_attrib_response  f-read-attrib-response
               No value
               ftam.F_READ_ATTRIB_response

           ftam.f_read_link_attrib_request  f-read-link-attrib-request
               No value
               ftam.F_READ_LINK_ATTRIB_request

           ftam.f_read_link_attrib_response  f-read-link-attrib-response
               No value
               ftam.F_READ_LINK_ATTRIB_response

           ftam.f_read_request  f-read-request
               No value
               ftam.F_READ_request

           ftam.f_recover_request  f-recover-request
               No value
               ftam.F_RECOVER_request

           ftam.f_recover_response  f-recover-response
               No value
               ftam.F_RECOVER_response

           ftam.f_restart_request  f-restart-request
               No value
               ftam.F_RESTART_request

           ftam.f_restart_response  f-restart-response
               No value
               ftam.F_RESTART_response

           ftam.f_select_another_request  f-select-another-request
               No value
               ftam.F_SELECT_ANOTHER_request

           ftam.f_select_another_response  f-select-another-response
               No value
               ftam.F_SELECT_ANOTHER_response

           ftam.f_select_request  f-select-request
               No value
               ftam.F_SELECT_request

           ftam.f_select_response  f-select-response
               No value
               ftam.F_SELECT_response

           ftam.f_terminate_request  f-terminate-request
               No value
               ftam.F_TERMINATE_request

           ftam.f_terminate_response  f-terminate-response
               No value
               ftam.F_TERMINATE_response

           ftam.f_transfer_end_request  f-transfer-end-request
               No value
               ftam.F_TRANSFER_END_request

           ftam.f_transfer_end_response  f-transfer-end-response
               No value
               ftam.F_TRANSFER_END_response

           ftam.f_u_abort_request  f-u-abort-request
               No value
               ftam.F_U_ABORT_request

           ftam.f_unlink_request  f-unlink-request
               No value
               ftam.F_UNLINK_request

           ftam.f_unlink_response  f-unlink-response
               No value
               ftam.F_UNLINK_response

           ftam.f_write_request  f-write-request
               No value
               ftam.F_WRITE_request

           ftam.fadu-locking  fadu-locking
               Boolean

           ftam.fadu_lock  fadu-lock
               Signed 32-bit integer
               ftam.FADU_Lock

           ftam.fadu_number  fadu-number
               Signed 32-bit integer
               ftam.INTEGER

           ftam.file-access  file-access
               Boolean

           ftam.file_PDU  file-PDU
               Unsigned 32-bit integer
               ftam.File_PDU

           ftam.file_access_data_unit_Operation  file-access-data-unit-Operation
               Signed 32-bit integer
               ftam.T_file_access_data_unit_Operation

           ftam.file_access_data_unit_identity  file-access-data-unit-identity
               Unsigned 32-bit integer
               ftam.FADU_Identity

           ftam.filestore_password  filestore-password
               Unsigned 32-bit integer
               ftam.Password

           ftam.first_last  first-last
               Signed 32-bit integer
               ftam.T_first_last

           ftam.ftam_quality_of_Service  ftam-quality-of-Service
               Signed 32-bit integer
               ftam.FTAM_Quality_of_Service

           ftam.functional_units  functional-units
               Byte array
               ftam.Functional_Units

           ftam.further_details  further-details
               String
               ftam.GraphicString

           ftam.future_Object_size  future-Object-size
               Unsigned 32-bit integer
               ftam.Object_Size_Attribute

           ftam.future_object_size_Pattern  future-object-size-Pattern
               No value
               ftam.Integer_Pattern

           ftam.graphicString  graphicString
               String
               ftam.GraphicString

           ftam.greater-than-matches  greater-than-matches
               Boolean

           ftam.group-manipulation  group-manipulation
               Boolean

           ftam.grouping  grouping
               Boolean

           ftam.identity  identity
               String
               ftam.User_Identity

           ftam.identity_last_attribute_modifier  identity-last-attribute-modifier
               Unsigned 32-bit integer
               ftam.User_Identity_Attribute

           ftam.identity_of_creator  identity-of-creator
               Unsigned 32-bit integer
               ftam.User_Identity_Attribute

           ftam.identity_of_creator_Pattern  identity-of-creator-Pattern
               No value
               ftam.User_Identity_Pattern

           ftam.identity_of_last_attribute_modifier_Pattern  identity-of-last-attribute-modifier-Pattern
               No value
               ftam.User_Identity_Pattern

           ftam.identity_of_last_modifier  identity-of-last-modifier
               Unsigned 32-bit integer
               ftam.User_Identity_Attribute

           ftam.identity_of_last_modifier_Pattern  identity-of-last-modifier-Pattern
               No value
               ftam.User_Identity_Pattern

           ftam.identity_of_last_reader  identity-of-last-reader
               Unsigned 32-bit integer
               ftam.User_Identity_Attribute

           ftam.identity_of_last_reader_Pattern  identity-of-last-reader-Pattern
               No value
               ftam.User_Identity_Pattern

           ftam.implementation_information  implementation-information
               String
               ftam.Implementation_Information

           ftam.incomplete_pathname  incomplete-pathname
               Unsigned 32-bit integer
               ftam.Pathname

           ftam.initial_attributes  initial-attributes
               No value
               ftam.Create_Attributes

           ftam.initiator_identity  initiator-identity
               String
               ftam.User_Identity

           ftam.insert  insert
               Signed 32-bit integer
               ftam.Lock

           ftam.insert_password  insert-password
               Unsigned 32-bit integer
               ftam.Password

           ftam.insert_values  insert-values
               Unsigned 32-bit integer
               ftam.SET_OF_Access_Control_Element

           ftam.integer_value  integer-value
               Signed 32-bit integer
               ftam.INTEGER

           ftam.last_member_indicator  last-member-indicator
               Boolean
               ftam.BOOLEAN

           ftam.last_transfer_end_read_request  last-transfer-end-read-request
               Signed 32-bit integer
               ftam.INTEGER

           ftam.last_transfer_end_read_response  last-transfer-end-read-response
               Signed 32-bit integer
               ftam.INTEGER

           ftam.last_transfer_end_write_request  last-transfer-end-write-request
               Signed 32-bit integer
               ftam.INTEGER

           ftam.last_transfer_end_write_response  last-transfer-end-write-response
               Signed 32-bit integer
               ftam.INTEGER

           ftam.legal_quailfication_Pattern  legal-quailfication-Pattern
               No value
               ftam.String_Pattern

           ftam.legal_qualification  legal-qualification
               Unsigned 32-bit integer
               ftam.Legal_Qualification_Attribute

           ftam.less-than-matches  less-than-matches
               Boolean

           ftam.level_number  level-number
               Signed 32-bit integer
               ftam.INTEGER

           ftam.limited-file-management  limited-file-management
               Boolean

           ftam.limited-filestore-management  limited-filestore-management
               Boolean

           ftam.link  link
               Boolean

           ftam.link_password  link-password
               Unsigned 32-bit integer
               ftam.Password

           ftam.linked_Object  linked-Object
               Unsigned 32-bit integer
               ftam.Pathname_Attribute

           ftam.linked_Object_Pattern  linked-Object-Pattern
               No value
               ftam.Pathname_Pattern

           ftam.location  location
               Unsigned 32-bit integer
               ftam.Application_Entity_Title

           ftam.management-class  management-class
               Boolean

           ftam.match_bitstring  match-bitstring
               Byte array
               ftam.BIT_STRING

           ftam.maximum_set_size  maximum-set-size
               Signed 32-bit integer
               ftam.INTEGER

           ftam.name_list  name-list
               Unsigned 32-bit integer
               ftam.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.NULL

           ftam.not-required  not-required
               Boolean

           ftam.number_of_characters_match  number-of-characters-match
               Signed 32-bit integer
               ftam.INTEGER

           ftam.object-manipulation  object-manipulation
               Boolean

           ftam.object_availabiiity_Pattern  object-availabiiity-Pattern
               No value
               ftam.Boolean_Pattern

           ftam.object_availability  object-availability
               Unsigned 32-bit integer
               ftam.Object_Availability_Attribute

           ftam.object_identifier_value  object-identifier-value
               Object Identifier
               ftam.OBJECT_IDENTIFIER

           ftam.object_size  object-size
               Unsigned 32-bit integer
               ftam.Object_Size_Attribute

           ftam.object_size_Pattern  object-size-Pattern
               No value
               ftam.Integer_Pattern

           ftam.object_type  object-type
               Signed 32-bit integer
               ftam.Object_Type_Attribute

           ftam.object_type_Pattern  object-type-Pattern
               No value
               ftam.Integer_Pattern

           ftam.objects_attributes_list  objects-attributes-list
               Unsigned 32-bit integer
               ftam.Objects_Attributes_List

           ftam.octetString  octetString
               Byte array
               ftam.OCTET_STRING

           ftam.operation_result  operation-result
               Unsigned 32-bit integer
               ftam.Operation_Result

           ftam.override  override
               Signed 32-bit integer
               ftam.Override

           ftam.parameter  parameter
               No value
               ftam.T_parameter

           ftam.pass  pass
               Boolean

           ftam.pass_passwords  pass-passwords
               Unsigned 32-bit integer
               ftam.Pass_Passwords

           ftam.passwords  passwords
               No value
               ftam.Access_Passwords

           ftam.path_access_control  path-access-control
               Unsigned 32-bit integer
               ftam.Access_Control_Change_Attribute

           ftam.path_access_passwords  path-access-passwords
               Unsigned 32-bit integer
               ftam.Path_Access_Passwords

           ftam.pathname  pathname
               Unsigned 32-bit integer
               ftam.Pathname_Attribute

           ftam.pathname_Pattern  pathname-Pattern
               No value
               ftam.Pathname_Pattern

           ftam.pathname_value  pathname-value
               Unsigned 32-bit integer
               ftam.T_pathname_value

           ftam.pathname_value_item  pathname-value item
               Unsigned 32-bit integer
               ftam.T_pathname_value_item

           ftam.permitted_actions  permitted-actions
               Byte array
               ftam.Permitted_Actions_Attribute

           ftam.permitted_actions_Pattern  permitted-actions-Pattern
               No value
               ftam.Bitstring_Pattern

           ftam.presentation_action  presentation-action
               Boolean
               ftam.BOOLEAN

           ftam.presentation_tontext_management  presentation-tontext-management
               Boolean
               ftam.BOOLEAN

           ftam.primaty_pathname  primaty-pathname
               Unsigned 32-bit integer
               ftam.Pathname_Attribute

           ftam.primaty_pathname_Pattern  primaty-pathname-Pattern
               No value
               ftam.Pathname_Pattern

           ftam.private  private
               Boolean

           ftam.private_use  private-use
               Unsigned 32-bit integer
               ftam.Private_Use_Attribute

           ftam.processing_mode  processing-mode
               Byte array
               ftam.T_processing_mode

           ftam.proposed  proposed
               Unsigned 32-bit integer
               ftam.Contents_Type_Attribute

           ftam.protocol_Version  protocol-Version
               Byte array
               ftam.Protocol_Version

           ftam.random-Order  random-Order
               Boolean

           ftam.read  read
               Signed 32-bit integer
               ftam.Lock

           ftam.read-Child-objects  read-Child-objects
               Boolean

           ftam.read-Object-availability  read-Object-availability
               Boolean

           ftam.read-Object-size  read-Object-size
               Boolean

           ftam.read-Object-type  read-Object-type
               Boolean

           ftam.read-access-control  read-access-control
               Boolean

           ftam.read-attribute  read-attribute
               Boolean

           ftam.read-contents-type  read-contents-type
               Boolean

           ftam.read-date-and-time-of-creation  read-date-and-time-of-creation
               Boolean

           ftam.read-date-and-time-of-last-attribute-modification  read-date-and-time-of-last-attribute-modification
               Boolean

           ftam.read-date-and-time-of-last-modification  read-date-and-time-of-last-modification
               Boolean

           ftam.read-date-and-time-of-last-read-access  read-date-and-time-of-last-read-access
               Boolean

           ftam.read-future-Object-size  read-future-Object-size
               Boolean

           ftam.read-identity-of-creator  read-identity-of-creator
               Boolean

           ftam.read-identity-of-last-attribute-modifier  read-identity-of-last-attribute-modifier
               Boolean

           ftam.read-identity-of-last-modifier  read-identity-of-last-modifier
               Boolean

           ftam.read-identity-of-last-reader  read-identity-of-last-reader
               Boolean

           ftam.read-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
               ftam.Lock

           ftam.read_attribute_password  read-attribute-password
               Unsigned 32-bit integer
               ftam.Password

           ftam.read_password  read-password
               Unsigned 32-bit integer
               ftam.Password

           ftam.recovefy_Point  recovefy-Point
               Signed 32-bit integer
               ftam.INTEGER

           ftam.recovery  recovery
               Boolean

           ftam.recovery_mode  recovery-mode
               Signed 32-bit integer
               ftam.T_request_recovery_mode

           ftam.recovety_Point  recovety-Point
               Signed 32-bit integer
               ftam.INTEGER

           ftam.referent_indicator  referent-indicator
               Boolean
               ftam.Referent_Indicator

           ftam.relational_camparision  relational-camparision
               Byte array
               ftam.Equality_Comparision

           ftam.relational_comparision  relational-comparision
               Byte array
               ftam.Relational_Comparision

           ftam.relative  relative
               Signed 32-bit integer
               ftam.T_relative

           ftam.remove_contexts  remove-contexts
               Unsigned 32-bit integer
               ftam.SET_OF_Abstract_Syntax_Name

           ftam.replace  replace
               Signed 32-bit integer
               ftam.Lock

           ftam.replace_password  replace-password
               Unsigned 32-bit integer
               ftam.Password

           ftam.request_Operation_result  request-Operation-result
               Signed 32-bit integer
               ftam.Request_Operation_Result

           ftam.request_type  request-type
               Signed 32-bit integer
               ftam.Request_Type

           ftam.requested_access  requested-access
               Byte array
               ftam.Access_Request

           ftam.reset  reset
               Boolean
               ftam.BOOLEAN

           ftam.resource_identifier  resource-identifier
               String
               ftam.GraphicString

           ftam.restart-data-transfer  restart-data-transfer
               Boolean

           ftam.retrieval_scope  retrieval-scope
               Signed 32-bit integer
               ftam.T_retrieval_scope

           ftam.reverse-traversal  reverse-traversal
               Boolean

           ftam.root_directory  root-directory
               Unsigned 32-bit integer
               ftam.Pathname_Attribute

           ftam.scope  scope
               Unsigned 32-bit integer
               ftam.Scope

           ftam.security  security
               Boolean

           ftam.service_class  service-class
               Byte array
               ftam.Service_Class

           ftam.shared  shared
               Boolean

           ftam.shared_ASE_infonnation  shared-ASE-infonnation
               No value
               ftam.Shared_ASE_Information

           ftam.shared_ASE_information  shared-ASE-information
               No value
               ftam.Shared_ASE_Information

           ftam.significance_bitstring  significance-bitstring
               Byte array
               ftam.BIT_STRING

           ftam.single_name  single-name
               No value
               ftam.Node_Name

           ftam.state_result  state-result
               Signed 32-bit integer
               ftam.State_Result

           ftam.storage  storage
               Boolean

           ftam.storage_account  storage-account
               Unsigned 32-bit integer
               ftam.Account_Attribute

           ftam.storage_account_Pattern  storage-account-Pattern
               No value
               ftam.String_Pattern

           ftam.string_match  string-match
               No value
               ftam.String_Pattern

           ftam.string_value  string-value
               Unsigned 32-bit integer
               ftam.T_string_value

           ftam.string_value_item  string-value item
               Unsigned 32-bit integer
               ftam.T_string_value_item

           ftam.substring_match  substring-match
               String
               ftam.GraphicString

           ftam.success_Object_count  success-Object-count
               Signed 32-bit integer
               ftam.INTEGER

           ftam.success_Object_names  success-Object-names
               Unsigned 32-bit integer
               ftam.SEQUENCE_OF_Pathname

           ftam.suggested_delay  suggested-delay
               Signed 32-bit integer
               ftam.INTEGER

           ftam.target_Object  target-Object
               Unsigned 32-bit integer
               ftam.Pathname_Attribute

           ftam.target_object  target-object
               Unsigned 32-bit integer
               ftam.Pathname_Attribute

           ftam.threshold  threshold
               Signed 32-bit integer
               ftam.INTEGER

           ftam.time_and_date_value  time-and-date-value
               String
               ftam.GeneralizedTime

           ftam.transfer-and-management-class  transfer-and-management-class
               Boolean

           ftam.transfer-class  transfer-class
               Boolean

           ftam.transfer_number  transfer-number
               Signed 32-bit integer
               ftam.INTEGER

           ftam.transfer_window  transfer-window
               Signed 32-bit integer
               ftam.INTEGER

           ftam.traversal  traversal
               Boolean

           ftam.unconstrained-class  unconstrained-class
               Boolean

           ftam.unknown  unknown
               No value
               ftam.NULL

           ftam.unstructured_binary  ISO FTAM unstructured binary
               Byte array
               ISO FTAM unstructured binary

           ftam.unstructured_text  ISO FTAM unstructured text
               String
               ISO FTAM unstructured text

           ftam.version-1  version-1
               Boolean

           ftam.version-2  version-2
               Boolean

           ftam.write  write
               Boolean

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

   ISO 8650-1 OSI Association Control Service (acse)
           acse.ASOI_tag_item  ASOI-tag item
               No value
               acse.ASOI_tag_item

           acse.ASO_context_name  ASO-context-name
               Object Identifier
               acse.ASO_context_name

           acse.Context_list_item  Context-list item
               No value
               acse.Context_list_item

           acse.Default_Context_List_item  Default-Context-List item
               No value
               acse.Default_Context_List_item

           acse.EXTERNALt  Association-data
               No value
               acse.EXTERNALt

           acse.P_context_result_list_item  P-context-result-list item
               No value
               acse.P_context_result_list_item

           acse.TransferSyntaxName  TransferSyntaxName
               Object Identifier
               acse.TransferSyntaxName

           acse.aSO-context-negotiation  aSO-context-negotiation
               Boolean

           acse.aSO_context_name  aSO-context-name
               Object Identifier
               acse.T_AARQ_aSO_context_name

           acse.aSO_context_name_list  aSO-context-name-list
               Unsigned 32-bit integer
               acse.ASO_context_name_list

           acse.a_user_data  a-user-data
               Unsigned 32-bit integer
               acse.User_Data

           acse.aare  aare
               No value
               acse.AARE_apdu

           acse.aarq  aarq
               No value
               acse.AARQ_apdu

           acse.abort_diagnostic  abort-diagnostic
               Unsigned 32-bit integer
               acse.ABRT_diagnostic

           acse.abort_source  abort-source
               Unsigned 32-bit integer
               acse.ABRT_source

           acse.abrt  abrt
               No value
               acse.ABRT_apdu

           acse.abstract_syntax  abstract-syntax
               Object Identifier
               acse.Abstract_syntax_name

           acse.abstract_syntax_name  abstract-syntax-name
               Object Identifier
               acse.Abstract_syntax_name

           acse.acrp  acrp
               No value
               acse.ACRP_apdu

           acse.acrq  acrq
               No value
               acse.ACRQ_apdu

           acse.acse_service_provider  acse-service-provider
               Unsigned 32-bit integer
               acse.T_acse_service_provider

           acse.acse_service_user  acse-service-user
               Unsigned 32-bit integer
               acse.T_acse_service_user

           acse.adt  adt
               No value
               acse.A_DT_apdu

           acse.ae_title_form1  ae-title-form1
               Unsigned 32-bit integer
               acse.AE_title_form1

           acse.ae_title_form2  ae-title-form2
               Object Identifier
               acse.AE_title_form2

           acse.ap_title_form1  ap-title-form1
               Unsigned 32-bit integer
               acse.AP_title_form1

           acse.ap_title_form2  ap-title-form2
               Object Identifier
               acse.AP_title_form2

           acse.ap_title_form3  ap-title-form3
               String
               acse.AP_title_form3

           acse.arbitrary  arbitrary
               Byte array
               acse.BIT_STRING

           acse.aso_qualifier  aso-qualifier
               Unsigned 32-bit integer
               acse.ASO_qualifier

           acse.aso_qualifier_form1  aso-qualifier-form1
               Unsigned 32-bit integer
               acse.ASO_qualifier_form1

           acse.aso_qualifier_form2  aso-qualifier-form2
               Signed 32-bit integer
               acse.ASO_qualifier_form2

           acse.aso_qualifier_form3  aso-qualifier-form3
               String
               acse.ASO_qualifier_form3

           acse.aso_qualifier_form_any_octets  aso-qualifier-form-any-octets
               Byte array
               acse.ASO_qualifier_form_octets

           acse.asoi_identifier  asoi-identifier
               Unsigned 32-bit integer
               acse.ASOI_identifier

           acse.authentication  authentication
               Boolean

           acse.bitstring  bitstring
               Byte array
               acse.BIT_STRING

           acse.called_AE_invocation_identifier  called-AE-invocation-identifier
               Signed 32-bit integer
               acse.AE_invocation_identifier

           acse.called_AE_qualifier  called-AE-qualifier
               Unsigned 32-bit integer
               acse.AE_qualifier

           acse.called_AP_invocation_identifier  called-AP-invocation-identifier
               Signed 32-bit integer
               acse.AP_invocation_identifier

           acse.called_AP_title  called-AP-title
               Unsigned 32-bit integer
               acse.AP_title

           acse.called_asoi_tag  called-asoi-tag
               Unsigned 32-bit integer
               acse.ASOI_tag

           acse.calling_AE_invocation_identifier  calling-AE-invocation-identifier
               Signed 32-bit integer
               acse.AE_invocation_identifier

           acse.calling_AE_qualifier  calling-AE-qualifier
               Unsigned 32-bit integer
               acse.AE_qualifier

           acse.calling_AP_invocation_identifier  calling-AP-invocation-identifier
               Signed 32-bit integer
               acse.AP_invocation_identifier

           acse.calling_AP_title  calling-AP-title
               Unsigned 32-bit integer
               acse.AP_title

           acse.calling_asoi_tag  calling-asoi-tag
               Unsigned 32-bit integer
               acse.ASOI_tag

           acse.calling_authentication_value  calling-authentication-value
               Unsigned 32-bit integer
               acse.Authentication_value

           acse.charstring  charstring
               String
               acse.GraphicString

           acse.concrete_syntax_name  concrete-syntax-name
               Object Identifier
               acse.Concrete_syntax_name

           acse.context_list  context-list
               Unsigned 32-bit integer
               acse.Context_list

           acse.data_value_descriptor  data-value-descriptor
               String
               acse.ObjectDescriptor

           acse.default_contact_list  default-contact-list
               Unsigned 32-bit integer
               acse.Default_Context_List

           acse.direct_reference  direct-reference
               Object Identifier
               acse.T_direct_reference

           acse.encoding  encoding
               Unsigned 32-bit integer
               acse.T_encoding

           acse.external  external
               No value
               acse.EXTERNALt

           acse.fully_encoded_data  fully-encoded-data
               No value
               acse.PDV_list

           acse.higher-level-association  higher-level-association
               Boolean

           acse.identifier  identifier
               Unsigned 32-bit integer
               acse.ASOI_identifier

           acse.implementation_information  implementation-information
               String
               acse.Implementation_data

           acse.indirect_reference  indirect-reference
               Signed 32-bit integer
               acse.T_indirect_reference

           acse.mechanism_name  mechanism-name
               Object Identifier
               acse.Mechanism_name

           acse.nested-association  nested-association
               Boolean

           acse.octet_aligned  octet-aligned
               Byte array
               acse.T_octet_aligned

           acse.other  other
               No value
               acse.Authentication_value_other

           acse.other_mechanism_name  other-mechanism-name
               Object Identifier
               acse.T_other_mechanism_name

           acse.other_mechanism_value  other-mechanism-value
               No value
               acse.T_other_mechanism_value

           acse.p_context_definition_list  p-context-definition-list
               Unsigned 32-bit integer
               acse.Syntactic_context_list

           acse.p_context_result_list  p-context-result-list
               Unsigned 32-bit integer
               acse.P_context_result_list

           acse.pci  pci
               Signed 32-bit integer
               acse.Presentation_context_identifier

           acse.presentation_context_identifier  presentation-context-identifier
               Signed 32-bit integer
               acse.Presentation_context_identifier

           acse.presentation_data_values  presentation-data-values
               Unsigned 32-bit integer
               acse.T_presentation_data_values

           acse.protocol_version  protocol-version
               Byte array
               acse.T_AARQ_protocol_version

           acse.provider_reason  provider-reason
               Signed 32-bit integer
               acse.T_provider_reason

           acse.qualifier  qualifier
               Unsigned 32-bit integer
               acse.ASO_qualifier

           acse.reason  reason
               Signed 32-bit integer
               acse.Release_request_reason

           acse.responder_acse_requirements  responder-acse-requirements
               Byte array
               acse.ACSE_requirements

           acse.responding_AE_invocation_identifier  responding-AE-invocation-identifier
               Signed 32-bit integer
               acse.AE_invocation_identifier

           acse.responding_AE_qualifier  responding-AE-qualifier
               Unsigned 32-bit integer
               acse.AE_qualifier

           acse.responding_AP_invocation_identifier  responding-AP-invocation-identifier
               Signed 32-bit integer
               acse.AP_invocation_identifier

           acse.responding_AP_title  responding-AP-title
               Unsigned 32-bit integer
               acse.AP_title

           acse.responding_authentication_value  responding-authentication-value
               Unsigned 32-bit integer
               acse.Authentication_value

           acse.result  result
               Unsigned 32-bit integer
               acse.Associate_result

           acse.result_source_diagnostic  result-source-diagnostic
               Unsigned 32-bit integer
               acse.Associate_source_diagnostic

           acse.rlre  rlre
               No value
               acse.RLRE_apdu

           acse.rlrq  rlrq
               No value
               acse.RLRQ_apdu

           acse.sender_acse_requirements  sender-acse-requirements
               Byte array
               acse.ACSE_requirements

           acse.simple_ASN1_type  simple-ASN1-type
               No value
               acse.T_simple_ASN1_type

           acse.simply_encoded_data  simply-encoded-data
               Byte array
               acse.Simply_encoded_data

           acse.single_ASN1_type  single-ASN1-type
               No value
               acse.T_single_ASN1_type

           acse.transfer_syntax_name  transfer-syntax-name
               Object Identifier
               acse.TransferSyntaxName

           acse.transfer_syntaxes  transfer-syntaxes
               Unsigned 32-bit integer
               acse.SEQUENCE_OF_TransferSyntaxName

           acse.user_information  user-information
               Unsigned 32-bit integer
               acse.Association_data

           acse.version1  version1
               Boolean

   ISO 8823 OSI Presentation Protocol (pres)
           pres.Context_list_item  Context-list item
               No value
               pres.Context_list_item

           pres.PDV_list  PDV-list
               No value
               pres.PDV_list

           pres.Presentation_context_deletion_result_list_item  Presentation-context-deletion-result-list item
               Signed 32-bit integer
               pres.Presentation_context_deletion_result_list_item

           pres.Presentation_context_identifier  Presentation-context-identifier
               Signed 32-bit integer
               pres.Presentation_context_identifier

           pres.Presentation_context_identifier_list_item  Presentation-context-identifier-list item
               No value
               pres.Presentation_context_identifier_list_item

           pres.Result_list_item  Result-list item
               No value
               pres.Result_list_item

           pres.Transfer_syntax_name  Transfer-syntax-name
               Object Identifier
               pres.Transfer_syntax_name

           pres.Typed_data_type  Typed data type
               Unsigned 32-bit integer

           pres.aborttype  Abort type
               Unsigned 32-bit integer

           pres.abstract_syntax_name  abstract-syntax-name
               Object Identifier
               pres.Abstract_syntax_name

           pres.acPPDU  acPPDU
               No value
               pres.AC_PPDU

           pres.acaPPDU  acaPPDU
               No value
               pres.ACA_PPDU

           pres.activity-management  activity-management
               Boolean

           pres.arbitrary  arbitrary
               Byte array
               pres.BIT_STRING

           pres.arp_ppdu  arp-ppdu
               No value
               pres.ARP_PPDU

           pres.aru_ppdu  aru-ppdu
               Unsigned 32-bit integer
               pres.ARU_PPDU

           pres.called_presentation_selector  called-presentation-selector
               Byte array
               pres.Called_presentation_selector

           pres.calling_presentation_selector  calling-presentation-selector
               Byte array
               pres.Calling_presentation_selector

           pres.capability-data  capability-data
               Boolean

           pres.context-management  context-management
               Boolean

           pres.cpapdu  CPA-PPDU
               No value

           pres.cprtype  CPR-PPDU
               Unsigned 32-bit integer

           pres.cptype  CP-type
               No value

           pres.data-separation  data-separation
               Boolean

           pres.default_context_name  default-context-name
               No value
               pres.Default_context_name

           pres.default_context_result  default-context-result
               Signed 32-bit integer
               pres.Default_context_result

           pres.duplex  duplex
               Boolean

           pres.event_identifier  event-identifier
               Signed 32-bit integer
               pres.Event_identifier

           pres.exceptions  exceptions
               Boolean

           pres.expedited-data  expedited-data
               Boolean

           pres.extensions  extensions
               No value
               pres.T_extensions

           pres.fully_encoded_data  fully-encoded-data
               Unsigned 32-bit integer
               pres.Fully_encoded_data

           pres.half-duplex  half-duplex
               Boolean

           pres.initiators_nominated_context  initiators-nominated-context
               Signed 32-bit integer
               pres.Presentation_context_identifier

           pres.major-synchronize  major-synchronize
               Boolean

           pres.minor-synchronize  minor-synchronize
               Boolean

           pres.mode_selector  mode-selector
               No value
               pres.Mode_selector

           pres.mode_value  mode-value
               Signed 32-bit integer
               pres.T_mode_value

           pres.negotiated-release  negotiated-release
               Boolean

           pres.nominated-context  nominated-context
               Boolean

           pres.normal_mode_parameters  normal-mode-parameters
               No value
               pres.T_normal_mode_parameters

           pres.octet_aligned  octet-aligned
               Byte array
               pres.T_octet_aligned

           pres.packed-encoding-rules  packed-encoding-rules
               Boolean

           pres.presentation_context_addition_list  presentation-context-addition-list
               Unsigned 32-bit integer
               pres.Presentation_context_addition_list

           pres.presentation_context_addition_result_list  presentation-context-addition-result-list
               Unsigned 32-bit integer
               pres.Presentation_context_addition_result_list

           pres.presentation_context_definition_list  presentation-context-definition-list
               Unsigned 32-bit integer
               pres.Presentation_context_definition_list

           pres.presentation_context_definition_result_list  presentation-context-definition-result-list
               Unsigned 32-bit integer
               pres.Presentation_context_definition_result_list

           pres.presentation_context_deletion_list  presentation-context-deletion-list
               Unsigned 32-bit integer
               pres.Presentation_context_deletion_list

           pres.presentation_context_deletion_result_list  presentation-context-deletion-result-list
               Unsigned 32-bit integer
               pres.Presentation_context_deletion_result_list

           pres.presentation_context_identifier  presentation-context-identifier
               Signed 32-bit integer
               pres.Presentation_context_identifier

           pres.presentation_context_identifier_list  presentation-context-identifier-list
               Unsigned 32-bit integer
               pres.Presentation_context_identifier_list

           pres.presentation_data_values  presentation-data-values
               Unsigned 32-bit integer
               pres.T_presentation_data_values

           pres.presentation_requirements  presentation-requirements
               Byte array
               pres.Presentation_requirements

           pres.protocol_options  protocol-options
               Byte array
               pres.Protocol_options

           pres.protocol_version  protocol-version
               Byte array
               pres.Protocol_version

           pres.provider_reason  provider-reason
               Signed 32-bit integer
               pres.Provider_reason

           pres.responders_nominated_context  responders-nominated-context
               Signed 32-bit integer
               pres.Presentation_context_identifier

           pres.responding_presentation_selector  responding-presentation-selector
               Byte array
               pres.Responding_presentation_selector

           pres.restoration  restoration
               Boolean

           pres.result  result
               Signed 32-bit integer
               pres.Result

           pres.resynchronize  resynchronize
               Boolean

           pres.short-encoding  short-encoding
               Boolean

           pres.simply_encoded_data  simply-encoded-data
               Byte array
               pres.Simply_encoded_data

           pres.single_ASN1_type  single-ASN1-type
               No value
               pres.T_single_ASN1_type

           pres.symmetric-synchronize  symmetric-synchronize
               Boolean

           pres.transfer_syntax_name  transfer-syntax-name
               Object Identifier
               pres.Transfer_syntax_name

           pres.transfer_syntax_name_list  transfer-syntax-name-list
               Unsigned 32-bit integer
               pres.SEQUENCE_OF_Transfer_syntax_name

           pres.ttdPPDU  ttdPPDU
               Unsigned 32-bit integer
               pres.User_data

           pres.typed-data  typed-data
               Boolean

           pres.user_data  user-data
               Unsigned 32-bit integer
               pres.User_data

           pres.user_session_requirements  user-session-requirements
               Byte array
               pres.User_session_requirements

           pres.version-1  version-1
               Boolean

           pres.x400_mode_parameters  x400-mode-parameters
               No value
               rtse.RTORJapdu

           pres.x410_mode_parameters  x410-mode-parameters
               No value
               rtse.RTORQapdu

   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/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.cc  Continuity Counter
               Unsigned 32-bit integer

           mp2t.cc.drop  Continuity Counter Drops
               No value

           mp2t.header  Header
               Unsigned 32-bit integer

           mp2t.malformed_payload  Malformed Payload
               Byte array

           mp2t.payload  Payload
               Byte array

           mp2t.pid  PID
               Unsigned 32-bit integer

           mp2t.pusi  Payload Unit Start Indicator
               Unsigned 32-bit integer

           mp2t.sync_byte  Sync Byte
               Unsigned 32-bit integer

           mp2t.tei  Transport Error Indicator
               Unsigned 32-bit integer

           mp2t.tp  Transport Priority
               Unsigned 32-bit integer

           mp2t.tsc  Transport Scrambling Control
               Unsigned 32-bit integer

   ISUP Thin Protocol (isup_thin)
           isup_thin.count  Message length (counted according to bit 0) including the Message Header
               Unsigned 16-bit integer
               Message length

           isup_thin.count.type  Count Type
               Unsigned 8-bit integer
               Count Type

           isup_thin.count.version  Version
               Unsigned 16-bit integer
               Version

           isup_thin.dpc  Destination Point Code
               Unsigned 32-bit integer
               Destination Point Code

           isup_thin.isup.message.length  ISUP message length
               Unsigned 16-bit integer
               ISUP message length

           isup_thin.message.class  Message Class
               Unsigned 8-bit integer
               Message Class

           isup_thin.message.type  Message Type
               Unsigned 8-bit integer
               Message Type

           isup_thin.mtp.message.name  Message Name Code
               Unsigned 8-bit integer
               Message Name

           isup_thin.oam.message.name  Message Name Code
               Unsigned 8-bit integer
               Message Name

           isup_thin.opc  Originating Point Code
               Unsigned 32-bit integer
               Originating Point Code

           isup_thin.priority  Priority
               Unsigned 8-bit integer
               Priority

           isup_thin.servind  Service Indicator
               Unsigned 8-bit integer
               Service Indicator

           isup_thin.sls  Signalling Link Selection
               Unsigned 8-bit integer
               Signalling Link Selection

           isup_thin.subservind  Sub Service Field (Network Indicator)
               Unsigned 8-bit integer
               Sub Service Field (Network Indicator)

   ISystemActivator 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

           gnm.AcceptableCircuitPackTypeList_item  AcceptableCircuitPackTypeList item
               String
               gnm.PrintableString

           gnm.AlarmSeverityAssignment  AlarmSeverityAssignment
               No value
               gnm.AlarmSeverityAssignment

           gnm.AlarmSeverityAssignmentList  AlarmSeverityAssignmentList
               Unsigned 32-bit integer
               gnm.AlarmSeverityAssignmentList

           gnm.AlarmStatus  AlarmStatus
               Unsigned 32-bit integer
               gnm.AlarmStatus

           gnm.Boolean  Boolean
               Boolean
               gnm.Boolean

           gnm.Bundle  Bundle
               No value
               gnm.Bundle

           gnm.ChannelNumber  ChannelNumber
               Signed 32-bit integer
               gnm.ChannelNumber

           gnm.CharacteristicInformation  CharacteristicInformation
               Object Identifier
               gnm.CharacteristicInformation

           gnm.CircuitDirectionality  CircuitDirectionality
               Unsigned 32-bit integer
               gnm.CircuitDirectionality

           gnm.CircuitPackType  CircuitPackType
               String
               gnm.CircuitPackType

           gnm.ConnectInformation  ConnectInformation
               Unsigned 32-bit integer
               gnm.ConnectInformation

           gnm.ConnectInformation_item  ConnectInformation item
               No value
               gnm.ConnectInformation_item

           gnm.ConnectivityPointer  ConnectivityPointer
               Unsigned 32-bit integer
               gnm.ConnectivityPointer

           gnm.Count  Count
               Signed 32-bit integer
               gnm.Count

           gnm.CrossConnectionName  CrossConnectionName
               String
               gnm.CrossConnectionName

           gnm.CrossConnectionObjectPointer  CrossConnectionObjectPointer
               Unsigned 32-bit integer
               gnm.CrossConnectionObjectPointer

           gnm.CurrentProblem  CurrentProblem
               No value
               gnm.CurrentProblem

           gnm.CurrentProblemList  CurrentProblemList
               Unsigned 32-bit integer
               gnm.CurrentProblemList

           gnm.Directionality  Directionality
               Unsigned 32-bit integer
               gnm.Directionality

           gnm.DisconnectResult  DisconnectResult
               Unsigned 32-bit integer
               gnm.DisconnectResult

           gnm.DisconnectResult_item  DisconnectResult item
               Unsigned 32-bit integer
               gnm.DisconnectResult_item

           gnm.DownstreamConnectivityPointer  DownstreamConnectivityPointer
               Unsigned 32-bit integer
               gnm.DownstreamConnectivityPointer

           gnm.EquipmentHolderAddress  EquipmentHolderAddress
               Unsigned 32-bit integer
               gnm.EquipmentHolderAddress

           gnm.EquipmentHolderAddress_item  EquipmentHolderAddress item
               String
               gnm.PrintableString

           gnm.EquipmentHolderType  EquipmentHolderType
               String
               gnm.EquipmentHolderType

           gnm.ExplicitTP  ExplicitTP
               Unsigned 32-bit integer
               gnm.ExplicitTP

           gnm.ExternalTime  ExternalTime
               String
               gnm.ExternalTime

           gnm.HolderStatus  HolderStatus
               Unsigned 32-bit integer
               gnm.HolderStatus

           gnm.InformationTransferCapabilities  InformationTransferCapabilities
               Unsigned 32-bit integer
               gnm.InformationTransferCapabilities

           gnm.ListOfCharacteristicInformation  ListOfCharacteristicInformation
               Unsigned 32-bit integer
               gnm.ListOfCharacteristicInformation

           gnm.MultipleConnections_item  MultipleConnections item
               Unsigned 32-bit integer
               gnm.MultipleConnections_item

           gnm.NameType  NameType
               Unsigned 32-bit integer
               gnm.NameType

           gnm.NumberOfCircuits  NumberOfCircuits
               Signed 32-bit integer
               gnm.NumberOfCircuits

           gnm.ObjectClass  ObjectClass
               Unsigned 32-bit integer
               cmip.ObjectClass

           gnm.ObjectInstance  ObjectInstance
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.ObjectList  ObjectList
               Unsigned 32-bit integer
               gnm.ObjectList

           gnm.PayloadLevel  PayloadLevel
               Object Identifier
               gnm.PayloadLevel

           gnm.Pointer  Pointer
               Unsigned 32-bit integer
               gnm.Pointer

           gnm.PointerOrNull  PointerOrNull
               Unsigned 32-bit integer
               gnm.PointerOrNull

           gnm.RelatedObjectInstance  RelatedObjectInstance
               Unsigned 32-bit integer
               gnm.RelatedObjectInstance

           gnm.Replaceable  Replaceable
               Unsigned 32-bit integer
               gnm.Replaceable

           gnm.SequenceOfObjectInstance  SequenceOfObjectInstance
               Unsigned 32-bit integer
               gnm.SequenceOfObjectInstance

           gnm.SerialNumber  SerialNumber
               String
               gnm.SerialNumber

           gnm.SignalRateAndMappingList_item  SignalRateAndMappingList item
               No value
               gnm.SignalRateAndMappingList_item

           gnm.SignalType  SignalType
               Unsigned 32-bit integer
               gnm.SignalType

           gnm.SignallingCapabilities  SignallingCapabilities
               Unsigned 32-bit integer
               gnm.SignallingCapabilities

           gnm.SubordinateCircuitPackSoftwareLoad  SubordinateCircuitPackSoftwareLoad
               Unsigned 32-bit integer
               gnm.SubordinateCircuitPackSoftwareLoad

           gnm.SupportableClientList  SupportableClientList
               Unsigned 32-bit integer
               gnm.SupportableClientList

           gnm.SupportedTOClasses  SupportedTOClasses
               Unsigned 32-bit integer
               gnm.SupportedTOClasses

           gnm.SupportedTOClasses_item  SupportedTOClasses item
               Object Identifier
               gnm.OBJECT_IDENTIFIER

           gnm.SystemTimingSource  SystemTimingSource
               No value
               gnm.SystemTimingSource

           gnm.ToTPPools_item  ToTPPools item
               No value
               gnm.ToTPPools_item

           gnm.ToTermSpecifier  ToTermSpecifier
               Unsigned 32-bit integer
               gnm.ToTermSpecifier

           gnm.TpsInGtpList  TpsInGtpList
               Unsigned 32-bit integer
               gnm.TpsInGtpList

           gnm.TransmissionCharacteristics  TransmissionCharacteristics
               Byte array
               gnm.TransmissionCharacteristics

           gnm.UserLabel  UserLabel
               String
               gnm.UserLabel

           gnm.VendorName  VendorName
               String
               gnm.VendorName

           gnm.Version  Version
               String
               gnm.Version

           gnm.additionalInfo  additionalInfo
               Unsigned 32-bit integer
               cmip.AdditionalInformation

           gnm.addleg  addleg
               No value
               gnm.AddLeg

           gnm.administrativeState  administrativeState
               Unsigned 32-bit integer
               cmip.AdministrativeState

           gnm.alarmStatus  alarmStatus
               Unsigned 32-bit integer
               gnm.AlarmStatus

           gnm.bidirectional  bidirectional
               Unsigned 32-bit integer
               gnm.ConnectionTypeBi

           gnm.broadcast  broadcast
               Unsigned 32-bit integer
               gnm.SET_OF_ObjectInstance

           gnm.broadcastConcatenated  broadcastConcatenated
               Unsigned 32-bit integer
               gnm.T_broadcastConcatenated

           gnm.broadcastConcatenated_item  broadcastConcatenated item
               Unsigned 32-bit integer
               gnm.SEQUENCE_OF_ObjectInstance

           gnm.bundle  bundle
               No value
               gnm.Bundle

           gnm.bundlingFactor  bundlingFactor
               Signed 32-bit integer
               gnm.INTEGER

           gnm.characteristicInfoType  characteristicInfoType
               Object Identifier
               gnm.CharacteristicInformation

           gnm.characteristicInformation  characteristicInformation
               Object Identifier
               gnm.CharacteristicInformation

           gnm.complex  complex
               Unsigned 32-bit integer
               gnm.SEQUENCE_OF_Bundle

           gnm.concatenated  concatenated
               Unsigned 32-bit integer
               gnm.SEQUENCE_OF_ObjectInstance

           gnm.connected  connected
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.dCME  dCME
               Boolean

           gnm.disconnected  disconnected
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.diverse  diverse
               No value
               gnm.T_diverse

           gnm.downstream  downstream
               Unsigned 32-bit integer
               gnm.SignalRateAndMappingList

           gnm.downstreamConnected  downstreamConnected
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.downstreamNotConnected  downstreamNotConnected
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.echoControl  echoControl
               Boolean

           gnm.explicitPToP  explicitPToP
               No value
               gnm.ExplicitPtoP

           gnm.explicitPtoMP  explicitPtoMP
               No value
               gnm.ExplicitPtoMP

           gnm.failed  failed
               Unsigned 32-bit integer
               gnm.Failed

           gnm.fromTp  fromTp
               Unsigned 32-bit integer
               gnm.ExplicitTP

           gnm.holderEmpty  holderEmpty
               No value
               gnm.NULL

           gnm.inTheAcceptableList  inTheAcceptableList
               String
               gnm.CircuitPackType

           gnm.incorrectInstances  incorrectInstances
               Unsigned 32-bit integer
               gnm.SET_OF_ObjectInstance

           gnm.integerValue  integerValue
               Signed 32-bit integer
               gnm.INTEGER

           gnm.itemType  itemType
               Unsigned 32-bit integer
               gnm.T_itemType

           gnm.legs  legs
               Unsigned 32-bit integer
               gnm.SET_OF_ToTermSpecifier

           gnm.listofTPs  listofTPs
               Unsigned 32-bit integer
               gnm.SEQUENCE_OF_ObjectInstance

           gnm.logicalProblem  logicalProblem
               No value
               gnm.LogicalProblem

           gnm.mappingList  mappingList
               Unsigned 32-bit integer
               gnm.MappingList

           gnm.mpCrossConnection  mpCrossConnection
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.mpXCon  mpXCon
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.multipleConnections  multipleConnections
               Unsigned 32-bit integer
               gnm.MultipleConnections

           gnm.name  name
               String
               gnm.CrossConnectionName

           gnm.namedCrossConnection  namedCrossConnection
               No value
               gnm.NamedCrossConnection

           gnm.none  none
               No value
               gnm.NULL

           gnm.notApplicable  notApplicable
               No value
               gnm.NULL

           gnm.notAvailable  notAvailable
               No value
               gnm.NULL

           gnm.notConnected  notConnected
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.notInTheAcceptableList  notInTheAcceptableList
               String
               gnm.CircuitPackType

           gnm.null  null
               No value
               gnm.NULL

           gnm.numberOfTPs  numberOfTPs
               Signed 32-bit integer
               gnm.INTEGER

           gnm.numericName  numericName
               Signed 32-bit integer
               gnm.INTEGER

           gnm.objectClass  objectClass
               Object Identifier
               gnm.OBJECT_IDENTIFIER

           gnm.oneTPorGTP  oneTPorGTP
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.pString  pString
               String
               gnm.GraphicString

           gnm.pointToMultipoint  pointToMultipoint
               No value
               gnm.PointToMultipoint

           gnm.pointToPoint  pointToPoint
               No value
               gnm.PointToPoint

           gnm.pointer  pointer
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.primaryTimingSource  primaryTimingSource
               No value
               gnm.SystemTiming

           gnm.problem  problem
               Unsigned 32-bit integer
               cmip.ProbableCause

           gnm.problemCause  problemCause
               Unsigned 32-bit integer
               gnm.ProblemCause

           gnm.ptoMPools  ptoMPools
               No value
               gnm.PtoMPools

           gnm.ptoTpPool  ptoTpPool
               No value
               gnm.PtoTPPool

           gnm.redline  redline
               Boolean
               gnm.Boolean

           gnm.relatedObject  relatedObject
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.resourceProblem  resourceProblem
               Unsigned 32-bit integer
               gnm.ResourceProblem

           gnm.satellite  satellite
               Boolean

           gnm.secondaryTimingSource  secondaryTimingSource
               No value
               gnm.SystemTiming

           gnm.severityAssignedNonServiceAffecting  severityAssignedNonServiceAffecting
               Unsigned 32-bit integer
               gnm.AlarmSeverityCode

           gnm.severityAssignedServiceAffecting  severityAssignedServiceAffecting
               Unsigned 32-bit integer
               gnm.AlarmSeverityCode

           gnm.severityAssignedServiceIndependent  severityAssignedServiceIndependent
               Unsigned 32-bit integer
               gnm.AlarmSeverityCode

           gnm.signalRate  signalRate
               Unsigned 32-bit integer
               gnm.SignalRate

           gnm.simple  simple
               Object Identifier
               gnm.CharacteristicInformation

           gnm.single  single
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.softwareIdentifiers  softwareIdentifiers
               Unsigned 32-bit integer
               gnm.T_softwareIdentifiers

           gnm.softwareIdentifiers_item  softwareIdentifiers item
               String
               gnm.PrintableString

           gnm.softwareInstances  softwareInstances
               Unsigned 32-bit integer
               gnm.SEQUENCE_OF_ObjectInstance

           gnm.sourceID  sourceID
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.sourceType  sourceType
               Unsigned 32-bit integer
               gnm.T_sourceType

           gnm.toPool  toPool
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.toTPPools  toTPPools
               Unsigned 32-bit integer
               gnm.ToTPPools

           gnm.toTPs  toTPs
               Unsigned 32-bit integer
               gnm.SET_OF_ExplicitTP

           gnm.toTp  toTp
               Unsigned 32-bit integer
               gnm.ExplicitTP

           gnm.toTpOrGTP  toTpOrGTP
               Unsigned 32-bit integer
               gnm.ExplicitTP

           gnm.toTpPool  toTpPool
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.toTps  toTps
               Unsigned 32-bit integer
               gnm.T_toTps

           gnm.toTps_item  toTps item
               No value
               gnm.T_toTps_item

           gnm.tp  tp
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.tpPoolId  tpPoolId
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.unidirectional  unidirectional
               Unsigned 32-bit integer
               gnm.ConnectionType

           gnm.uniform  uniform
               Unsigned 32-bit integer
               gnm.SignalRateAndMappingList

           gnm.unknown  unknown
               No value
               gnm.NULL

           gnm.unknownType  unknownType
               No value
               gnm.NULL

           gnm.upStream  upStream
               Unsigned 32-bit integer
               gnm.SignalRateAndMappingList

           gnm.upstreamConnected  upstreamConnected
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.upstreamNotConnected  upstreamNotConnected
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.userLabel  userLabel
               String
               gnm.UserLabel

           gnm.wavelength  wavelength
               Signed 32-bit integer
               gnm.WaveLength

           gnm.xCon  xCon
               Unsigned 32-bit integer
               cmip.ObjectInstance

           gnm.xConnection  xConnection
               Unsigned 32-bit integer
               cmip.ObjectInstance

   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 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.src_ref  SRC-REF
               Unsigned 16-bit integer

   ITU-T Recommendation H.223 (h223)
           h223.al.fragment  H.223 AL-PDU Fragment
               Frame number
               H.223 AL-PDU Fragment

           h223.al.fragment.error  Defragmentation error
               Frame number
               Defragmentation error due to illegal fragments

           h223.al.fragment.multipletails  Multiple tail fragments found
               Boolean
               Several tails were found when defragmenting the packet

           h223.al.fragment.overlap  Fragment overlap
               Boolean
               Fragment overlaps with other fragments

           h223.al.fragment.overlap.conflict  Conflicting data in fragment overlap
               Boolean
               Overlapping fragments contained conflicting data

           h223.al.fragment.toolongfragment  Fragment too long
               Boolean
               Fragment contained data past end of packet

           h223.al.fragments  H.223 AL-PDU Fragments
               No value
               H.223 AL-PDU Fragments

           h223.al.payload  H.223 AL Payload
               No value
               H.223 AL-PDU Payload

           h223.al.reassembled_in  AL-PDU fragment, reassembled in frame
               Frame number
               This H.223 AL-PDU packet is reassembled in this frame

           h223.al1  H.223 AL1
               No value
               H.223 AL-PDU using AL1

           h223.al1.framed  H.223 AL1 framing
               Boolean

           h223.al2  H.223 AL2
               Boolean
               H.223 AL-PDU using AL2

           h223.al2.crc  CRC
               Unsigned 8-bit integer
               CRC

           h223.al2.crc_bad  Bad CRC
               Boolean

           h223.al2.seqno  Sequence Number
               Unsigned 8-bit integer
               H.223 AL2 sequence number

           h223.mux  H.223 MUX-PDU
               No value
               H.223 MUX-PDU

           h223.mux.correctedhdr  Corrected value
               Unsigned 24-bit integer
               Corrected header bytes

           h223.mux.deactivated  Deactivated multiplex table entry
               No value
               mpl refers to an entry in the multiplex table which is not active

           h223.mux.extra  Extraneous data
               No value
               data beyond mpl

           h223.mux.fragment  H.223 MUX-PDU Fragment
               Frame number
               H.223 MUX-PDU Fragment

           h223.mux.fragment.error  Defragmentation error
               Frame number
               Defragmentation error due to illegal fragments

           h223.mux.fragment.multipletails  Multiple tail fragments found
               Boolean
               Several tails were found when defragmenting the packet

           h223.mux.fragment.overlap  Fragment overlap
               Boolean
               Fragment overlaps with other fragments

           h223.mux.fragment.overlap.conflict  Conflicting data in fragment overlap
               Boolean
               Overlapping fragments contained conflicting data

           h223.mux.fragment.toolongfragment  Fragment too long
               Boolean
               Fragment contained data past end of packet

           h223.mux.fragments  H.223 MUX-PDU Fragments
               No value
               H.223 MUX-PDU Fragments

           h223.mux.hdlc  HDLC flag
               Unsigned 16-bit integer
               framing flag

           h223.mux.header  Header
               No value
               H.223 MUX header

           h223.mux.mc  Multiplex Code
               Unsigned 8-bit integer
               H.223 MUX multiplex code

           h223.mux.mpl  Multiplex Payload Length
               Unsigned 8-bit integer
               H.223 MUX multiplex Payload Length

           h223.mux.rawhdr  Raw value
               Unsigned 24-bit integer
               Raw header bytes

           h223.mux.reassembled_in  MUX-PDU fragment, reassembled in frame
               Frame number
               This H.223 MUX-PDU packet is reassembled in this frame

           h223.mux.stuffing  H.223 stuffing PDU
               No value
               Empty PDU used for stuffing when no data available

           h223.mux.vc  H.223 virtual circuit
               Unsigned 16-bit integer
               H.223 Virtual Circuit

           h223.non-h223  Non-H.223 data
               No value
               Initial data in stream, not a PDU

           h223.sequenced_al2  H.223 sequenced AL2
               No value
               H.223 AL-PDU using AL2 with sequence numbers

           h223.unsequenced_al2  H.223 unsequenced AL2
               No value
               H.223 AL-PDU using AL2 without sequence numbers

   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
               Extra picture header

           h263P.p  P
               Boolean
               Indicates (GOB/Slice) start or (EOS or EOSBS)

           h263P.payload  H.263 RFC4629 payload
               No value
               The actual H.263 RFC4629 data

           h263P.pebit  PEBIT
               Unsigned 16-bit integer
               number of bits that shall be ignored in the last byte of the picture header

           h263P.plen  PLEN
               Unsigned 16-bit integer
               Length, in bytes, of the extra picture header

           h263P.rr  Reserved
               Unsigned 16-bit integer
               Reserved SHALL be zero

           h263P.s  S
               Unsigned 8-bit integer
               Indicates that the packet content is for a sync frame

           h263P.tid  Thread ID
               Unsigned 8-bit integer
               Thread ID

           h263P.tr  H.263 Temporal Reference
               Unsigned 16-bit integer
               Temporal Reference, TR

           h263P.trun  Trun
               Unsigned 8-bit integer
               Monotonically increasing (modulo 16) 4-bit number counting the packet number within each thread

           h263P.v  V
               Boolean
               presence of Video Redundancy Coding (VRC) field

   InMon sFlow (sflow)
           sflow.agent  agent address
               IPv4 address
               sFlow Agent IP address

           sflow.agent.addresstype  address type
               Unsigned 32-bit integer
               sFlow datagram version

           sflow.agent.v6  agent address
               IPv6 address
               sFlow Agent IPv6 address

           sflow.as  AS Router
               Unsigned 32-bit integer
               Autonomous System of Router

           sflow.communityEntries  Gateway Communities
               Unsigned 32-bit integer
               Gateway Communities

           sflow.cs.eth.dot3StatsAlignmentErrors  dot3StatsAlignmentErrors
               Unsigned 32-bit integer

           sflow.cs.eth.dot3StatsCarrierSenseErrors  dot3StatsCarrierSenseErrors
               Unsigned 32-bit integer

           sflow.cs.eth.dot3StatsDeferredTransmissions  dot3StatsDeferredTransmissions
               Unsigned 32-bit integer

           sflow.cs.eth.dot3StatsExcessiveCollisions  dot3StatsExcessiveCollisions
               Unsigned 32-bit integer

           sflow.cs.eth.dot3StatsFCSErrors  dot3StatsFCSErrors
               Unsigned 32-bit integer

           sflow.cs.eth.dot3StatsFrameTooLongs  dot3StatsFrameTooLongs
               Unsigned 32-bit integer

           sflow.cs.eth.dot3StatsInternalMacReceiveErrors  dot3StatsInternalMacReceiveErrors
               Unsigned 32-bit integer

           sflow.cs.eth.dot3StatsInternalMacTransmitErrors  dot3StatsInternalMacTransmitErrors
               Unsigned 32-bit integer

           sflow.cs.eth.dot3StatsLateCollisions  dot3StatsLateCollisions
               Unsigned 32-bit integer

           sflow.cs.eth.dot3StatsMultipleCollisionFrames  dot3StatsMultipleCollisionFrames
               Unsigned 32-bit integer

           sflow.cs.eth.dot3StatsSQETestErrors  dot3StatsSQETestErrors
               Unsigned 32-bit integer

           sflow.cs.eth.dot3StatsSingleCollisionFrames  dot3StatsSingleCollisionFrames
               Unsigned 32-bit integer

           sflow.cs.eth.dot3StatsSymbolErrors  dot3StatsSymbolErrors
               Unsigned 32-bit integer

           sflow.cs.numrecords  Number of records
               Unsigned 32-bit integer
               Number of countersample records

           sflow.cs.recordlength  Recordlength
               Unsigned 32-bit integer

           sflow.cs.recordtype  Type of counters
               Unsigned 32-bit integer

           sflow.cs.samplinginterval  Sampling interval
               Unsigned 32-bit integer

           sflow.cs.seqno  Sequence number
               Unsigned 32-bit integer

           sflow.cs.sourceidindex  Source ID index
               Unsigned 24-bit integer

           sflow.cs.sourceidtype  Source ID type
               Unsigned 8-bit integer

           sflow.dstAS  AS Destination
               Unsigned 32-bit integer
               Autonomous System destination

           sflow.dstASentries  AS Destinations
               Unsigned 32-bit integer
               Autonomous System destinations

           sflow.dst_ipv4  Dst IP
               IPv4 address
               Destination IPv4 Address

           sflow.dst_ipv6  Dst IP
               IPv6 address
               Destination IPv6 Address

           sflow.dst_port  Dst Port
               Unsigned 32-bit integer
               Dst Port Number

           sflow.extended_information_type  Extended information type
               Unsigned 32-bit integer
               Type of extended information

           sflow.fs.ethernet.dstmac  Ethertype
               6-byte Hardware (MAC) Address
               Destination MAC address of sampled packet

           sflow.fs.ethernet.framelength  Framelength
               Unsigned 32-bit integer
               Total framelength of sampled packet

           sflow.fs.ethernet.srcmac  Ethertype
               6-byte Hardware (MAC) Address
               Source MAC address of sampled packet

           sflow.fs.ethernet.type  Ethertype
               Unsigned 32-bit integer
               Ethertype of sampled packet

           sflow.fs.ifindexin  Input interface index
               Unsigned 32-bit integer

           sflow.fs.ifindexout  Output interface index
               Unsigned 32-bit integer

           sflow.fs.multipleoutputs  Multiple outputs
               Boolean
               Output to more than one interface

           sflow.fs.numoutinterfaces  Number of interfaces
               Unsigned 32-bit integer
               Number of output interfaces

           sflow.fs.numrecords  Number of records
               Unsigned 32-bit integer
               Number of flowsample records

           sflow.fs.pool  Sample pool
               Unsigned 32-bit integer
               Total number of packets

           sflow.fs.rawheader  Header of sampled packet
               Byte array
               Data from sampled header

           sflow.fs.rawheader.framelength  Framelength
               Unsigned 32-bit integer
               Total framelength of sampled packet

           sflow.fs.rawheader.headerlength  Headerlength
               Unsigned 32-bit integer
               Bytes sampled in packet

           sflow.fs.rawheader.protocol  Header protocol
               Unsigned 32-bit integer
               Protocol of sampled header

           sflow.fs.rawheader.stripped  Stripped bytes
               Unsigned 32-bit integer
               Bytes stripped from packet

           sflow.fs.recordlength  Recordlength
               Unsigned 32-bit integer

           sflow.fs.recordtype  Sample type
               Unsigned 32-bit integer
               Type of flowsample

           sflow.fs.samplingrate  Sampling rate
               Unsigned 32-bit integer
               Sample 1 out of N packets

           sflow.fs.seqno  Sample sequence number
               Unsigned 32-bit integer

           sflow.fs.sourceidindex  Source ID index
               Unsigned 24-bit integer

           sflow.fs.sourceidtype  Source ID type
               Unsigned 8-bit integer

           sflow.ifdirection  Interface Direction
               Unsigned 32-bit integer
               Interface Direction

           sflow.ifinbcast  Input Broadcast Packets
               Unsigned 32-bit integer
               Interface Input Broadcast Packets

           sflow.ifindex  Interface index
               Unsigned 32-bit integer
               Interface Index

           sflow.ifindisc  Input Discarded Packets
               Unsigned 32-bit integer
               Interface Input Discarded Packets

           sflow.ifinerr  Input Errors
               Unsigned 32-bit integer
               Interface Input Errors

           sflow.ifinmcast  Input Multicast Packets
               Unsigned 32-bit integer
               Interface Input Multicast Packets

           sflow.ifinoct  Input Octets
               Unsigned 64-bit integer
               Interface Input Octets

           sflow.ifinucast  Input unicast packets
               Unsigned 32-bit integer
               Interface Input Unicast Packets

           sflow.ifinunk  Input Unknown Protocol Packets
               Unsigned 32-bit integer
               Interface Input Unknown Protocol Packets

           sflow.ifoutbcast  Output Broadcast Packets
               Unsigned 32-bit integer
               Interface Output Broadcast Packets

           sflow.ifoutdisc  Output Discarded Packets
               Unsigned 32-bit integer
               Interface Output Discarded Packets

           sflow.ifouterr  Output Errors
               Unsigned 32-bit integer
               Interface Output Errors

           sflow.ifoutmcast  Output Multicast Packets
               Unsigned 32-bit integer
               Interface Output Multicast Packets

           sflow.ifoutoct  Output Octets
               Unsigned 64-bit integer
               Interface Output Octets

           sflow.ifoutucast  Output unicast packets
               Unsigned 32-bit integer
               Interface Output Unicast Packets

           sflow.ifpromisc  Promiscuous Mode
               Unsigned 32-bit integer
               Interface Promiscuous Mode

           sflow.ifspeed  Interface Speed
               Unsigned 64-bit integer
               Interface Speed

           sflow.ifstatus.admin  If admin status
               Unsigned 32-bit integer
               Interface admin status bit

           sflow.ifstatus.oper  If oper status
               Unsigned 32-bit integer
               Interface operational status bit

           sflow.ifstatus.unused  If status (unused)
               Unsigned 32-bit integer
               Unused interface status bits

           sflow.iftype  Interface Type
               Unsigned 32-bit integer
               Interface Type

           sflow.ip_flags  TCP Flags
               Unsigned 32-bit integer
               TCP Flags

           sflow.ip_length  IP Packet Length
               Unsigned 32-bit integer
               Length of IP Packet excluding lower layer encapsulation

           sflow.ip_protocol  Protocol
               Unsigned 32-bit integer
               IP Protocol

           sflow.localpref  localpref
               Unsigned 32-bit integer
               Local preferences of AS route

           sflow.nexthop  Next hop
               IPv4 address
               Next hop address

           sflow.nexthop.dst_mask  Next hop destination mask
               Unsigned 32-bit integer
               Next hop destination mask bits

           sflow.nexthop.src_mask  Next hop source mask
               Unsigned 32-bit integer
               Next hop source mask bits

           sflow.numsamples  NumSamples
               Unsigned 32-bit integer
               Number of samples in sFlow datagram

           sflow.peerAS  AS Peer
               Unsigned 32-bit integer
               Autonomous System of Peer

           sflow.pri.in  Incoming 802.1p priority
               Unsigned 32-bit integer
               Incoming 802.1p priority

           sflow.pri.out  Outgoing 802.1p priority
               Unsigned 32-bit integer
               Outgoing 802.1p priority

           sflow.priority  Priority
               Unsigned 32-bit integer
               Priority

           sflow.sample.enterprise  sFlow sample type enterprise
               Unsigned 32-bit integer
               Enterprise of sFlow sample

           sflow.sample.enterprisetype  sFlow sample type
               Unsigned 32-bit integer
               Enterprisetype of sFlow sample

           sflow.sample.length  Sample length
               Unsigned 32-bit integer

           sflow.sample.type  sFlow sample type
               Unsigned 32-bit integer
               Type of sFlow sample

           sflow.sequence_number  Sequence number
               Unsigned 32-bit integer
               sFlow datagram sequence number

           sflow.srcAS  AS Source
               Unsigned 32-bit integer
               Autonomous System of Source

           sflow.src_ipv4  Src IP
               IPv4 address
               Source IPv4 Address

           sflow.src_ipv6  Src IP
               IPv6 address
               Source IPv6 Address

           sflow.src_port  Src Port
               Unsigned 32-bit integer
               Source Port Number

           sflow.sub_agent_id  Sub-agent ID
               Unsigned 32-bit integer
               sFlow sub-agent ID

           sflow.sysuptime  SysUptime
               Unsigned 32-bit integer
               System Uptime

           sflow.tos  ToS
               Unsigned 32-bit integer
               Type of Service

           sflow.version  datagram version
               Unsigned 32-bit integer
               sFlow datagram version

           sflow.vlan.in  Incoming 802.1Q VLAN
               Unsigned 32-bit integer
               Incoming VLAN ID

           sflow.vlan.out  Outgoing 802.1Q VLAN
               Unsigned 32-bit integer
               Outgoing VLAN ID

   InfiniBand (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.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

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

           inap.AlternativeIdentity  AlternativeIdentity
               Unsigned 32-bit integer
               inap.AlternativeIdentity

           inap.AnalyseInformationArg  AnalyseInformationArg
               No value
               inap.AnalyseInformationArg

           inap.AnalysedInformationArg  AnalysedInformationArg
               No value
               inap.AnalysedInformationArg

           inap.ApplyChargingArg  ApplyChargingArg
               No value
               inap.ApplyChargingArg

           inap.ApplyChargingReportArg  ApplyChargingReportArg
               Byte array
               inap.ApplyChargingReportArg

           inap.AssistRequestInstructionsArg  AssistRequestInstructionsArg
               No value
               inap.AssistRequestInstructionsArg

           inap.AuthorizeTerminationArg  AuthorizeTerminationArg
               No value
               inap.AuthorizeTerminationArg

           inap.BCSMEvent  BCSMEvent
               No value
               inap.BCSMEvent

           inap.CallFilteringArg  CallFilteringArg
               No value
               inap.CallFilteringArg

           inap.CallGapArg  CallGapArg
               No value
               inap.CallGapArg

           inap.CallInformationReportArg  CallInformationReportArg
               No value
               inap.CallInformationReportArg

           inap.CallInformationRequestArg  CallInformationRequestArg
               No value
               inap.CallInformationRequestArg

           inap.CalledPartyNumber  CalledPartyNumber
               Byte array
               inap.CalledPartyNumber

           inap.CancelArg  CancelArg
               Unsigned 32-bit integer
               inap.CancelArg

           inap.CancelStatusReportRequestArg  CancelStatusReportRequestArg
               No value
               inap.CancelStatusReportRequestArg

           inap.ChargingEvent  ChargingEvent
               No value
               inap.ChargingEvent

           inap.CollectInformationArg  CollectInformationArg
               No value
               inap.CollectInformationArg

           inap.CollectedInformationArg  CollectedInformationArg
               No value
               inap.CollectedInformationArg

           inap.ComponentType  ComponentType
               Unsigned 32-bit integer
               inap.ComponentType

           inap.ConnectArg  ConnectArg
               No value
               inap.ConnectArg

           inap.ConnectToResourceArg  ConnectToResourceArg
               No value
               inap.ConnectToResourceArg

           inap.ContinueWithArgumentArg  ContinueWithArgumentArg
               No value
               inap.ContinueWithArgumentArg

           inap.CounterAndValue  CounterAndValue
               No value
               inap.CounterAndValue

           inap.CreateCallSegmentAssociationArg  CreateCallSegmentAssociationArg
               No value
               inap.CreateCallSegmentAssociationArg

           inap.CreateCallSegmentAssociationResultArg  CreateCallSegmentAssociationResultArg
               No value
               inap.CreateCallSegmentAssociationResultArg

           inap.CreateOrRemoveTriggerDataArg  CreateOrRemoveTriggerDataArg
               No value
               inap.CreateOrRemoveTriggerDataArg

           inap.CreateOrRemoveTriggerDataResultArg  CreateOrRemoveTriggerDataResultArg
               No value
               inap.CreateOrRemoveTriggerDataResultArg

           inap.DisconnectForwardConnectionWithArgumentArg  DisconnectForwardConnectionWithArgumentArg
               No value
               inap.DisconnectForwardConnectionWithArgumentArg

           inap.DisconnectLegArg  DisconnectLegArg
               No value
               inap.DisconnectLegArg

           inap.EntityReleasedArg  EntityReleasedArg
               Unsigned 32-bit integer
               inap.EntityReleasedArg

           inap.Entry  Entry
               Unsigned 32-bit integer
               inap.Entry

           inap.EstablishTemporaryConnectionArg  EstablishTemporaryConnectionArg
               No value
               inap.EstablishTemporaryConnectionArg

           inap.EventNotificationChargingArg  EventNotificationChargingArg
               No value
               inap.EventNotificationChargingArg

           inap.EventReportBCSMArg  EventReportBCSMArg
               No value
               inap.EventReportBCSMArg

           inap.EventReportFacilityArg  EventReportFacilityArg
               No value
               inap.EventReportFacilityArg

           inap.ExtensionField  ExtensionField
               No value
               inap.ExtensionField

           inap.FacilitySelectedAndAvailableArg  FacilitySelectedAndAvailableArg
               No value
               inap.FacilitySelectedAndAvailableArg

           inap.FurnishChargingInformationArg  FurnishChargingInformationArg
               Byte array
               inap.FurnishChargingInformationArg

           inap.GenericNumber  GenericNumber
               Byte array
               inap.GenericNumber

           inap.HoldCallInNetworkArg  HoldCallInNetworkArg
               Unsigned 32-bit integer
               inap.HoldCallInNetworkArg

           inap.INprofile  INprofile
               No value
               inap.INprofile

           inap.InitialDPArg  InitialDPArg
               No value
               inap.InitialDPArg

           inap.InitiateCallAttemptArg  InitiateCallAttemptArg
               No value
               inap.InitiateCallAttemptArg

           inap.Integer4  Integer4
               Unsigned 32-bit integer
               inap.Integer4

           inap.InvokeId_present  InvokeId.present
               Signed 32-bit integer
               inap.InvokeId_present

           inap.ManageTriggerDataArg  ManageTriggerDataArg
               No value
               inap.ManageTriggerDataArg

           inap.ManageTriggerDataResultArg  ManageTriggerDataResultArg
               Unsigned 32-bit integer
               inap.ManageTriggerDataResultArg

           inap.MergeCallSegmentsArg  MergeCallSegmentsArg
               No value
               inap.MergeCallSegmentsArg

           inap.MessageReceivedArg  MessageReceivedArg
               No value
               inap.MessageReceivedArg

           inap.MidCallArg  MidCallArg
               No value
               inap.MidCallArg

           inap.MidCallControlInfo_item  MidCallControlInfo item
               No value
               inap.MidCallControlInfo_item

           inap.MonitorRouteReportArg  MonitorRouteReportArg
               No value
               inap.MonitorRouteReportArg

           inap.MonitorRouteRequestArg  MonitorRouteRequestArg
               No value
               inap.MonitorRouteRequestArg

           inap.MoveCallSegmentsArg  MoveCallSegmentsArg
               No value
               inap.MoveCallSegmentsArg

           inap.MoveLegArg  MoveLegArg
               No value
               inap.MoveLegArg

           inap.OAbandonArg  OAbandonArg
               No value
               inap.OAbandonArg

           inap.OAnswerArg  OAnswerArg
               No value
               inap.OAnswerArg

           inap.OCalledPartyBusyArg  OCalledPartyBusyArg
               No value
               inap.OCalledPartyBusyArg

           inap.ODisconnectArg  ODisconnectArg
               No value
               inap.ODisconnectArg

           inap.ONoAnswerArg  ONoAnswerArg
               No value
               inap.ONoAnswerArg

           inap.OSuspendedArg  OSuspendedArg
               No value
               inap.OSuspendedArg

           inap.OriginationAttemptArg  OriginationAttemptArg
               No value
               inap.OriginationAttemptArg

           inap.OriginationAttemptAuthorizedArg  OriginationAttemptAuthorizedArg
               No value
               inap.OriginationAttemptAuthorizedArg

           inap.PlayAnnouncementArg  PlayAnnouncementArg
               No value
               inap.PlayAnnouncementArg

           inap.PromptAndCollectUserInformationArg  PromptAndCollectUserInformationArg
               No value
               inap.PromptAndCollectUserInformationArg

           inap.PromptAndReceiveMessageArg  PromptAndReceiveMessageArg
               No value
               inap.PromptAndReceiveMessageArg

           inap.ReceivedInformationArg  ReceivedInformationArg
               Unsigned 32-bit integer
               inap.ReceivedInformationArg

           inap.ReconnectArg  ReconnectArg
               No value
               inap.ReconnectArg

           inap.ReleaseCallArg  ReleaseCallArg
               Unsigned 32-bit integer
               inap.ReleaseCallArg

           inap.ReportUTSIArg  ReportUTSIArg
               No value
               inap.ReportUTSIArg

           inap.RequestCurrentStatusReportArg  RequestCurrentStatusReportArg
               Unsigned 32-bit integer
               inap.RequestCurrentStatusReportArg

           inap.RequestCurrentStatusReportResultArg  RequestCurrentStatusReportResultArg
               No value
               inap.RequestCurrentStatusReportResultArg

           inap.RequestEveryStatusChangeReportArg  RequestEveryStatusChangeReportArg
               No value
               inap.RequestEveryStatusChangeReportArg

           inap.RequestFirstStatusMatchReportArg  RequestFirstStatusMatchReportArg
               No value
               inap.RequestFirstStatusMatchReportArg

           inap.RequestNotificationChargingEventArg  RequestNotificationChargingEventArg
               Unsigned 32-bit integer
               inap.RequestNotificationChargingEventArg

           inap.RequestReportBCSMEventArg  RequestReportBCSMEventArg
               No value
               inap.RequestReportBCSMEventArg

           inap.RequestReportFacilityEventArg  RequestReportFacilityEventArg
               No value
               inap.RequestReportFacilityEventArg

           inap.RequestReportUTSIArg  RequestReportUTSIArg
               No value
               inap.RequestReportUTSIArg

           inap.RequestedInformation  RequestedInformation
               No value
               inap.RequestedInformation

           inap.RequestedInformationType  RequestedInformationType
               Unsigned 32-bit integer
               inap.RequestedInformationType

           inap.RequestedUTSI  RequestedUTSI
               No value
               inap.RequestedUTSI

           inap.ResetTimerArg  ResetTimerArg
               No value
               inap.ResetTimerArg

           inap.Route  Route
               Byte array
               inap.Route

           inap.RouteCountersAndValue  RouteCountersAndValue
               No value
               inap.RouteCountersAndValue

           inap.RouteSelectFailureArg  RouteSelectFailureArg
               No value
               inap.RouteSelectFailureArg

           inap.SRFCallGapArg  SRFCallGapArg
               No value
               inap.SRFCallGapArg

           inap.ScriptCloseArg  ScriptCloseArg
               No value
               inap.ScriptCloseArg

           inap.ScriptEventArg  ScriptEventArg
               No value
               inap.ScriptEventArg

           inap.ScriptInformationArg  ScriptInformationArg
               No value
               inap.ScriptInformationArg

           inap.ScriptRunArg  ScriptRunArg
               No value
               inap.ScriptRunArg

           inap.SelectFacilityArg  SelectFacilityArg
               No value
               inap.SelectFacilityArg

           inap.SelectRouteArg  SelectRouteArg
               No value
               inap.SelectRouteArg

           inap.SendChargingInformationArg  SendChargingInformationArg
               No value
               inap.SendChargingInformationArg

           inap.SendFacilityInformationArg  SendFacilityInformationArg
               No value
               inap.SendFacilityInformationArg

           inap.SendSTUIArg  SendSTUIArg
               No value
               inap.SendSTUIArg

           inap.ServiceFilteringResponseArg  ServiceFilteringResponseArg
               No value
               inap.ServiceFilteringResponseArg

           inap.SetServiceProfileArg  SetServiceProfileArg
               No value
               inap.SetServiceProfileArg

           inap.SpecializedResourceReportArg  SpecializedResourceReportArg
               No value
               inap.SpecializedResourceReportArg

           inap.SplitLegArg  SplitLegArg
               No value
               inap.SplitLegArg

           inap.StatusReportArg  StatusReportArg
               No value
               inap.StatusReportArg

           inap.TAnswerArg  TAnswerArg
               No value
               inap.TAnswerArg

           inap.TBusyArg  TBusyArg
               No value
               inap.TBusyArg

           inap.TDisconnectArg  TDisconnectArg
               No value
               inap.TDisconnectArg

           inap.TNoAnswerArg  TNoAnswerArg
               No value
               inap.TNoAnswerArg

           inap.TSuspendedArg  TSuspendedArg
               No value
               inap.TSuspendedArg

           inap.TermAttemptAuthorizedArg  TermAttemptAuthorizedArg
               No value
               inap.TermAttemptAuthorizedArg

           inap.TerminationAttemptArg  TerminationAttemptArg
               No value
               inap.TerminationAttemptArg

           inap.Trigger  Trigger
               No value
               inap.Trigger

           inap.TriggerResult  TriggerResult
               No value
               inap.TriggerResult

           inap.VariablePart  VariablePart
               Unsigned 32-bit integer
               inap.VariablePart

           inap.aALParameters  aALParameters
               Byte array
               inap.AALParameters

           inap.aChBillingChargingCharacteristics  aChBillingChargingCharacteristics
               Byte array
               inap.AChBillingChargingCharacteristics

           inap.aESACalledParty  aESACalledParty
               Byte array
               inap.AESACalledParty

           inap.aESACallingParty  aESACallingParty
               Byte array
               inap.AESACallingParty

           inap.aTMCellRate  aTMCellRate
               Byte array
               inap.ATMCellRate

           inap.abandonCause  abandonCause
               Byte array
               inap.Cause

           inap.absent  absent
               No value
               inap.NULL

           inap.access  access
               Byte array
               inap.CalledPartyNumber

           inap.accessCode  accessCode
               Byte array
               inap.AccessCode

           inap.action  action
               Unsigned 32-bit integer
               inap.T_action

           inap.actionIndicator  actionIndicator
               Unsigned 32-bit integer
               inap.ActionIndicator

           inap.actionOnProfile  actionOnProfile
               Unsigned 32-bit integer
               inap.ActionOnProfile

           inap.actionPerformed  actionPerformed
               Unsigned 32-bit integer
               inap.ActionPerformed

           inap.additionalATMCellRate  additionalATMCellRate
               Byte array
               inap.AdditionalATMCellRate

           inap.additionalCallingPartyNumber  additionalCallingPartyNumber
               Byte array
               inap.AdditionalCallingPartyNumber

           inap.addressAndService  addressAndService
               No value
               inap.T_addressAndService

           inap.agreements  agreements
               Object Identifier
               inap.OBJECT_IDENTIFIER

           inap.alertingPattern  alertingPattern
               Byte array
               inap.AlertingPattern

           inap.allCallSegments  allCallSegments
               No value
               inap.T_allCallSegments

           inap.allRequests  allRequests
               No value
               inap.NULL

           inap.allRequestsForCallSegment  allRequestsForCallSegment
               Unsigned 32-bit integer
               inap.CallSegmentID

           inap.allowCdINNoPresentationInd  allowCdINNoPresentationInd
               Boolean
               inap.BOOLEAN

           inap.alternativeATMTrafficDescriptor  alternativeATMTrafficDescriptor
               Byte array
               inap.AlternativeATMTrafficDescriptor

           inap.alternativeCalledPartyIds  alternativeCalledPartyIds
               Unsigned 32-bit integer
               inap.AlternativeIdentities

           inap.alternativeOriginalCalledPartyIds  alternativeOriginalCalledPartyIds
               Unsigned 32-bit integer
               inap.AlternativeIdentities

           inap.alternativeOriginatingPartyIds  alternativeOriginatingPartyIds
               Unsigned 32-bit integer
               inap.AlternativeIdentities

           inap.alternativeRedirectingPartyIds  alternativeRedirectingPartyIds
               Unsigned 32-bit integer
               inap.AlternativeIdentities

           inap.analysedInfoSpecificInfo  analysedInfoSpecificInfo
               No value
               inap.T_analysedInfoSpecificInfo

           inap.applicationTimer  applicationTimer
               Unsigned 32-bit integer
               inap.ApplicationTimer

           inap.argument  argument
               No value
               inap.T_argument

           inap.assistingSSPIPRoutingAddress  assistingSSPIPRoutingAddress
               Byte array
               inap.AssistingSSPIPRoutingAddress

           inap.attributes  attributes
               Byte array
               inap.OCTET_STRING_SIZE_b3__minAttributesLength_b3__maxAttributesLength

           inap.authoriseRouteFailureCause  authoriseRouteFailureCause
               Byte array
               inap.Cause

           inap.authorizeRouteFailure  authorizeRouteFailure
               No value
               inap.T_authorizeRouteFailure

           inap.bCSMFailure  bCSMFailure
               No value
               inap.T_bCSMFailure

           inap.bISDNParameters  bISDNParameters
               No value
               inap.BISDNParameters

           inap.backwardGVNS  backwardGVNS
               Byte array
               inap.BackwardGVNS

           inap.backwardServiceInteractionInd  backwardServiceInteractionInd
               No value
               inap.BackwardServiceInteractionInd

           inap.basicGapCriteria  basicGapCriteria
               Unsigned 32-bit integer
               inap.BasicGapCriteria

           inap.bcsmEventCorrelationID  bcsmEventCorrelationID
               Byte array
               inap.CorrelationID

           inap.bcsmEvents  bcsmEvents
               Unsigned 32-bit integer
               inap.SEQUENCE_SIZE_1_numOfBCSMEvents_OF_BCSMEvent

           inap.bearerCap  bearerCap
               Byte array
               inap.T_bearerCap

           inap.bearerCapability  bearerCapability
               Unsigned 32-bit integer
               inap.BearerCapability

           inap.both  both
               No value
               inap.T_both

           inap.bothwayThroughConnectionInd  bothwayThroughConnectionInd
               Unsigned 32-bit integer
               inap.BothwayThroughConnectionInd

           inap.broadbandBearerCap  broadbandBearerCap
               Byte array
               inap.OCTET_STRING_SIZE_minBroadbandBearerCapabilityLength_maxBroadbandBearerCapabilityLength

           inap.busyCause  busyCause
               Byte array
               inap.Cause

           inap.cCSS  cCSS
               Boolean
               inap.CCSS

           inap.cDVTDescriptor  cDVTDescriptor
               Byte array
               inap.CDVTDescriptor

           inap.cGEncountered  cGEncountered
               Unsigned 32-bit integer
               inap.CGEncountered

           inap.cNInfo  cNInfo
               Byte array
               inap.CNInfo

           inap.cSFailure  cSFailure
               No value
               inap.T_cSFailure

           inap.callAccepted  callAccepted
               No value
               inap.T_callAccepted

           inap.callAttemptElapsedTimeValue  callAttemptElapsedTimeValue
               Unsigned 32-bit integer
               inap.INTEGER_0_255

           inap.callCompletionTreatmentIndicator  callCompletionTreatmentIndicator
               Byte array
               inap.OCTET_STRING_SIZE_1

           inap.callConnectedElapsedTimeValue  callConnectedElapsedTimeValue
               Unsigned 32-bit integer
               inap.Integer4

           inap.callDiversionTreatmentIndicator  callDiversionTreatmentIndicator
               Byte array
               inap.OCTET_STRING_SIZE_1

           inap.callOfferingTreatmentIndicator  callOfferingTreatmentIndicator
               Byte array
               inap.OCTET_STRING_SIZE_1

           inap.callProcessingOperation  callProcessingOperation
               Unsigned 32-bit integer
               inap.CallProcessingOperation

           inap.callReference  callReference
               Byte array
               inap.CallReference

           inap.callSegment  callSegment
               Unsigned 32-bit integer
               inap.INTEGER_1_numOfCSs

           inap.callSegmentID  callSegmentID
               Unsigned 32-bit integer
               inap.CallSegmentID

           inap.callSegmentToCancel  callSegmentToCancel
               No value
               inap.T_callSegmentToCancel

           inap.callSegmentToRelease  callSegmentToRelease
               No value
               inap.T_callSegmentToRelease

           inap.callSegments  callSegments
               Unsigned 32-bit integer
               inap.T_callSegments

           inap.callSegments_item  callSegments item
               No value
               inap.T_callSegments_item

           inap.callStopTimeValue  callStopTimeValue
               Byte array
               inap.DateAndTime

           inap.callWaitingTreatmentIndicator  callWaitingTreatmentIndicator
               Byte array
               inap.OCTET_STRING_SIZE_1

           inap.calledAddressAndService  calledAddressAndService
               No value
               inap.T_calledAddressAndService

           inap.calledAddressValue  calledAddressValue
               Byte array
               inap.Digits

           inap.calledDirectoryNumber  calledDirectoryNumber
               Byte array
               inap.CalledDirectoryNumber

           inap.calledFacilityGroup  calledFacilityGroup
               Unsigned 32-bit integer
               inap.FacilityGroup

           inap.calledFacilityGroupMember  calledFacilityGroupMember
               Signed 32-bit integer
               inap.FacilityGroupMember

           inap.calledINNumberOverriding  calledINNumberOverriding
               Boolean
               inap.BOOLEAN

           inap.calledPartyBusinessGroupID  calledPartyBusinessGroupID
               Byte array
               inap.CalledPartyBusinessGroupID

           inap.calledPartyNumber  calledPartyNumber
               Byte array
               inap.CalledPartyNumber

           inap.calledPartySubaddress  calledPartySubaddress
               Byte array
               inap.CalledPartySubaddress

           inap.calledPartynumber  calledPartynumber
               Byte array
               inap.CalledPartyNumber

           inap.callingAddressAndService  callingAddressAndService
               No value
               inap.T_callingAddressAndService

           inap.callingAddressValue  callingAddressValue
               Byte array
               inap.Digits

           inap.callingFacilityGroup  callingFacilityGroup
               Unsigned 32-bit integer
               inap.FacilityGroup

           inap.callingFacilityGroupMember  callingFacilityGroupMember
               Signed 32-bit integer
               inap.FacilityGroupMember

           inap.callingGeodeticLocation  callingGeodeticLocation
               Byte array
               inap.CallingGeodeticLocation

           inap.callingLineID  callingLineID
               Byte array
               inap.Digits

           inap.callingPartyBusinessGroupID  callingPartyBusinessGroupID
               Byte array
               inap.CallingPartyBusinessGroupID

           inap.callingPartyNumber  callingPartyNumber
               Byte array
               inap.CallingPartyNumber

           inap.callingPartySubaddress  callingPartySubaddress
               Byte array
               inap.CallingPartySubaddress

           inap.callingPartysCategory  callingPartysCategory
               Unsigned 16-bit integer
               inap.CallingPartysCategory

           inap.cancelDigit  cancelDigit
               Byte array
               inap.OCTET_STRING_SIZE_1_2

           inap.carrier  carrier
               Byte array
               inap.Carrier

           inap.cause  cause
               Byte array
               inap.Cause

           inap.chargeNumber  chargeNumber
               Byte array
               inap.ChargeNumber

           inap.collectedDigits  collectedDigits
               No value
               inap.CollectedDigits

           inap.collectedInfo  collectedInfo
               Unsigned 32-bit integer
               inap.CollectedInfo

           inap.collectedInfoSpecificInfo  collectedInfoSpecificInfo
               No value
               inap.T_collectedInfoSpecificInfo

           inap.component  component
               Unsigned 32-bit integer
               inap.Component

           inap.componentCorrelationID  componentCorrelationID
               Signed 32-bit integer
               inap.ComponentCorrelationID

           inap.componentInfo  componentInfo
               Byte array
               inap.OCTET_STRING_SIZE_1_118

           inap.componentType  componentType
               Unsigned 32-bit integer
               inap.ComponentType

           inap.componentTypes  componentTypes
               Unsigned 32-bit integer
               inap.SEQUENCE_SIZE_1_3_OF_ComponentType

           inap.componenttCorrelationID  componenttCorrelationID
               Signed 32-bit integer
               inap.ComponentCorrelationID

           inap.compoundCapCriteria  compoundCapCriteria
               No value
               inap.CompoundCriteria

           inap.conferenceTreatmentIndicator  conferenceTreatmentIndicator
               Byte array
               inap.OCTET_STRING_SIZE_1

           inap.connectTime  connectTime
               Unsigned 32-bit integer
               inap.Integer4

           inap.connectedNumberTreatmentInd  connectedNumberTreatmentInd
               Unsigned 32-bit integer
               inap.ConnectedNumberTreatmentInd

           inap.connectedParty  connectedParty
               Unsigned 32-bit integer
               inap.T_connectedParty

           inap.connectionIdentifier  connectionIdentifier
               Byte array
               inap.ConnectionIdentifier

           inap.controlDigits  controlDigits
               No value
               inap.T_controlDigits

           inap.controlType  controlType
               Unsigned 32-bit integer
               inap.ControlType

           inap.correlationID  correlationID
               Byte array
               inap.CorrelationID

           inap.counterID  counterID
               Unsigned 32-bit integer
               inap.CounterID

           inap.counterValue  counterValue
               Unsigned 32-bit integer
               inap.Integer4

           inap.countersValue  countersValue
               Unsigned 32-bit integer
               inap.CountersValue

           inap.createOrRemove  createOrRemove
               Unsigned 32-bit integer
               inap.CreateOrRemoveIndicator

           inap.createdCallSegmentAssociation  createdCallSegmentAssociation
               Unsigned 32-bit integer
               inap.CSAID

           inap.criticality  criticality
               Unsigned 32-bit integer
               inap.CriticalityType

           inap.csID  csID
               Unsigned 32-bit integer
               inap.CallSegmentID

           inap.cug_Index  cug-Index
               String
               inap.CUG_Index

           inap.cug_Interlock  cug-Interlock
               Byte array
               inap.CUG_Interlock

           inap.cug_OutgoingAccess  cug-OutgoingAccess
               No value
               inap.NULL

           inap.cumulativeTransitDelay  cumulativeTransitDelay
               Byte array
               inap.CumulativeTransitDelay

           inap.cutAndPaste  cutAndPaste
               Unsigned 32-bit integer
               inap.CutAndPaste

           inap.dPName  dPName
               Unsigned 32-bit integer
               inap.EventTypeBCSM

           inap.date  date
               Byte array
               inap.OCTET_STRING_SIZE_3

           inap.defaultFaultHandling  defaultFaultHandling
               No value
               inap.DefaultFaultHandling

           inap.destinationIndex  destinationIndex
               Byte array
               inap.DestinationIndex

           inap.destinationNumberRoutingAddress  destinationNumberRoutingAddress
               Byte array
               inap.CalledPartyNumber

           inap.destinationRoutingAddress  destinationRoutingAddress
               Unsigned 32-bit integer
               inap.DestinationRoutingAddress

           inap.detachSignallingPath  detachSignallingPath
               No value
               inap.NULL

           inap.detectModem  detectModem
               Boolean
               inap.BOOLEAN

           inap.dialledDigits  dialledDigits
               Byte array
               inap.CalledPartyNumber

           inap.dialledNumber  dialledNumber
               Byte array
               inap.Digits

           inap.digitsResponse  digitsResponse
               Byte array
               inap.Digits

           inap.disconnectFromIPForbidden  disconnectFromIPForbidden
               Boolean
               inap.BOOLEAN

           inap.displayInformation  displayInformation
               String
               inap.DisplayInformation

           inap.dpAssignment  dpAssignment
               Unsigned 32-bit integer
               inap.T_dpAssignment

           inap.dpCriteria  dpCriteria
               Unsigned 32-bit integer
               inap.EventTypeBCSM

           inap.dpName  dpName
               Unsigned 32-bit integer
               inap.EventTypeBCSM

           inap.dpSpecificCommonParameters  dpSpecificCommonParameters
               No value
               inap.DpSpecificCommonParameters

           inap.dpSpecificCriteria  dpSpecificCriteria
               Unsigned 32-bit integer
               inap.DpSpecificCriteria

           inap.duration  duration
               Signed 32-bit integer
               inap.Duration

           inap.ectTreatmentIndicator  ectTreatmentIndicator
               Byte array
               inap.OCTET_STRING_SIZE_1

           inap.elementaryMessageID  elementaryMessageID
               Unsigned 32-bit integer
               inap.Integer4

           inap.elementaryMessageIDs  elementaryMessageIDs
               Unsigned 32-bit integer
               inap.SEQUENCE_SIZE_1_b3__numOfMessageIDs_OF_Integer4

           inap.empty  empty
               No value
               inap.NULL

           inap.endOfRecordingDigit  endOfRecordingDigit
               Byte array
               inap.OCTET_STRING_SIZE_1_2

           inap.endOfReplyDigit  endOfReplyDigit
               Byte array
               inap.OCTET_STRING_SIZE_1_2

           inap.endToEndTransitDelay  endToEndTransitDelay
               Byte array
               inap.EndToEndTransitDelay

           inap.errcode  errcode
               Unsigned 32-bit integer
               inap.Code

           inap.errorTreatment  errorTreatment
               Unsigned 32-bit integer
               inap.ErrorTreatment

           inap.eventSpecificInformationBCSM  eventSpecificInformationBCSM
               Unsigned 32-bit integer
               inap.EventSpecificInformationBCSM

           inap.eventSpecificInformationCharging  eventSpecificInformationCharging
               Byte array
               inap.EventSpecificInformationCharging

           inap.eventTypeBCSM  eventTypeBCSM
               Unsigned 32-bit integer
               inap.EventTypeBCSM

           inap.eventTypeCharging  eventTypeCharging
               Byte array
               inap.EventTypeCharging

           inap.exportSignallingPath  exportSignallingPath
               No value
               inap.NULL

           inap.extensions  extensions
               Unsigned 32-bit integer
               inap.Extensions

           inap.facilityGroupID  facilityGroupID
               Unsigned 32-bit integer
               inap.FacilityGroup

           inap.facilityGroupMemberID  facilityGroupMemberID
               Signed 32-bit integer
               inap.INTEGER

           inap.facilitySelectedAndAvailable  facilitySelectedAndAvailable
               No value
               inap.T_facilitySelectedAndAvailable

           inap.failureCause  failureCause
               Byte array
               inap.Cause

           inap.featureCode  featureCode
               Byte array
               inap.FeatureCode

           inap.featureRequestIndicator  featureRequestIndicator
               Unsigned 32-bit integer
               inap.FeatureRequestIndicator

           inap.filteredCallTreatment  filteredCallTreatment
               No value
               inap.FilteredCallTreatment

           inap.filteringCharacteristics  filteringCharacteristics
               Unsigned 32-bit integer
               inap.FilteringCharacteristics

           inap.filteringCriteria  filteringCriteria
               Unsigned 32-bit integer
               inap.FilteringCriteria

           inap.filteringTimeOut  filteringTimeOut
               Unsigned 32-bit integer
               inap.FilteringTimeOut

           inap.firstDigitTimeOut  firstDigitTimeOut
               Unsigned 32-bit integer
               inap.INTEGER_1_127

           inap.forcedRelease  forcedRelease
               Boolean
               inap.BOOLEAN

           inap.forwardCallIndicators  forwardCallIndicators
               Byte array
               inap.ForwardCallIndicators

           inap.forwardGVNS  forwardGVNS
               Byte array
               inap.ForwardGVNS

           inap.forwardServiceInteractionInd  forwardServiceInteractionInd
               No value
               inap.ForwardServiceInteractionInd

           inap.forwardingCondition  forwardingCondition
               Unsigned 32-bit integer
               inap.ForwardingCondition

           inap.gapAllInTraffic  gapAllInTraffic
               No value
               inap.NULL

           inap.gapCriteria  gapCriteria
               Unsigned 32-bit integer
               inap.GapCriteria

           inap.gapIndicators  gapIndicators
               No value
               inap.GapIndicators

           inap.gapInterval  gapInterval
               Signed 32-bit integer
               inap.Interval

           inap.gapOnResource  gapOnResource
               Unsigned 32-bit integer
               inap.GapOnResource

           inap.gapOnService  gapOnService
               No value
               inap.GapOnService

           inap.gapTreatment  gapTreatment
               Unsigned 32-bit integer
               inap.GapTreatment

           inap.general  general
               Signed 32-bit integer
               inap.GeneralProblem

           inap.genericIdentifier  genericIdentifier
               Byte array
               inap.GenericIdentifier

           inap.genericName  genericName
               Byte array
               inap.GenericName

           inap.genericNumbers  genericNumbers
               Unsigned 32-bit integer
               inap.GenericNumbers

           inap.global  global
               Object Identifier
               inap.OBJECT_IDENTIFIER

           inap.globalCallReference  globalCallReference
               Byte array
               inap.GlobalCallReference

           inap.group  group
               Unsigned 32-bit integer
               inap.FacilityGroup

           inap.highLayerCompatibility  highLayerCompatibility
               Byte array
               inap.HighLayerCompatibility

           inap.holdTreatmentIndicator  holdTreatmentIndicator
               Byte array
               inap.OCTET_STRING_SIZE_1

           inap.holdcause  holdcause
               Byte array
               inap.HoldCause

           inap.huntGroup  huntGroup
               Byte array
               inap.OCTET_STRING

           inap.iA5Information  iA5Information
               Boolean
               inap.BOOLEAN

           inap.iA5Response  iA5Response
               String
               inap.IA5String

           inap.iNServiceCompatibilityIndication  iNServiceCompatibilityIndication
               Unsigned 32-bit integer
               inap.INServiceCompatibilityIndication

           inap.iNServiceCompatibilityResponse  iNServiceCompatibilityResponse
               Unsigned 32-bit integer
               inap.INServiceCompatibilityResponse

           inap.iNServiceControlCode  iNServiceControlCode
               Byte array
               inap.Digits

           inap.iNServiceControlCodeHigh  iNServiceControlCodeHigh
               Byte array
               inap.Digits

           inap.iNServiceControlCodeLow  iNServiceControlCodeLow
               Byte array
               inap.Digits

           inap.iNprofiles  iNprofiles
               Unsigned 32-bit integer
               inap.SEQUENCE_SIZE_1_numOfINProfile_OF_INprofile

           inap.iPAddressAndresource  iPAddressAndresource
               No value
               inap.T_iPAddressAndresource

           inap.iPAddressValue  iPAddressValue
               Byte array
               inap.Digits

           inap.iPAvailable  iPAvailable
               Byte array
               inap.IPAvailable

           inap.iPSSPCapabilities  iPSSPCapabilities
               Byte array
               inap.IPSSPCapabilities

           inap.iSDNAccessRelatedInformation  iSDNAccessRelatedInformation
               Byte array
               inap.ISDNAccessRelatedInformation

           inap.inbandInfo  inbandInfo
               No value
               inap.InbandInfo

           inap.incomingSignallingBufferCopy  incomingSignallingBufferCopy
               Boolean
               inap.BOOLEAN

           inap.informationToRecord  informationToRecord
               No value
               inap.InformationToRecord

           inap.informationToSend  informationToSend
               Unsigned 32-bit integer
               inap.InformationToSend

           inap.initialCallSegment  initialCallSegment
               Byte array
               inap.Cause

           inap.integer  integer
               Unsigned 32-bit integer
               inap.Integer4

           inap.interDigitTimeOut  interDigitTimeOut
               Unsigned 32-bit integer
               inap.INTEGER_1_127

           inap.interruptableAnnInd  interruptableAnnInd
               Boolean
               inap.BOOLEAN

           inap.interval  interval
               Signed 32-bit integer
               inap.INTEGER_M1_32000

           inap.invoke  invoke
               No value
               inap.Invoke

           inap.invokeID  invokeID
               Signed 32-bit integer
               inap.InvokeID

           inap.invokeId  invokeId
               Unsigned 32-bit integer
               inap.InvokeId

           inap.ipAddressAndCallSegment  ipAddressAndCallSegment
               No value
               inap.T_ipAddressAndCallSegment

           inap.ipAddressAndLegID  ipAddressAndLegID
               No value
               inap.T_ipAddressAndLegID

           inap.ipRelatedInformation  ipRelatedInformation
               No value
               inap.IPRelatedInformation

           inap.ipRelationInformation  ipRelationInformation
               No value
               inap.IPRelatedInformation

           inap.ipRoutingAddress  ipRoutingAddress
               Byte array
               inap.IPRoutingAddress

           inap.lastEventIndicator  lastEventIndicator
               Boolean
               inap.BOOLEAN

           inap.legID  legID
               Unsigned 32-bit integer
               inap.LegID

           inap.legIDToMove  legIDToMove
               Unsigned 32-bit integer
               inap.LegID

           inap.legToBeCreated  legToBeCreated
               Unsigned 32-bit integer
               inap.LegID

           inap.legToBeReleased  legToBeReleased
               Unsigned 32-bit integer
               inap.LegID

           inap.legToBeSplit  legToBeSplit
               Unsigned 32-bit integer
               inap.LegID

           inap.legorCSID  legorCSID
               Unsigned 32-bit integer
               inap.T_legorCSID

           inap.legs  legs
               Unsigned 32-bit integer
               inap.T_legs

           inap.legs_item  legs item
               No value
               inap.T_legs_item

           inap.lineID  lineID
               Byte array
               inap.Digits

           inap.linkedId  linkedId
               Unsigned 32-bit integer
               inap.T_linkedId

           inap.local  local
               Byte array
               inap.OCTET_STRING_SIZE_minUSIServiceIndicatorLength_maxUSIServiceIndicatorLength

           inap.locationNumber  locationNumber
               Byte array
               inap.LocationNumber

           inap.mailBoxID  mailBoxID
               Byte array
               inap.MailBoxID

           inap.maximumNbOfDigits  maximumNbOfDigits
               Unsigned 32-bit integer
               inap.INTEGER_1_127

           inap.maximumNumberOfCounters  maximumNumberOfCounters
               Unsigned 32-bit integer
               inap.MaximumNumberOfCounters

           inap.media  media
               Unsigned 32-bit integer
               inap.Media

           inap.mergeSignallingPaths  mergeSignallingPaths
               No value
               inap.NULL

           inap.messageContent  messageContent
               String
               inap.IA5String_SIZE_b3__minMessageContentLength_b3__maxMessageContentLength

           inap.messageDeletionTimeOut  messageDeletionTimeOut
               Unsigned 32-bit integer
               inap.INTEGER_1_3600

           inap.messageID  messageID
               Unsigned 32-bit integer
               inap.MessageID

           inap.messageType  messageType
               Unsigned 32-bit integer
               inap.T_messageType

           inap.midCallControlInfo  midCallControlInfo
               Unsigned 32-bit integer
               inap.MidCallControlInfo

           inap.midCallInfoType  midCallInfoType
               No value
               inap.MidCallInfoType

           inap.midCallReportType  midCallReportType
               Unsigned 32-bit integer
               inap.T_midCallReportType

           inap.minAcceptableATMTrafficDescriptor  minAcceptableATMTrafficDescriptor
               Byte array
               inap.MinAcceptableATMTrafficDescriptor

           inap.minNumberOfDigits  minNumberOfDigits
               Unsigned 32-bit integer
               inap.NumberOfDigits

           inap.minimumNbOfDigits  minimumNbOfDigits
               Unsigned 32-bit integer
               inap.INTEGER_1_127

           inap.miscCallInfo  miscCallInfo
               No value
               inap.MiscCallInfo

           inap.modemdetected  modemdetected
               Boolean
               inap.BOOLEAN

           inap.modifyResultType  modifyResultType
               Unsigned 32-bit integer
               inap.ModifyResultType

           inap.monitorDuration  monitorDuration
               Signed 32-bit integer
               inap.Duration

           inap.monitorMode  monitorMode
               Unsigned 32-bit integer
               inap.MonitorMode

           inap.monitoringCriteria  monitoringCriteria
               Unsigned 32-bit integer
               inap.MonitoringCriteria

           inap.monitoringTimeout  monitoringTimeout
               Unsigned 32-bit integer
               inap.MonitoringTimeOut

           inap.networkSpecific  networkSpecific
               Unsigned 32-bit integer
               inap.Integer4

           inap.newCallSegment  newCallSegment
               Unsigned 32-bit integer
               inap.CallSegmentID

           inap.newCallSegmentAssociation  newCallSegmentAssociation
               Unsigned 32-bit integer
               inap.CSAID

           inap.newLeg  newLeg
               Unsigned 32-bit integer
               inap.LegID

           inap.nocharge  nocharge
               Boolean
               inap.BOOLEAN

           inap.nonCUGCall  nonCUGCall
               No value
               inap.NULL

           inap.none  none
               No value
               inap.NULL

           inap.notificationDuration  notificationDuration
               Unsigned 32-bit integer
               inap.ApplicationTimer

           inap.number  number
               Byte array
               inap.Digits

           inap.numberOfCalls  numberOfCalls
               Unsigned 32-bit integer
               inap.Integer4

           inap.numberOfDigits  numberOfDigits
               Unsigned 32-bit integer
               inap.NumberOfDigits

           inap.numberOfDigitsTwo  numberOfDigitsTwo
               No value
               inap.T_numberOfDigitsTwo

           inap.numberOfRepetitions  numberOfRepetitions
               Unsigned 32-bit integer
               inap.INTEGER_1_127

           inap.numberingPlan  numberingPlan
               Byte array
               inap.NumberingPlan

           inap.oAbandon  oAbandon
               No value
               inap.T_oAbandon

           inap.oAnswerSpecificInfo  oAnswerSpecificInfo
               No value
               inap.T_oAnswerSpecificInfo

           inap.oCalledPartyBusySpecificInfo  oCalledPartyBusySpecificInfo
               No value
               inap.T_oCalledPartyBusySpecificInfo

           inap.oDisconnectSpecificInfo  oDisconnectSpecificInfo
               No value
               inap.T_oDisconnectSpecificInfo

           inap.oMidCallInfo  oMidCallInfo
               No value
               inap.MidCallInfo

           inap.oMidCallSpecificInfo  oMidCallSpecificInfo
               No value
               inap.T_oMidCallSpecificInfo

           inap.oModifyRequestSpecificInfo  oModifyRequestSpecificInfo
               No value
               inap.T_oModifyRequestSpecificInfo

           inap.oModifyResultSpecificInfo  oModifyResultSpecificInfo
               No value
               inap.T_oModifyResultSpecificInfo

           inap.oNoAnswerSpecificInfo  oNoAnswerSpecificInfo
               No value
               inap.T_oNoAnswerSpecificInfo

           inap.oReAnswer  oReAnswer
               No value
               inap.T_oReAnswer

           inap.oSuspend  oSuspend
               No value
               inap.T_oSuspend

           inap.oTermSeizedSpecificInfo  oTermSeizedSpecificInfo
               No value
               inap.T_oTermSeizedSpecificInfo

           inap.oneTrigger  oneTrigger
               Signed 32-bit integer
               inap.INTEGER

           inap.oneTriggerResult  oneTriggerResult
               No value
               inap.T_oneTriggerResult

           inap.opcode  opcode
               Unsigned 32-bit integer
               inap.Code

           inap.origAttemptAuthorized  origAttemptAuthorized
               No value
               inap.T_origAttemptAuthorized

           inap.originalCalledPartyID  originalCalledPartyID
               Byte array
               inap.OriginalCalledPartyID

           inap.originationAttemptDenied  originationAttemptDenied
               No value
               inap.T_originationAttemptDenied

           inap.originationDeniedCause  originationDeniedCause
               Byte array
               inap.Cause

           inap.overrideLineRestrictions  overrideLineRestrictions
               Boolean
               inap.BOOLEAN

           inap.parameter  parameter
               No value
               inap.T_parameter

           inap.partyToCharge  partyToCharge
               Unsigned 32-bit integer
               inap.LegID

           inap.partyToConnect  partyToConnect
               Unsigned 32-bit integer
               inap.T_partyToConnect

           inap.partyToDisconnect  partyToDisconnect
               Unsigned 32-bit integer
               inap.T_partyToDisconnect

           inap.preferredLanguage  preferredLanguage
               String
               inap.Language

           inap.prefix  prefix
               Byte array
               inap.Digits

           inap.present  present
               Signed 32-bit integer
               inap.T_linkedIdPresent

           inap.price  price
               Byte array
               inap.OCTET_STRING_SIZE_4

           inap.privateFacilityID  privateFacilityID
               Signed 32-bit integer
               inap.INTEGER

           inap.problem  problem
               Unsigned 32-bit integer
               inap.T_problem

           inap.profile  profile
               Unsigned 32-bit integer
               inap.ProfileIdentifier

           inap.profileAndDP  profileAndDP
               No value
               inap.TriggerDataIdentifier

           inap.qOSParameter  qOSParameter
               Byte array
               inap.QoSParameter

           inap.reason  reason
               Byte array
               inap.Reason

           inap.receivedStatus  receivedStatus
               Unsigned 32-bit integer
               inap.ReceivedStatus

           inap.receivingSideID  receivingSideID
               Byte array
               inap.LegType

           inap.recordedMessageID  recordedMessageID
               Unsigned 32-bit integer
               inap.RecordedMessageID

           inap.recordedMessageUnits  recordedMessageUnits
               Unsigned 32-bit integer
               inap.INTEGER_1_b3__maxRecordedMessageUnits

           inap.redirectReason  redirectReason
               Byte array
               inap.RedirectReason

           inap.redirectServiceTreatmentInd  redirectServiceTreatmentInd
               No value
               inap.T_redirectServiceTreatmentInd

           inap.redirectingPartyID  redirectingPartyID
               Byte array
               inap.RedirectingPartyID

           inap.redirectionInformation  redirectionInformation
               Byte array
               inap.RedirectionInformation

           inap.registratorIdentifier  registratorIdentifier
               Byte array
               inap.RegistratorIdentifier

           inap.reject  reject
               No value
               inap.Reject

           inap.relayedComponent  relayedComponent
               No value
               inap.EMBEDDED_PDV

           inap.releaseCause  releaseCause
               Byte array
               inap.Cause

           inap.releaseCauseValue  releaseCauseValue
               Byte array
               inap.Cause

           inap.releaseIndication  releaseIndication
               Boolean
               inap.BOOLEAN

           inap.replayAllowed  replayAllowed
               Boolean
               inap.BOOLEAN

           inap.replayDigit  replayDigit
               Byte array
               inap.OCTET_STRING_SIZE_1_2

           inap.reportCondition  reportCondition
               Unsigned 32-bit integer
               inap.ReportCondition

           inap.requestAnnouncementComplete  requestAnnouncementComplete
               Boolean
               inap.BOOLEAN

           inap.requestedInformationList  requestedInformationList
               Unsigned 32-bit integer
               inap.RequestedInformationList

           inap.requestedInformationType  requestedInformationType
               Unsigned 32-bit integer
               inap.RequestedInformationType

           inap.requestedInformationTypeList  requestedInformationTypeList
               Unsigned 32-bit integer
               inap.RequestedInformationTypeList

           inap.requestedInformationValue  requestedInformationValue
               Unsigned 32-bit integer
               inap.RequestedInformationValue

           inap.requestedNumberOfDigits  requestedNumberOfDigits
               Unsigned 32-bit integer
               inap.NumberOfDigits

           inap.requestedUTSIList  requestedUTSIList
               Unsigned 32-bit integer
               inap.RequestedUTSIList

           inap.resourceAddress  resourceAddress
               Unsigned 32-bit integer
               inap.T_resourceAddress

           inap.resourceID  resourceID
               Unsigned 32-bit integer
               inap.ResourceID

           inap.resourceStatus  resourceStatus
               Unsigned 32-bit integer
               inap.ResourceStatus

           inap.responseCondition  responseCondition
               Unsigned 32-bit integer
               inap.ResponseCondition

           inap.restartAllowed  restartAllowed
               Boolean
               inap.BOOLEAN

           inap.restartRecordingDigit  restartRecordingDigit
               Byte array
               inap.OCTET_STRING_SIZE_1_2

           inap.result  result
               No value
               inap.T_result

           inap.results  results
               Unsigned 32-bit integer
               inap.TriggerResults

           inap.returnError  returnError
               No value
               inap.ReturnError

           inap.returnResult  returnResult
               No value
               inap.ReturnResult

           inap.route  route
               Byte array
               inap.Route

           inap.routeCounters  routeCounters
               Unsigned 32-bit integer
               inap.RouteCountersValue

           inap.routeIndex  routeIndex
               Byte array
               inap.OCTET_STRING

           inap.routeList  routeList
               Unsigned 32-bit integer
               inap.RouteList

           inap.routeSelectFailureSpecificInfo  routeSelectFailureSpecificInfo
               No value
               inap.T_routeSelectFailureSpecificInfo

           inap.routeingNumber  routeingNumber
               Byte array
               inap.RouteingNumber

           inap.sCIBillingChargingCharacteristics  sCIBillingChargingCharacteristics
               Byte array
               inap.SCIBillingChargingCharacteristics

           inap.sDSSinformation  sDSSinformation
               Byte array
               inap.SDSSinformation

           inap.sFBillingChargingCharacteristics  sFBillingChargingCharacteristics
               Byte array
               inap.SFBillingChargingCharacteristics

           inap.sRFgapCriteria  sRFgapCriteria
               Unsigned 32-bit integer
               inap.SRFGapCriteria

           inap.scfID  scfID
               Byte array
               inap.ScfID

           inap.sendingSideID  sendingSideID
               Byte array
               inap.LegType

           inap.serviceAddressInformation  serviceAddressInformation
               No value
               inap.ServiceAddressInformation

           inap.serviceInteractionIndicators  serviceInteractionIndicators
               Byte array
               inap.ServiceInteractionIndicators

           inap.serviceInteractionIndicatorsTwo  serviceInteractionIndicatorsTwo
               No value
               inap.ServiceInteractionIndicatorsTwo

           inap.serviceKey  serviceKey
               Unsigned 32-bit integer
               inap.ServiceKey

           inap.serviceProfileIdentifier  serviceProfileIdentifier
               Byte array
               inap.ServiceProfileIdentifier

           inap.servingAreaID  servingAreaID
               Byte array
               inap.ServingAreaID

           inap.severalTriggerResult  severalTriggerResult
               No value
               inap.T_severalTriggerResult

           inap.sourceCallSegment  sourceCallSegment
               Unsigned 32-bit integer
               inap.CallSegmentID

           inap.sourceLeg  sourceLeg
               Unsigned 32-bit integer
               inap.LegID

           inap.startDigit  startDigit
               Byte array
               inap.OCTET_STRING_SIZE_1_2

           inap.startTime  startTime
               Byte array
               inap.DateAndTime

           inap.stopTime  stopTime
               Byte array
               inap.DateAndTime

           inap.subscriberID  subscriberID
               Byte array
               inap.GenericNumber

           inap.suppressCallDiversionNotification  suppressCallDiversionNotification
               Boolean
               inap.BOOLEAN

           inap.suppressCallTransferNotification  suppressCallTransferNotification
               Boolean
               inap.BOOLEAN

           inap.suppressVPNAPP  suppressVPNAPP
               Boolean
               inap.BOOLEAN

           inap.suspendTimer  suspendTimer
               Unsigned 32-bit integer
               inap.SuspendTimer

           inap.tAbandon  tAbandon
               No value
               inap.T_tAbandon

           inap.tAnswerSpecificInfo  tAnswerSpecificInfo
               No value
               inap.T_tAnswerSpecificInfo

           inap.tBusySpecificInfo  tBusySpecificInfo
               No value
               inap.T_tBusySpecificInfo

           inap.tDPIdentifer  tDPIdentifer
               Signed 32-bit integer
               inap.INTEGER

           inap.tDPIdentifier  tDPIdentifier
               Unsigned 32-bit integer
               inap.TDPIdentifier

           inap.tDisconnectSpecificInfo  tDisconnectSpecificInfo
               No value
               inap.T_tDisconnectSpecificInfo

           inap.tMidCallInfo  tMidCallInfo
               No value
               inap.MidCallInfo

           inap.tMidCallSpecificInfo  tMidCallSpecificInfo
               No value
               inap.T_tMidCallSpecificInfo

           inap.tModifyRequestSpecificInfo  tModifyRequestSpecificInfo
               No value
               inap.T_tModifyRequestSpecificInfo

           inap.tModifyResultSpecificInfo  tModifyResultSpecificInfo
               No value
               inap.T_tModifyResultSpecificInfo

           inap.tNoAnswerSpecificInfo  tNoAnswerSpecificInfo
               No value
               inap.T_tNoAnswerSpecificInfo

           inap.tReAnswer  tReAnswer
               No value
               inap.T_tReAnswer

           inap.tSuspend  tSuspend
               No value
               inap.T_tSuspend

           inap.targetCallSegment  targetCallSegment
               Unsigned 32-bit integer
               inap.CallSegmentID

           inap.targetCallSegmentAssociation  targetCallSegmentAssociation
               Unsigned 32-bit integer
               inap.CSAID

           inap.terminalType  terminalType
               Unsigned 32-bit integer
               inap.TerminalType

           inap.terminationAttemptAuthorized  terminationAttemptAuthorized
               No value
               inap.T_terminationAttemptAuthorized

           inap.terminationAttemptDenied  terminationAttemptDenied
               No value
               inap.T_terminationAttemptDenied

           inap.terminationDeniedCause  terminationDeniedCause
               Byte array
               inap.Cause

           inap.text  text
               No value
               inap.T_text

           inap.threshold  threshold
               Unsigned 32-bit integer
               inap.Integer4

           inap.time  time
               Byte array
               inap.OCTET_STRING_SIZE_2

           inap.timeToRecord  timeToRecord
               Unsigned 32-bit integer
               inap.INTEGER_0_b3__maxRecordingTime

           inap.timeToRelease  timeToRelease
               Unsigned 32-bit integer
               inap.TimerValue

           inap.timerID  timerID
               Unsigned 32-bit integer
               inap.TimerID

           inap.timervalue  timervalue
               Unsigned 32-bit integer
               inap.TimerValue

           inap.tmr  tmr
               Byte array
               inap.OCTET_STRING_SIZE_1

           inap.tone  tone
               No value
               inap.Tone

           inap.toneID  toneID
               Unsigned 32-bit integer
               inap.Integer4

           inap.travellingClassMark  travellingClassMark
               Byte array
               inap.TravellingClassMark

           inap.treatment  treatment
               Unsigned 32-bit integer
               inap.GapTreatment

           inap.triggerDPType  triggerDPType
               Unsigned 32-bit integer
               inap.TriggerDPType

           inap.triggerData  triggerData
               No value
               inap.TriggerData

           inap.triggerDataIdentifier  triggerDataIdentifier
               Unsigned 32-bit integer
               inap.T_triggerDataIdentifier

           inap.triggerID  triggerID
               Unsigned 32-bit integer
               inap.EventTypeBCSM

           inap.triggerId  triggerId
               Unsigned 32-bit integer
               inap.T_triggerId

           inap.triggerPar  triggerPar
               No value
               inap.T_triggerPar

           inap.triggerStatus  triggerStatus
               Unsigned 32-bit integer
               inap.TriggerStatus

           inap.triggerType  triggerType
               Unsigned 32-bit integer
               inap.TriggerType

           inap.triggers  triggers
               Unsigned 32-bit integer
               inap.Triggers

           inap.trunkGroupID  trunkGroupID
               Signed 32-bit integer
               inap.INTEGER

           inap.type  type
               Unsigned 32-bit integer
               inap.Code

           inap.uIScriptId  uIScriptId
               Unsigned 32-bit integer
               inap.Code

           inap.uIScriptResult  uIScriptResult
               No value
               inap.T_uIScriptResult

           inap.uIScriptSpecificInfo  uIScriptSpecificInfo
               No value
               inap.T_uIScriptSpecificInfo

           inap.uSIInformation  uSIInformation
               Byte array
               inap.USIInformation

           inap.uSIServiceIndicator  uSIServiceIndicator
               Unsigned 32-bit integer
               inap.USIServiceIndicator

           inap.uSImonitorMode  uSImonitorMode
               Unsigned 32-bit integer
               inap.USIMonitorMode

           inap.url  url
               String
               inap.IA5String_SIZE_1_512

           inap.userDialogueDurationInd  userDialogueDurationInd
               Boolean
               inap.BOOLEAN

           inap.vPNIndicator  vPNIndicator
               Boolean
               inap.VPNIndicator

           inap.value  value
               No value
               inap.T_value

           inap.variableMessage  variableMessage
               No value
               inap.T_variableMessage

           inap.variableParts  variableParts
               Unsigned 32-bit integer
               inap.SEQUENCE_SIZE_1_b3__maxVariableParts_OF_VariablePart

           inap.voiceBack  voiceBack
               Boolean
               inap.BOOLEAN

           inap.voiceInformation  voiceInformation
               Boolean
               inap.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
               ADPCM

           iax2.cap.alaw  Raw A-law data (G.711)
               Boolean
               Raw A-law data (G.711)

           iax2.cap.g723_1  G.723.1 compression
               Boolean
               G.723.1 compression

           iax2.cap.g726  G.726 compression
               Boolean
               G.726 compression

           iax2.cap.g729a  G.729a Audio
               Boolean
               G.729a Audio

           iax2.cap.gsm  GSM compression
               Boolean
               GSM compression

           iax2.cap.h261  H.261 video
               Boolean
               H.261 video

           iax2.cap.h263  H.263 video
               Boolean
               H.263 video

           iax2.cap.ilbc  iLBC Free compressed Audio
               Boolean
               iLBC Free compressed Audio

           iax2.cap.jpeg  JPEG images
               Boolean
               JPEG images

           iax2.cap.lpc10  LPC10, 180 samples/frame
               Boolean
               LPC10, 180 samples/frame

           iax2.cap.png  PNG images
               Boolean
               PNG images

           iax2.cap.slinear  Raw 16-bit Signed Linear (8000 Hz) PCM
               Boolean
               Raw 16-bit Signed Linear (8000 Hz) PCM

           iax2.cap.speex  SPEEX Audio
               Boolean
               SPEEX Audio

           iax2.cap.ulaw  Raw mu-law data (G.711)
               Boolean
               Raw mu-law data (G.711)

           iax2.control.subclass  Control subclass
               Unsigned 8-bit integer
               This gives the command number for a Control packet.

           iax2.dst_call  Destination call
               Unsigned 16-bit integer
               dst_call holds the number of this call at the packet destination

           iax2.dtmf.subclass  DTMF subclass (digit)
               NULL terminated string
               DTMF subclass gives the DTMF digit

           iax2.fragment  IAX2 Fragment data
               Frame number
               IAX2 Fragment data

           iax2.fragment.error  Defragmentation error
               Frame number
               Defragmentation error due to illegal fragments

           iax2.fragment.multipletails  Multiple tail fragments found
               Boolean
               Several tails were found when defragmenting the packet

           iax2.fragment.overlap  Fragment overlap
               Boolean
               Fragment overlaps with other fragments

           iax2.fragment.overlap.conflict  Conflicting data in fragment overlap
               Boolean
               Overlapping fragments contained conflicting data

           iax2.fragment.toolongfragment  Fragment too long
               Boolean
               Fragment contained data past end of packet

           iax2.fragments  IAX2 Fragments
               No value
               IAX2 Fragments

           iax2.iax.aesprovisioning  AES Provisioning info
               String

           iax2.iax.app_addr.sinaddr  Address
               IPv4 address
               Address

           iax2.iax.app_addr.sinfamily  Family
               Unsigned 16-bit integer
               Family

           iax2.iax.app_addr.sinport  Port
               Unsigned 16-bit integer
               Port

           iax2.iax.auth.challenge  Challenge data for MD5/RSA
               String

           iax2.iax.auth.md5  MD5 challenge result
               String

           iax2.iax.auth.methods  Authentication method(s)
               Unsigned 16-bit integer

           iax2.iax.auth.rsa  RSA challenge result
               String

           iax2.iax.autoanswer  Request auto-answering
               No value

           iax2.iax.call_no  Call number of peer
               Unsigned 16-bit integer

           iax2.iax.called_context  Context for number
               String

           iax2.iax.called_number  Number/extension being called
               String

           iax2.iax.calling_ani  Calling number ANI for billing
               String

           iax2.iax.calling_name  Name of caller
               String

           iax2.iax.calling_number  Calling number
               String

           iax2.iax.callingpres  Calling presentation
               Unsigned 8-bit integer

           iax2.iax.callingtns  Calling transit network select
               Unsigned 16-bit integer

           iax2.iax.callington  Calling type of number
               Unsigned 8-bit integer

           iax2.iax.capability  Actual codec capability
               Unsigned 32-bit integer

           iax2.iax.cause  Cause
               String

           iax2.iax.causecode  Hangup cause
               Unsigned 8-bit integer

           iax2.iax.codecprefs  Codec negotiation
               String

           iax2.iax.cpe_adsi  CPE ADSI capability
               Unsigned 16-bit integer

           iax2.iax.dataformat  Data call format
               Unsigned 32-bit integer

           iax2.iax.datetime  Date/Time
               Date/Time stamp

           iax2.iax.datetime.raw  Date/Time
               Unsigned 32-bit integer

           iax2.iax.devicetype  Device type
               String

           iax2.iax.dialplan_status  Dialplan status
               Unsigned 16-bit integer

           iax2.iax.dnid  Originally dialed DNID
               String

           iax2.iax.enckey  Encryption key
               String

           iax2.iax.encryption  Encryption format
               Unsigned 16-bit integer

           iax2.iax.firmwarever  Firmware version
               Unsigned 16-bit integer

           iax2.iax.format  Desired codec format
               Unsigned 32-bit integer

           iax2.iax.fwblockdata  Firmware block of data
               String

           iax2.iax.fwblockdesc  Firmware block description
               Unsigned 32-bit integer

           iax2.iax.iax_unknown  Unknown IAX command
               Byte array

           iax2.iax.language  Desired language
               String

           iax2.iax.moh  Request musiconhold with QUELCH
               No value

           iax2.iax.msg_count  How many messages waiting
               Signed 16-bit integer

           iax2.iax.password  Password for authentication
               String

           iax2.iax.provisioning  Provisioning info
               String

           iax2.iax.provver  Provisioning version
               Unsigned 32-bit integer

           iax2.iax.rdnis  Referring DNIS
               String

           iax2.iax.refresh  When to refresh registration
               Signed 16-bit integer

           iax2.iax.rrdelay  Max playout delay in ms for received frames
               Unsigned 16-bit integer

           iax2.iax.rrdropped  Dropped frames (presumably by jitterbuffer)
               Unsigned 32-bit integer

           iax2.iax.rrjitter  Received jitter (as in RFC1889)
               Unsigned 32-bit integer

           iax2.iax.rrloss  Received loss (high byte loss pct, low 24 bits loss count, as in rfc1889)
               Unsigned 32-bit integer

           iax2.iax.rrooo  Frame received out of order
               Unsigned 32-bit integer

           iax2.iax.rrpkts  Total frames received
               Unsigned 32-bit integer

           iax2.iax.samplingrate  Supported sampling rates
               Unsigned 16-bit integer

           iax2.iax.serviceident  Service identifier
               String

           iax2.iax.subclass  IAX subclass
               Unsigned 8-bit integer
               IAX subclass gives the command number for IAX signalling packets

           iax2.iax.transferid  Transfer Request Identifier
               Unsigned 32-bit integer

           iax2.iax.unknownbyte  Unknown
               Unsigned 8-bit integer
               Raw data for unknown IEs

           iax2.iax.unknownlong  Unknown
               Unsigned 32-bit integer
               Raw data for unknown IEs

           iax2.iax.unknownshort  Unknown
               Unsigned 16-bit integer
               Raw data for unknown IEs

           iax2.iax.unknownstring  Unknown
               String
               Raw data for unknown IEs

           iax2.iax.username  Username (peer or user) for authentication
               String

           iax2.iax.version  Protocol version
               Unsigned 16-bit integer

           iax2.iseqno  Inbound seq.no.
               Unsigned 16-bit integer
               iseqno is the sequence no of the last successfully received packet

           iax2.lateness  Lateness
               Time duration
               The lateness of this packet compared to its timestamp

           iax2.modem.subclass  Modem subclass
               Unsigned 8-bit integer
               Modem subclass gives the type of modem

           iax2.oseqno  Outbound seq.no.
               Unsigned 16-bit integer
               oseqno is the sequence no of this packet. The first packet has oseqno==0, and subsequent packets increment the oseqno by 1

           iax2.packet_type  Packet type
               Unsigned 8-bit integer
               Full/minivoice/minivideo/meta packet

           iax2.reassembled_in  IAX2 fragment, reassembled in frame
               Frame number
               This IAX2 packet is reassembled in this frame

           iax2.retransmission  Retransmission
               Boolean
               retransmission is set if this packet is a retransmission of an earlier failed packet

           iax2.src_call  Source call
               Unsigned 16-bit integer
               src_call holds the number of this call at the packet source pbx

           iax2.subclass  Unknown subclass
               Unsigned 8-bit integer
               Subclass of unknown type of full IAX2 frame

           iax2.timestamp  Timestamp
               Unsigned 32-bit integer
               timestamp is the time, in ms after the start of this call, at which this packet was transmitted

           iax2.type  Type
               Unsigned 8-bit integer
               For full IAX2 frames, type is the type of frame

           iax2.video.codec  CODEC
               Unsigned 32-bit integer
               The codec used to encode video data

           iax2.video.marker  Marker
               Unsigned 16-bit integer
               RTP end-of-frame marker

           iax2.video.subclass  Video Subclass (compressed codec no)
               Unsigned 8-bit integer
               Video Subclass (compressed codec no)

           iax2.voice.codec  CODEC
               Unsigned 32-bit integer
               CODEC gives the codec used to encode audio data

           iax2.voice.subclass  Voice Subclass (compressed codec no)
               Unsigned 8-bit integer
               Voice Subclass (compressed codec no)

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

   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.type  Type
               Unsigned 8-bit integer

   Internet Control Message Protocol v6 (icmpv6)
           icmpv6.all_comp  All Components
               Unsigned 16-bit integer
               All Components

           icmpv6.checksum  Checksum
               Unsigned 16-bit integer

           icmpv6.checksum_bad  Bad Checksum
               Boolean

           icmpv6.code  Code
               Unsigned 8-bit integer

           icmpv6.comp  Component
               Unsigned 16-bit integer
               Component

           icmpv6.haad.ha_addrs  Home Agent Addresses
               IPv6 address

           icmpv6.identifier  Identifier
               Unsigned 16-bit integer
               Identifier

           icmpv6.option  ICMPv6 Option
               No value
               Option

           icmpv6.option.cga  CGA
               Byte array
               CGA

           icmpv6.option.cga.count  Count
               Byte array
               Count

           icmpv6.option.cga.ext_length  Ext Length
               Byte array
               Ext Length

           icmpv6.option.cga.ext_type  Ext Type
               Byte array
               Ext Type

           icmpv6.option.cga.modifier  Modifier
               Byte array
               Modifier

           icmpv6.option.cga.pad_length  Pad Length
               Unsigned 8-bit integer
               Pad Length (in bytes)

           icmpv6.option.cga.subnet_prefix  Subnet Prefix
               Byte array
               Subnet Prefix

           icmpv6.option.length  Length
               Unsigned 8-bit integer
               Options length (in bytes)

           icmpv6.option.name_type  Name Type
               Unsigned 8-bit integer
               Name Type

           icmpv6.option.name_type.fqdn  FQDN
               String
               FQDN

           icmpv6.option.name_x501  DER Encoded X.501 Name
               Byte array
               DER Encoded X.501 Name

           icmpv6.option.rsa.key_hash  Key Hash
               Byte array
               Key Hash

           icmpv6.option.type  Type
               Unsigned 8-bit integer
               Options type

           icmpv6.ra.cur_hop_limit  Cur hop limit
               Unsigned 8-bit integer
               Current hop limit

           icmpv6.ra.reachable_time  Reachable time
               Unsigned 32-bit integer
               Reachable time (ms)

           icmpv6.ra.retrans_timer  Retrans timer
               Unsigned 32-bit integer
               Retrans timer (ms)

           icmpv6.ra.router_lifetime  Router lifetime
               Unsigned 16-bit integer
               Router lifetime (s)

           icmpv6.recursive_dns_serv  Recursive DNS Servers
               IPv6 address
               Recursive DNS Servers

           icmpv6.type  Type
               Unsigned 8-bit integer

           icmpv6.x509_Certificate  Certificate
               No value
               Certificate

           icmpv6.x509_Name  Name
               Unsigned 32-bit integer
               Name

   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
               Multicast 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
               Record Type

           igmp.reply  Reply
               Unsigned 8-bit integer
               IGMP V0 Reply

           igmp.reply.pending  Reply Pending
               Unsigned 8-bit integer
               IGMP V0 Reply Pending, Retry in this many seconds

           igmp.s  S
               Boolean
               Suppress Router Side Processing

           igmp.saddr  Source Address
               IPv4 address
               Source Address

           igmp.type  Type
               Unsigned 8-bit integer
               IGMP Packet Type

           igmp.version  IGMP Version
               Unsigned 8-bit integer
               IGMP Version

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

           igap.checksum  Checksum
               Unsigned 16-bit integer
               Checksum

           igap.checksum_bad  Bad Checksum
               Boolean
               Bad Checksum

           igap.maddr  Multicast group address
               IPv4 address
               Multicast group address

           igap.max_resp  Max Resp Time
               Unsigned 8-bit integer
               Max Response Time

           igap.msize  Message Size
               Unsigned 8-bit integer
               Length of the Message field

           igap.subtype  Subtype
               Unsigned 8-bit integer
               Subtype

           igap.type  Type
               Unsigned 8-bit integer
               IGAP Packet Type

           igap.version  Version
               Unsigned 8-bit integer
               IGAP protocol version

   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

           ip.flags.df  Don't fragment
               Boolean

           ip.flags.mf  More fragments
               Boolean

           ip.flags.rb  Reserved bit
               Boolean

           ip.frag_offset  Fragment offset
               Unsigned 16-bit integer
               Fragment offset (13 bits)

           ip.fragment  IP Fragment
               Frame number
               IP Fragment

           ip.fragment.error  Defragmentation error
               Frame number
               Defragmentation error due to illegal fragments

           ip.fragment.multipletails  Multiple tail fragments found
               Boolean
               Several tails were found when defragmenting the packet

           ip.fragment.overlap  Fragment overlap
               Boolean
               Fragment overlaps with other fragments

           ip.fragment.overlap.conflict  Conflicting data in fragment overlap
               Boolean
               Overlapping fragments contained conflicting data

           ip.fragment.toolongfragment  Fragment too long
               Boolean
               Fragment contained data past end of packet

           ip.fragments  IP Fragments
               No value
               IP Fragments

           ip.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_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.addr  Address
               IPv6 address
               Source or Destination IPv6 Address

           ipv6.class  Traffic class
               Unsigned 32-bit integer

           ipv6.dst  Destination
               IPv6 address
               Destination IPv6 Address

           ipv6.dst_host  Destination Host
               String
               Destination IPv6 Host

           ipv6.dst_opt  Destination Option
               No value
               Destination Option

           ipv6.flow  Flowlabel
               Unsigned 32-bit integer

           ipv6.fragment  IPv6 Fragment
               Frame number
               IPv6 Fragment

           ipv6.fragment.error  Defragmentation error
               Frame number
               Defragmentation error due to illegal fragments

           ipv6.fragment.more  More Fragment
               Boolean
               More Fragments

           ipv6.fragment.multipletails  Multiple tail fragments found
               Boolean
               Several tails were found when defragmenting the packet

           ipv6.fragment.offset  Offset
               Unsigned 16-bit integer
               Fragment Offset

           ipv6.fragment.overlap  Fragment overlap
               Boolean
               Fragment overlaps with other fragments

           ipv6.fragment.overlap.conflict  Conflicting data in fragment overlap
               Boolean
               Overlapping fragments contained conflicting data

           ipv6.fragment.toolongfragment  Fragment too long
               Boolean
               Fragment contained data past end of packet

           ipv6.fragments  IPv6 Fragments
               No value
               IPv6 Fragments

           ipv6.framgent.id  Identification
               Unsigned 32-bit integer
               Fragment Identification

           ipv6.hlim  Hop limit
               Unsigned 8-bit integer

           ipv6.hop_opt  Hop-by-Hop Option
               No value
               Hop-by-Hop Option

           ipv6.host  Host
               String
               IPv6 Host

           ipv6.mipv6_home_address  Home Address
               IPv6 address

           ipv6.mipv6_length  Option Length
               Unsigned 8-bit integer

           ipv6.mipv6_type  Option Type
               Unsigned 8-bit integer

           ipv6.nxt  Next header
               Unsigned 8-bit integer

           ipv6.opt.pad1  Pad1
               No value
               Pad1 Option

           ipv6.opt.padn  PadN
               Unsigned 8-bit integer
               PadN Option

           ipv6.plen  Payload length
               Unsigned 16-bit integer

           ipv6.reassembled_in  Reassembled IPv6 in frame
               Frame number
               This IPv6 packet is reassembled in this frame

           ipv6.routing_hdr  Routing Header, Type
               Unsigned 8-bit integer
               Routing Header Option

           ipv6.routing_hdr.addr  Address
               IPv6 address
               Routing Header Address

           ipv6.routing_hdr.left  Left Segments
               Unsigned 8-bit integer
               Routing Header Left Segments

           ipv6.routing_hdr.type  Type
               Unsigned 8-bit integer
               Routeing Header Type

           ipv6.shim6  SHIM6
               No value

           ipv6.shim6.checksum  Checksum
               Unsigned 16-bit integer
               Shim6 Checksum

           ipv6.shim6.checksum_bad  Bad Checksum
               Boolean
               Shim6 Bad Checksum

           ipv6.shim6.checksum_good  Good Checksum
               Boolean

           ipv6.shim6.ct  Context Tag
               No value

           ipv6.shim6.inonce  Initiator Nonce
               Unsigned 32-bit integer

           ipv6.shim6.len  Header Ext Length
               Unsigned 8-bit integer

           ipv6.shim6.loc.flags  Flags
               Unsigned 8-bit integer
               Locator Preferences Flags

           ipv6.shim6.loc.prio  Priority
               Unsigned 8-bit integer
               Locator Preferences Priority

           ipv6.shim6.loc.weight  Weight
               Unsigned 8-bit integer
               Locator Preferences Weight

           ipv6.shim6.locator  Locator
               IPv6 address
               Shim6 Locator

           ipv6.shim6.nxt  Next Header
               Unsigned 8-bit integer

           ipv6.shim6.opt.critical  Option Critical Bit
               Boolean
               TRUE : option is critical, FALSE: option is not critical

           ipv6.shim6.opt.elemlen  Element Length
               Unsigned 8-bit integer
               Length of Elements in Locator Preferences Option

           ipv6.shim6.opt.fii  Forked Instance Identifier
               Unsigned 32-bit integer

           ipv6.shim6.opt.len  Content Length
               Unsigned 16-bit integer
               Content Length Option

           ipv6.shim6.opt.loclist  Locator List Generation
               Unsigned 32-bit integer

           ipv6.shim6.opt.locnum  Num Locators
               Unsigned 8-bit integer
               Number of Locators in Locator List

           ipv6.shim6.opt.total_len  Total Length
               Unsigned 16-bit integer
               Total Option Length

           ipv6.shim6.opt.type  Option Type
               Unsigned 16-bit integer
               Shim6 Option Type

           ipv6.shim6.opt.verif_method  Verification Method
               Unsigned 8-bit integer
               Locator Verification Method

           ipv6.shim6.p  P Bit
               Boolean

           ipv6.shim6.pdata  Data
               Unsigned 32-bit integer
               Shim6 Probe Data

           ipv6.shim6.pdst  Destination Address
               IPv6 address
               Shim6 Probe Destination Address

           ipv6.shim6.pnonce  Nonce
               Unsigned 32-bit integer
               Shim6 Probe Nonce

           ipv6.shim6.precvd  Probes Received
               Unsigned 8-bit integer

           ipv6.shim6.proto  Protocol
               Unsigned 8-bit integer

           ipv6.shim6.psent  Probes Sent
               Unsigned 8-bit integer

           ipv6.shim6.psrc  Source Address
               IPv6 address
               Shim6 Probe Source Address

           ipv6.shim6.reap  REAP State
               Unsigned 8-bit integer

           ipv6.shim6.rnonce  Responder Nonce
               Unsigned 32-bit integer

           ipv6.shim6.rulid  Receiver ULID
               IPv6 address
               Shim6 Receiver ULID

           ipv6.shim6.sulid  Sender ULID
               IPv6 address
               Shim6 Sender ULID

           ipv6.shim6.type  Message Type
               Unsigned 8-bit integer

           ipv6.src  Source
               IPv6 address
               Source IPv6 Address

           ipv6.src_host  Source Host
               String
               Source IPv6 Host

           ipv6.unknown_hdr  Unknown Extension Header
               No value
               Unknown Extension Header

           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.cert_authority  Certificate Authority
               Byte array
               SHA-1 hash of the Certificate Authority

           ike.cert_authority_dn  Certificate Authority Distinguished Name
               Unsigned 32-bit integer
               Certificate Authority Distinguished Name

           ike.nat_keepalive  NAT Keepalive
               No value
               NAT Keepalive packet

           isakmp.cert.encoding  Port
               Unsigned 8-bit integer
               ISAKMP Certificate Encoding

           isakmp.certificate  Certificate
               No value
               ISAKMP Certificate Encoding

           isakmp.certreq.type  Port
               Unsigned 8-bit integer
               ISAKMP Certificate Request Type

           isakmp.doi  Domain of interpretation
               Unsigned 32-bit integer
               ISAKMP Domain of Interpretation

           isakmp.exchangetype  Exchange type
               Unsigned 8-bit integer
               ISAKMP Exchange Type

           isakmp.flags  Flags
               Unsigned 8-bit integer
               ISAKMP Flags

           isakmp.frag.last  Frag last
               Unsigned 8-bit integer
               ISAKMP last fragment

           isakmp.frag.packetid  Frag ID
               Unsigned 16-bit integer
               ISAKMP fragment packet-id

           isakmp.icookie  Initiator cookie
               Byte array
               ISAKMP Initiator Cookie

           isakmp.id.port  Port
               Unsigned 16-bit integer
               ISAKMP ID Port

           isakmp.id.type  ID type
               Unsigned 8-bit integer
               ISAKMP ID Type

           isakmp.length  Length
               Unsigned 32-bit integer
               ISAKMP Length

           isakmp.messageid  Message ID
               Unsigned 32-bit integer
               ISAKMP Message ID

           isakmp.nextpayload  Next payload
               Unsigned 8-bit integer
               ISAKMP Next Payload

           isakmp.notify.msgtype  Port
               Unsigned 8-bit integer
               ISAKMP Notify Message Type

           isakmp.payloadlength  Payload length
               Unsigned 16-bit integer
               ISAKMP Payload Length

           isakmp.prop.number  Proposal number
               Unsigned 8-bit integer
               ISAKMP Proposal Number

           isakmp.prop.transforms  Proposal transforms
               Unsigned 8-bit integer
               ISAKMP Proposal Transforms

           isakmp.protoid  Protocol ID
               Unsigned 8-bit integer
               ISAKMP Protocol ID

           isakmp.rcookie  Responder cookie
               Byte array
               ISAKMP Responder Cookie

           isakmp.sa.situation  Situation
               Byte array
               ISAKMP SA Situation

           isakmp.spinum  Port
               Unsigned 16-bit integer
               ISAKMP Number of SPIs

           isakmp.spisize  SPI Size
               Unsigned 8-bit integer
               ISAKMP SPI Size

           isakmp.trans.id  Transform ID
               Unsigned 8-bit integer
               ISAKMP Transform ID

           isakmp.trans.number  Transform number
               Unsigned 8-bit integer
               ISAKMP Transform Number

           isakmp.version  Version
               Unsigned 8-bit integer
               ISAKMP Version (major + minor)

           msg.fragment  Message fragment
               Frame number

           msg.fragment.error  Message defragmentation error
               Frame number

           msg.fragment.multiple_tails  Message has multiple tail fragments
               Boolean

           msg.fragment.overlap  Message fragment overlap
               Boolean

           msg.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
               Boolean

           msg.fragment.too_long_fragment  Message fragment too long
               Boolean

           msg.fragments  Message fragments
               No value

           msg.reassembled.in  Reassembled in
               Frame number

   Internetwork Datagram Protocol (idp)
           idp.checksum  Checksum
               Unsigned 16-bit integer

           idp.dst  Destination Address
               String
               Destination Address

           idp.dst.net  Destination Network
               Unsigned 32-bit integer

           idp.dst.node  Destination Node
               6-byte Hardware (MAC) Address

           idp.dst.socket  Destination Socket
               Unsigned 16-bit integer

           idp.hops  Transport Control (Hops)
               Unsigned 8-bit integer

           idp.len  Length
               Unsigned 16-bit integer

           idp.packet_type  Packet Type
               Unsigned 8-bit integer

           idp.src  Source Address
               String
               Source Address

           idp.src.net  Source Network
               Unsigned 32-bit integer

           idp.src.node  Source Node
               6-byte Hardware (MAC) Address

           idp.src.socket  Source Socket
               Unsigned 16-bit integer

   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.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
               Start of Segment header

           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
               Start of Frame header

           image-jfif.sof.c_i  Component identifier
               Unsigned 8-bit integer
               Assigns a unique label to the ith component in the sequence of frame component specification parameters.

           image-jfif.sof.h_i  Horizontal sampling factor
               Unsigned 8-bit integer
               Specifies the relationship between the component horizontal dimension and maximum image dimension X.

           image-jfif.sof.lines  Lines
               Unsigned 16-bit integer
               Specifies the maximum number of lines in the source image.

           image-jfif.sof.nf  Number of image components in frame
               Unsigned 8-bit integer
               Specifies the number of source image components in the frame.

           image-jfif.sof.precision  Sample Precision (bits)
               Unsigned 8-bit integer
               Specifies the precision in bits for the samples of the components in the frame.

           image-jfif.sof.samples_per_line  Samples per line
               Unsigned 16-bit integer
               Specifies the maximum number of samples per line in the source image.

           image-jfif.sof.tq_i  Quantization table destination selector
               Unsigned 8-bit integer
               Specifies one of four possible quantization table destinations from which the quantization table to use for dequantization of DCT coefficients of component Ci is retrieved.

           image-jfif.sof.v_i  Vertical sampling factor
               Unsigned 8-bit integer
               Specifies the relationship between the component vertical dimension and maximum image dimension Y.

           image-jfif.sos.ac_entropy_selector  AC entropy coding table destination selector
               Unsigned 8-bit integer
               Specifies one of four possible AC entropy coding table destinations from which the entropy table needed for decoding of the AC coefficients of component Csj is retrieved.

           image-jfif.sos.ah  Successive approximation bit position high
               Unsigned 8-bit integer
               This parameter specifies the point transform used in the preceding scan (i.e. successive approximation bit position low in the preceding scan) for the band of coefficients specified by Ss and Se. This parameter shall be set to zero for the first scan of each band of coefficients. In the lossless mode of operations this parameter has no meaning. It shall be set to zero.

           image-jfif.sos.al  Successive approximation bit position low or point transform
               Unsigned 8-bit integer
               In the DCT modes of operation this parameter specifies the point transform, i.e. bit position low, used before coding the band of coefficients specified by Ss and Se. This parameter shall be set to zero for the sequential DCT processes. In the lossless mode of operations, this parameter specifies the point transform, Pt.

           image-jfif.sos.component_selector  Scan component selector
               Unsigned 8-bit integer
               Selects which of the Nf image components specified in the frame parameters shall be the jth component in the scan.

           image-jfif.sos.dc_entropy_selector  DC entropy coding table destination selector
               Unsigned 8-bit integer
               Specifies one of four possible DC entropy coding table destinations from which the entropy table needed for decoding of the DC coefficients of component Csj is retrieved.

           image-jfif.sos.ns  Number of image components in scan
               Unsigned 8-bit integer
               Specifies the number of source image components in the scan.

           image-jfif.sos.se  End of spectral selection
               Unsigned 8-bit integer
               Specifies the last DCT coefficient in each block in zig-zag order which shall be coded in the scan. This parameter shall be set to 63 for the sequential DCT processes. In the lossless mode of operations this parameter has no meaning. It shall be set to zero.

           image-jfif.sos.ss  Start of spectral or predictor selection
               Unsigned 8-bit integer
               In the DCT modes of operation, this parameter specifies the first DCT coefficient in each block in zig-zag order which shall be coded in the scan. This parameter shall be set to zero for the sequential DCT processes. In the lossless mode of operations this parameter is used to select the predictor.

           image-jfif.units  Units
               Unsigned 8-bit integer
               Units used in this segment

           image-jfif.version  Version
               No value
               JFIF Version

           image-jfif.version.major  Major Version
               Unsigned 8-bit integer
               JFIF Major Version

           image-jfif.version.minor  Minor Version
               Unsigned 8-bit integer
               JFIF Minor Version

           image-jfifmarker_segment  Marker segment
               No value
               Marker segment

   JXTA 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

           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 UDP

           jxta.udpsig  Signature
               String
               JXTA UDP Signature

           jxta.welcome  Welcome
               No value
               JXTA Connection Welcome Message

           jxta.welcome.destAddr  Destination Address
               String
               JXTA Connection Welcome Message Destination Address

           jxta.welcome.initiator  Initiator
               Boolean
               JXTA Connection Welcome Message Initiator

           jxta.welcome.msgVersion  Preferred Message Version
               String
               JXTA Connection Welcome Message Preferred Message Version

           jxta.welcome.noPropFlag  No Propagate Flag
               String
               JXTA Connection Welcome Message No Propagate Flag

           jxta.welcome.peerid  PeerID
               String
               JXTA Connection Welcome Message PeerID

           jxta.welcome.pubAddr  Public Address
               String
               JXTA Connection Welcome Message Public Address

           jxta.welcome.signature  Signature
               String
               JXTA Connection Welcome Message Signature

           jxta.welcome.variable  Variable Parameter
               String
               JXTA Connection Welcome Message Variable Parameter

           jxta.welcome.version  Version
               String
               JXTA Connection Welcome Message Version

           uri.addr  Address
               String
               URI Address (source or destination)

           uri.dst  Destination
               String
               URI Destination

           uri.src  Source
               String
               URI Source

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

           nsrp.ns  Ns
               Unsigned 16-bit integer
               Ns

           nsrp.priority  Priority
               Unsigned 8-bit integer
               NSRP Priority

           nsrp.reserved  Reserved
               Unsigned 16-bit integer
               RESERVED

           nsrp.src  Source
               Unsigned 32-bit integer
               SOURCE UNIT INFORMATION

           nsrp.totalsize  Total Size
               Unsigned 32-bit integer
               NSRP MSG TOTAL MESSAGE

           nsrp.type  Type
               Unsigned 8-bit integer
               NSRP Message Type

           nsrp.version  Version
               Unsigned 8-bit integer
               NSRP Version

           nsrp.wst  Wst group
               Unsigned 8-bit integer
               NSRP WST GROUP

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

           kerberos.addr_ipv6  IPv6 Address
               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.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
               Salt

           kerberos.etype_info2.salt  Salt
               Byte array
               Salt

           kerberos.etypes  Encryption Types
               No value
               This is a list of Kerberos encryption types

           kerberos.from  from
               String
               From when the ticket is to be valid (postdating)

           kerberos.gssapi.bdn  Bnd
               Byte array
               GSSAPI Bnd field

           kerberos.gssapi.checksum.flags.conf  Conf
               Boolean

           kerberos.gssapi.checksum.flags.dce-style  DCE-style
               Boolean

           kerberos.gssapi.checksum.flags.deleg  Deleg
               Boolean

           kerberos.gssapi.checksum.flags.integ  Integ
               Boolean

           kerberos.gssapi.checksum.flags.mutual  Mutual
               Boolean

           kerberos.gssapi.checksum.flags.replay  Replay
               Boolean

           kerberos.gssapi.checksum.flags.sequence  Sequence
               Boolean

           kerberos.gssapi.dlglen  DlgLen
               Unsigned 16-bit integer
               GSSAPI DlgLen

           kerberos.gssapi.dlgopt  DlgOpt
               Unsigned 16-bit integer
               GSSAPI DlgOpt

           kerberos.gssapi.len  Length
               Unsigned 32-bit integer
               Length of GSSAPI Bnd field

           kerberos.hostaddress  HostAddress
               No value
               This is a Kerberos HostAddress sequence

           kerberos.hostaddresses  HostAddresses
               No value
               This is a list of Kerberos HostAddress sequences

           kerberos.if_relevant  IF_RELEVANT
               No value
               This is a list of IF-RELEVANT sequences

           kerberos.kdc_req_body  KDC_REQ_BODY
               No value
               Kerberos KDC REQuest BODY

           kerberos.kdcoptions  KDCOptions
               Byte array
               Kerberos KDCOptions bitstring

           kerberos.kdcoptions.allow_postdate  Allow Postdate
               Boolean
               Flag controlling whether we allow postdated tickets or not

           kerberos.kdcoptions.canonicalize  Canonicalize
               Boolean
               Do we want the KDC to canonicalize the principal or not

           kerberos.kdcoptions.constrained_delegation  Constrained Delegation
               Boolean
               Do we want a PAC containing constrained delegation info or not

           kerberos.kdcoptions.disable_transited_check  Disable Transited Check
               Boolean
               Whether we should do transited checking or not

           kerberos.kdcoptions.enc_tkt_in_skey  Enc-Tkt-in-Skey
               Boolean
               Whether the ticket is encrypted in the skey or not

           kerberos.kdcoptions.forwardable  Forwardable
               Boolean
               Flag controlling whether the 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
               V2 Procedure

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

           krb4.encrypted_blob  Encrypted Blob
               Byte array
               Encrypted blob

           krb4.exp_date  Exp Date
               Date/Time stamp
               Exp Date

           krb4.instance  Instance
               NULL terminated string
               Instance

           krb4.kvno  Kvno
               Unsigned 8-bit integer
               Key Version No

           krb4.length  Length
               Unsigned 32-bit integer
               Length of encrypted blob

           krb4.lifetime  Lifetime
               Unsigned 8-bit integer
               Lifetime (in 5 min units)

           krb4.m_type  M Type
               Unsigned 8-bit integer
               Message Type

           krb4.name  Name
               NULL terminated string
               Name

           krb4.realm  Realm
               NULL terminated string
               Realm

           krb4.req_date  Req Date
               Date/Time stamp
               Req Date

           krb4.request.blob  Request Blob
               Byte array
               Request Blob

           krb4.request.length  Request Length
               Unsigned 8-bit integer
               Length of request

           krb4.s_instance  Service Instance
               NULL terminated string
               Service Instance

           krb4.s_name  Service Name
               NULL terminated string
               Service Name

           krb4.ticket.blob  Ticket Blob
               Byte array
               Ticket blob

           krb4.ticket.length  Ticket Length
               Unsigned 8-bit integer
               Length of ticket

           krb4.time_sec  Time Sec
               Date/Time stamp
               Time Sec

           krb4.unknown_transarc_blob  Unknown Transarc Blob
               Byte array
               Unknown blob only present in Transarc packets

           krb4.version  Version
               Unsigned 8-bit integer
               Kerberos(v4) version number

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

           klm.servername  server name
               String
               Server name

           klm.stats  stats
               Unsigned 32-bit integer
               stats

   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

   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-length  Payload Length
               Unsigned 16-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
               Timestamp

           LANforge.ts-nsecs  Timestamp nsecs
               Unsigned 32-bit integer
               Timestamp nsecs

           LANforge.ts-secs  Timestamp Secs
               Unsigned 32-bit integer
               Timestamp secs

   LGE Monitor (lge_monitor)
           lge_monitor.dir  Direction
               Unsigned 32-bit integer
               Direction

           lge_monitor.length  Payload Length
               Unsigned 32-bit integer
               Payload Length

           lge_monitor.prot  Protocol Identifier
               Unsigned 32-bit integer
               Protocol Identifier

   LTE Radio Resource Control (RRC) protocol (lte_rrc)
           lte-rrc.AccessClassBarringList_item  AccessClassBarringList item
               No value
               lte_rrc.AccessClassBarringList_item

           lte-rrc.AdditionalReestabInfoList_item  AdditionalReestabInfoList item
               No value
               lte_rrc.AdditionalReestabInfoList_item

           lte-rrc.BCCH_BCH_Message  BCCH-BCH-Message
               No value
               lte_rrc.BCCH_BCH_Message

           lte-rrc.BCCH_DL_SCH_Message  BCCH-DL-SCH-Message
               No value
               lte_rrc.BCCH_DL_SCH_Message

           lte-rrc.BlackListedCellsToAddModifyList_item  BlackListedCellsToAddModifyList item
               No value
               lte_rrc.BlackListedCellsToAddModifyList_item

           lte-rrc.CDMA2000_CellIdentity  CDMA2000-CellIdentity
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_CellIdentity

           lte-rrc.CDMA2000_CellsToAddModifyList_item  CDMA2000-CellsToAddModifyList item
               No value
               lte_rrc.CDMA2000_CellsToAddModifyList_item

           lte-rrc.CDMA2000_NeighbourCellList_item  CDMA2000-NeighbourCellList item
               No value
               lte_rrc.CDMA2000_NeighbourCellList_item

           lte-rrc.CDMA2000_NeighbourCellsPerBandclass_item  CDMA2000-NeighbourCellsPerBandclass item
               No value
               lte_rrc.CDMA2000_NeighbourCellsPerBandclass_item

           lte-rrc.CellIndexList_item  CellIndexList item
               No value
               lte_rrc.CellIndexList_item

           lte-rrc.CellsTriggeredList_item  CellsTriggeredList item
               No value
               lte_rrc.CellsTriggeredList_item

           lte-rrc.DL_CCCH_Message  DL-CCCH-Message
               No value
               lte_rrc.DL_CCCH_Message

           lte-rrc.DL_DCCH_Message  DL-DCCH-Message
               No value
               lte_rrc.DL_DCCH_Message

           lte-rrc.DRB_CountInfoList_item  DRB-CountInfoList item
               No value
               lte_rrc.DRB_CountInfoList_item

           lte-rrc.DRB_CountMSB_InfoList_item  DRB-CountMSB-InfoList item
               No value
               lte_rrc.DRB_CountMSB_InfoList_item

           lte-rrc.DRB_ToAddModifyList_item  DRB-ToAddModifyList item
               No value
               lte_rrc.DRB_ToAddModifyList_item

           lte-rrc.DRB_ToReleaseList_item  DRB-ToReleaseList item
               No value
               lte_rrc.DRB_ToReleaseList_item

           lte-rrc.EUTRA_BandList_item  EUTRA-BandList item
               No value
               lte_rrc.EUTRA_BandList_item

           lte-rrc.GERAN_ARFCN_Value  GERAN-ARFCN-Value
               Unsigned 32-bit integer
               lte_rrc.GERAN_ARFCN_Value

           lte-rrc.GERAN_BCCH_Group  GERAN-BCCH-Group
               No value
               lte_rrc.GERAN_BCCH_Group

           lte-rrc.GERAN_CarrierFreqList  GERAN-CarrierFreqList
               No value
               lte_rrc.GERAN_CarrierFreqList

           lte-rrc.GERAN_FreqPriorityList_item  GERAN-FreqPriorityList item
               No value
               lte_rrc.GERAN_FreqPriorityList_item

           lte-rrc.GERAN_SystemInformation_item  GERAN-SystemInformation item
               Byte array
               lte_rrc.OCTET_STRING_SIZE_1_23

           lte-rrc.HRPD_BandClassList_item  HRPD-BandClassList item
               No value
               lte_rrc.HRPD_BandClassList_item

           lte-rrc.HRPD_BandClassPriorityList_item  HRPD-BandClassPriorityList item
               No value
               lte_rrc.HRPD_BandClassPriorityList_item

           lte-rrc.HRPD_SecondaryPreRegistrationZoneIdList_item  HRPD-SecondaryPreRegistrationZoneIdList item
               No value
               lte_rrc.HRPD_SecondaryPreRegistrationZoneIdList_item

           lte-rrc.IMSI_Digit  IMSI-Digit
               Unsigned 32-bit integer
               lte_rrc.IMSI_Digit

           lte-rrc.InterFreqBlacklistedCellList_item  InterFreqBlacklistedCellList item
               No value
               lte_rrc.InterFreqBlacklistedCellList_item

           lte-rrc.InterFreqCarrierFreqList_item  InterFreqCarrierFreqList item
               No value
               lte_rrc.InterFreqCarrierFreqList_item

           lte-rrc.InterFreqEUTRA_BandList_item  InterFreqEUTRA-BandList item
               No value
               lte_rrc.InterFreqEUTRA_BandList_item

           lte-rrc.InterFreqNeighbouringCellList_item  InterFreqNeighbouringCellList item
               No value
               lte_rrc.InterFreqNeighbouringCellList_item

           lte-rrc.InterFreqPriorityList_item  InterFreqPriorityList item
               No value
               lte_rrc.InterFreqPriorityList_item

           lte-rrc.InterRAT_BandList_item  InterRAT-BandList item
               No value
               lte_rrc.InterRAT_BandList_item

           lte-rrc.IntraFreqBlacklistedCellList_item  IntraFreqBlacklistedCellList item
               No value
               lte_rrc.IntraFreqBlacklistedCellList_item

           lte-rrc.IntraFreqNeighbouringCellList_item  IntraFreqNeighbouringCellList item
               No value
               lte_rrc.IntraFreqNeighbouringCellList_item

           lte-rrc.MBSFN_SubframeConfiguration_item  MBSFN-SubframeConfiguration item
               No value
               lte_rrc.MBSFN_SubframeConfiguration_item

           lte-rrc.MCC_MNC_Digit  MCC-MNC-Digit
               Unsigned 32-bit integer
               lte_rrc.MCC_MNC_Digit

           lte-rrc.MeasIdToAddModifyList_item  MeasIdToAddModifyList item
               No value
               lte_rrc.MeasIdToAddModifyList_item

           lte-rrc.MeasIdToRemoveList_item  MeasIdToRemoveList item
               No value
               lte_rrc.MeasIdToRemoveList_item

           lte-rrc.MeasObjectToAddModifyList_item  MeasObjectToAddModifyList item
               No value
               lte_rrc.MeasObjectToAddModifyList_item

           lte-rrc.MeasObjectToRemoveList_item  MeasObjectToRemoveList item
               No value
               lte_rrc.MeasObjectToRemoveList_item

           lte-rrc.MeasResultListCDMA2000_item  MeasResultListCDMA2000 item
               No value
               lte_rrc.MeasResultListCDMA2000_item

           lte-rrc.MeasResultListEUTRA_item  MeasResultListEUTRA item
               No value
               lte_rrc.MeasResultListEUTRA_item

           lte-rrc.MeasResultListGERAN_item  MeasResultListGERAN item
               No value
               lte_rrc.MeasResultListGERAN_item

           lte-rrc.MeasResultListUTRA_item  MeasResultListUTRA item
               No value
               lte_rrc.MeasResultListUTRA_item

           lte-rrc.NAS_DedicatedInformation  NAS-DedicatedInformation
               Byte array
               lte_rrc.NAS_DedicatedInformation

           lte-rrc.NeighCellsToAddModifyList_item  NeighCellsToAddModifyList item
               No value
               lte_rrc.NeighCellsToAddModifyList_item

           lte-rrc.OneXRTT_BandClassList_item  OneXRTT-BandClassList item
               No value
               lte_rrc.OneXRTT_BandClassList_item

           lte-rrc.OneXRTT_BandClassPriorityList_item  OneXRTT-BandClassPriorityList item
               No value
               lte_rrc.OneXRTT_BandClassPriorityList_item

           lte-rrc.PCCH_Message  PCCH-Message
               No value
               lte_rrc.PCCH_Message

           lte-rrc.PLMN_IdentityList2_item  PLMN-IdentityList2 item
               No value
               lte_rrc.PLMN_IdentityList2_item

           lte-rrc.PLMN_IdentityList_item  PLMN-IdentityList item
               No value
               lte_rrc.PLMN_IdentityList_item

           lte-rrc.PagingRecord  PagingRecord
               No value
               lte_rrc.PagingRecord

           lte-rrc.RAT_Type  RAT-Type
               Unsigned 32-bit integer
               lte_rrc.RAT_Type

           lte-rrc.ReportConfigToAddModifyList_item  ReportConfigToAddModifyList item
               No value
               lte_rrc.ReportConfigToAddModifyList_item

           lte-rrc.ReportConfigToRemoveList_item  ReportConfigToRemoveList item
               No value
               lte_rrc.ReportConfigToRemoveList_item

           lte-rrc.SIB_Type  SIB-Type
               Unsigned 32-bit integer
               lte_rrc.SIB_Type

           lte-rrc.SRB_ToAddModifyList_item  SRB-ToAddModifyList item
               No value
               lte_rrc.SRB_ToAddModifyList_item

           lte-rrc.SchedulingInformation_item  SchedulingInformation item
               No value
               lte_rrc.SchedulingInformation_item

           lte-rrc.Supported1xRTT_BandList_item  Supported1xRTT-BandList item
               No value
               lte_rrc.Supported1xRTT_BandList_item

           lte-rrc.SupportedEUTRA_BandList_item  SupportedEUTRA-BandList item
               No value
               lte_rrc.SupportedEUTRA_BandList_item

           lte-rrc.SupportedGERAN_BandList_item  SupportedGERAN-BandList item
               No value
               lte_rrc.SupportedGERAN_BandList_item

           lte-rrc.SupportedHRPD_BandList_item  SupportedHRPD-BandList item
               No value
               lte_rrc.SupportedHRPD_BandList_item

           lte-rrc.SupportedUTRA_FDD_BandList_item  SupportedUTRA-FDD-BandList item
               No value
               lte_rrc.SupportedUTRA_FDD_BandList_item

           lte-rrc.SupportedUTRA_TDD128BandList_item  SupportedUTRA-TDD128BandList item
               No value
               lte_rrc.SupportedUTRA_TDD128BandList_item

           lte-rrc.SupportedUTRA_TDD384BandList_item  SupportedUTRA-TDD384BandList item
               No value
               lte_rrc.SupportedUTRA_TDD384BandList_item

           lte-rrc.SupportedUTRA_TDD768BandList_item  SupportedUTRA-TDD768BandList item
               No value
               lte_rrc.SupportedUTRA_TDD768BandList_item

           lte-rrc.UECapabilityInformation  UECapabilityInformation
               No value
               lte_rrc.UECapabilityInformation

           lte-rrc.UECapabilityInformation_r8_IEs_item  UECapabilityInformation-r8-IEs item
               No value
               lte_rrc.UECapabilityInformation_r8_IEs_item

           lte-rrc.UL_CCCH_Message  UL-CCCH-Message
               No value
               lte_rrc.UL_CCCH_Message

           lte-rrc.UL_DCCH_Message  UL-DCCH-Message
               No value
               lte_rrc.UL_DCCH_Message

           lte-rrc.UTRA_FDD_CarrierFreqList_item  UTRA-FDD-CarrierFreqList item
               No value
               lte_rrc.UTRA_FDD_CarrierFreqList_item

           lte-rrc.UTRA_FDD_CellsToAddModifyList_item  UTRA-FDD-CellsToAddModifyList item
               No value
               lte_rrc.UTRA_FDD_CellsToAddModifyList_item

           lte-rrc.UTRA_FDD_FreqPriorityList_item  UTRA-FDD-FreqPriorityList item
               No value
               lte_rrc.UTRA_FDD_FreqPriorityList_item

           lte-rrc.UTRA_TDD_CarrierFreqList_item  UTRA-TDD-CarrierFreqList item
               No value
               lte_rrc.UTRA_TDD_CarrierFreqList_item

           lte-rrc.UTRA_TDD_CellsToAddModifyList_item  UTRA-TDD-CellsToAddModifyList item
               No value
               lte_rrc.UTRA_TDD_CellsToAddModifyList_item

           lte-rrc.UTRA_TDD_FreqPriorityList_item  UTRA-TDD-FreqPriorityList item
               No value
               lte_rrc.UTRA_TDD_FreqPriorityList_item

           lte-rrc.VarMeasurementReports_item  VarMeasurementReports item
               No value
               lte_rrc.VarMeasurementReports_item

           lte-rrc.a1_Threshold  a1-Threshold
               Unsigned 32-bit integer
               lte_rrc.ThresholdEUTRA

           lte-rrc.a2_Threshold  a2-Threshold
               Unsigned 32-bit integer
               lte_rrc.ThresholdEUTRA

           lte-rrc.a3_Offset  a3-Offset
               Signed 32-bit integer
               lte_rrc.INTEGER_M30_30

           lte-rrc.a4_Threshold  a4-Threshold
               Unsigned 32-bit integer
               lte_rrc.ThresholdEUTRA

           lte-rrc.a5_Threshold1  a5-Threshold1
               Unsigned 32-bit integer
               lte_rrc.ThresholdEUTRA

           lte-rrc.a5_Threshold2  a5-Threshold2
               Unsigned 32-bit integer
               lte_rrc.ThresholdEUTRA

           lte-rrc.accessBarringForEmergencyCalls  accessBarringForEmergencyCalls
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.accessBarringForOriginatingCalls  accessBarringForOriginatingCalls
               No value
               lte_rrc.AccessClassBarringInformation

           lte-rrc.accessBarringForSignalling  accessBarringForSignalling
               No value
               lte_rrc.AccessClassBarringInformation

           lte-rrc.accessBarringInformation  accessBarringInformation
               No value
               lte_rrc.T_accessBarringInformation

           lte-rrc.accessBarringTime  accessBarringTime
               Unsigned 32-bit integer
               lte_rrc.T_accessBarringTime

           lte-rrc.accessClassBarring  accessClassBarring
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.accessClassBarringList  accessClassBarringList
               Unsigned 32-bit integer
               lte_rrc.AccessClassBarringList

           lte-rrc.accessProbabilityFactor  accessProbabilityFactor
               Unsigned 32-bit integer
               lte_rrc.T_accessProbabilityFactor

           lte-rrc.accessStratumRelease  accessStratumRelease
               Unsigned 32-bit integer
               lte_rrc.AccessStratumRelease

           lte-rrc.accumulationEnabled  accumulationEnabled
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.ackNackRepetition  ackNackRepetition
               Unsigned 32-bit integer
               lte_rrc.T_ackNackRepetition

           lte-rrc.ackNackSrsSimultaneousTransmission  ackNackSrsSimultaneousTransmission
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.activate  activate
               No value
               lte_rrc.T_activate

           lte-rrc.additionalReestabInfoList  additionalReestabInfoList
               Unsigned 32-bit integer
               lte_rrc.AdditionalReestabInfoList

           lte-rrc.additionalSpectrumEmission  additionalSpectrumEmission
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_31

           lte-rrc.alpha  alpha
               Unsigned 32-bit integer
               lte_rrc.T_alpha

           lte-rrc.am  am
               No value
               lte_rrc.T_am

           lte-rrc.antennaInformation  antennaInformation
               Unsigned 32-bit integer
               lte_rrc.T_antennaInformation

           lte-rrc.antennaInformationCommon  antennaInformationCommon
               No value
               lte_rrc.AntennaInformationCommon

           lte-rrc.antennaPortsCount  antennaPortsCount
               Unsigned 32-bit integer
               lte_rrc.T_antennaPortsCount

           lte-rrc.arfcn  arfcn
               Unsigned 32-bit integer
               lte_rrc.GERAN_ARFCN_Value

           lte-rrc.arfcn_Spacing  arfcn-Spacing
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_8

           lte-rrc.as_Configuration  as-Configuration
               No value
               lte_rrc.AS_Configuration

           lte-rrc.as_Context  as-Context
               No value
               lte_rrc.AS_Context

           lte-rrc.b1_Threshold  b1-Threshold
               Unsigned 32-bit integer
               lte_rrc.T_b1_Threshold

           lte-rrc.b1_Threshold_CDMA2000  b1-Threshold-CDMA2000
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_63

           lte-rrc.b1_Threshold_GERAN  b1-Threshold-GERAN
               Unsigned 32-bit integer
               lte_rrc.ThresholdGERAN

           lte-rrc.b1_Threshold_UTRA  b1-Threshold-UTRA
               Unsigned 32-bit integer
               lte_rrc.ThresholdUTRA

           lte-rrc.b2_Threshold1  b2-Threshold1
               Unsigned 32-bit integer
               lte_rrc.ThresholdEUTRA

           lte-rrc.b2_Threshold2  b2-Threshold2
               Unsigned 32-bit integer
               lte_rrc.T_b2_Threshold2

           lte-rrc.b2_Threshold2_CDMA2000  b2-Threshold2-CDMA2000
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_63

           lte-rrc.b2_Threshold2_GERAN  b2-Threshold2-GERAN
               Unsigned 32-bit integer
               lte_rrc.ThresholdGERAN

           lte-rrc.b2_Threshold2_UTRA  b2-Threshold2-UTRA
               Unsigned 32-bit integer
               lte_rrc.ThresholdUTRA

           lte-rrc.bandClass  bandClass
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_Bandclass

           lte-rrc.bandIndicator  bandIndicator
               Unsigned 32-bit integer
               lte_rrc.GERAN_BandIndicator

           lte-rrc.baseStationColourCode  baseStationColourCode
               Byte array
               lte_rrc.BIT_STRING_SIZE_3

           lte-rrc.bcch_Configuration  bcch-Configuration
               No value
               lte_rrc.BCCH_Configuration

           lte-rrc.blackListedCellsToAddModifyList  blackListedCellsToAddModifyList
               Unsigned 32-bit integer
               lte_rrc.BlackListedCellsToAddModifyList

           lte-rrc.blackListedCellsToRemoveList  blackListedCellsToRemoveList
               Unsigned 32-bit integer
               lte_rrc.CellIndexList

           lte-rrc.bsic  bsic
               No value
               lte_rrc.GERAN_CellIdentity

           lte-rrc.bucketSizeDuration  bucketSizeDuration
               Unsigned 32-bit integer
               lte_rrc.T_bucketSizeDuration

           lte-rrc.c1  c1
               Unsigned 32-bit integer
               lte_rrc.T_c1

           lte-rrc.c_RNTI  c-RNTI
               Byte array
               lte_rrc.C_RNTI

           lte-rrc.cdma2000  cdma2000
               No value
               lte_rrc.T_cdma2000

           lte-rrc.cdma2000_1xParametersForCSFB_r8  cdma2000-1xParametersForCSFB-r8
               No value
               lte_rrc.CDMA2000_CSFBParametersResponse_r8_IEs

           lte-rrc.cdma2000_1xRTT  cdma2000-1xRTT
               No value
               lte_rrc.CDMA2000_CarrierInfo

           lte-rrc.cdma2000_1xRTT_Band  cdma2000-1xRTT-Band
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_Bandclass

           lte-rrc.cdma2000_1xRTT_RxConfig  cdma2000-1xRTT-RxConfig
               Unsigned 32-bit integer
               lte_rrc.T_cdma2000_1xRTT_RxConfig

           lte-rrc.cdma2000_1xRTT_TxConfig  cdma2000-1xRTT-TxConfig
               Unsigned 32-bit integer
               lte_rrc.T_cdma2000_1xRTT_TxConfig

           lte-rrc.cdma2000_CSFBParametersRequest  cdma2000-CSFBParametersRequest
               No value
               lte_rrc.CDMA2000_CSFBParametersRequest

           lte-rrc.cdma2000_CSFBParametersRequest_r8  cdma2000-CSFBParametersRequest-r8
               No value
               lte_rrc.CDMA2000_CSFBParametersRequest_r8_IEs

           lte-rrc.cdma2000_CSFBParametersResponse  cdma2000-CSFBParametersResponse
               No value
               lte_rrc.CDMA2000_CSFBParametersResponse

           lte-rrc.cdma2000_CarrierInfo  cdma2000-CarrierInfo
               No value
               lte_rrc.CDMA2000_CarrierInfo

           lte-rrc.cdma2000_DedicatedInfo  cdma2000-DedicatedInfo
               Byte array
               lte_rrc.CDMA2000_DedicatedInfo

           lte-rrc.cdma2000_HRPD  cdma2000-HRPD
               No value
               lte_rrc.CDMA2000_CarrierInfo

           lte-rrc.cdma2000_HRPD_Band  cdma2000-HRPD-Band
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_Bandclass

           lte-rrc.cdma2000_HRPD_RxConfig  cdma2000-HRPD-RxConfig
               Unsigned 32-bit integer
               lte_rrc.T_cdma2000_HRPD_RxConfig

           lte-rrc.cdma2000_HRPD_TxConfig  cdma2000-HRPD-TxConfig
               Unsigned 32-bit integer
               lte_rrc.T_cdma2000_HRPD_TxConfig

           lte-rrc.cdma2000_MEID  cdma2000-MEID
               Byte array
               lte_rrc.BIT_STRING_SIZE_56

           lte-rrc.cdma2000_MobilityParameters  cdma2000-MobilityParameters
               Byte array
               lte_rrc.CDMA2000_MobilityParameters

           lte-rrc.cdma2000_RAND  cdma2000-RAND
               Byte array
               lte_rrc.CDMA2000_RAND

           lte-rrc.cdma2000_SearchWindowSize  cdma2000-SearchWindowSize
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_15

           lte-rrc.cdma2000_SystemTimeInfo  cdma2000-SystemTimeInfo
               No value
               lte_rrc.CDMA2000_SystemTimeInfo

           lte-rrc.cdma2000_Type  cdma2000-Type
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_Type

           lte-rrc.cdma_AsynchronousSystemTime  cdma-AsynchronousSystemTime
               Byte array
               lte_rrc.BIT_STRING_SIZE_49

           lte-rrc.cdma_EUTRA_Synchronisation  cdma-EUTRA-Synchronisation
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.cdma_SynchronousSystemTime  cdma-SynchronousSystemTime
               Byte array
               lte_rrc.BIT_STRING_SIZE_39

           lte-rrc.cdma_SystemTime  cdma-SystemTime
               Unsigned 32-bit integer
               lte_rrc.T_cdma_SystemTime

           lte-rrc.cellAccessRelatedInformation  cellAccessRelatedInformation
               No value
               lte_rrc.T_cellAccessRelatedInformation

           lte-rrc.cellBarred  cellBarred
               Unsigned 32-bit integer
               lte_rrc.T_cellBarred

           lte-rrc.cellChangeOrder  cellChangeOrder
               No value
               lte_rrc.CellChangeOrder

           lte-rrc.cellForWhichToReportCGI  cellForWhichToReportCGI
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_CellIdentity

           lte-rrc.cellIdList  cellIdList
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_CellIdList

           lte-rrc.cellIdentity  cellIdentity
               Byte array
               lte_rrc.CellIdentity

           lte-rrc.cellIdentityAndRange  cellIdentityAndRange
               Unsigned 32-bit integer
               lte_rrc.PhysicalCellIdentityAndRange

           lte-rrc.cellIentityFDD  cellIentityFDD
               No value
               lte_rrc.UTRA_FDD_CellIdentity

           lte-rrc.cellIentityTDD  cellIentityTDD
               No value
               lte_rrc.UTRA_TDD_CellIdentity

           lte-rrc.cellIndex  cellIndex
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_maxCellMeas

           lte-rrc.cellIndividualOffset  cellIndividualOffset
               Unsigned 32-bit integer
               lte_rrc.T_cellIndividualOffset

           lte-rrc.cellParametersID  cellParametersID
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_127

           lte-rrc.cellReselectionInfoCommon  cellReselectionInfoCommon
               No value
               lte_rrc.T_cellReselectionInfoCommon

           lte-rrc.cellReselectionPriority  cellReselectionPriority
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_7

           lte-rrc.cellReselectionServingFreqInfo  cellReselectionServingFreqInfo
               No value
               lte_rrc.T_cellReselectionServingFreqInfo

           lte-rrc.cellReservedForOperatorUse  cellReservedForOperatorUse
               Unsigned 32-bit integer
               lte_rrc.T_cellReservedForOperatorUse

           lte-rrc.cellSelectionInfo  cellSelectionInfo
               No value
               lte_rrc.T_cellSelectionInfo

           lte-rrc.cellsToAddModifyList  cellsToAddModifyList
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_CellsToAddModifyList

           lte-rrc.cellsToAddModifyListUTRA_FDD  cellsToAddModifyListUTRA-FDD
               Unsigned 32-bit integer
               lte_rrc.UTRA_FDD_CellsToAddModifyList

           lte-rrc.cellsToAddModifyListUTRA_TDD  cellsToAddModifyListUTRA-TDD
               Unsigned 32-bit integer
               lte_rrc.UTRA_TDD_CellsToAddModifyList

           lte-rrc.cellsToRemoveList  cellsToRemoveList
               Unsigned 32-bit integer
               lte_rrc.CellIndexList

           lte-rrc.cellsTriggeredList  cellsTriggeredList
               Unsigned 32-bit integer
               lte_rrc.CellsTriggeredList

           lte-rrc.cipheringAlgorithm  cipheringAlgorithm
               Unsigned 32-bit integer
               lte_rrc.CipheringAlgorithm

           lte-rrc.cn_Domain  cn-Domain
               Unsigned 32-bit integer
               lte_rrc.T_cn_Domain

           lte-rrc.codebookSubsetRestriction  codebookSubsetRestriction
               Unsigned 32-bit integer
               lte_rrc.T_codebookSubsetRestriction

           lte-rrc.countMSB_Downlink  countMSB-Downlink
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_33554431

           lte-rrc.countMSB_Uplink  countMSB-Uplink
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_33554431

           lte-rrc.count_Downlink  count-Downlink
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_4294967295

           lte-rrc.count_Uplink  count-Uplink
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_4294967295

           lte-rrc.counterCheck  counterCheck
               No value
               lte_rrc.CounterCheck

           lte-rrc.counterCheckResponse  counterCheckResponse
               No value
               lte_rrc.CounterCheckResponse

           lte-rrc.counterCheckResponse_r8  counterCheckResponse-r8
               No value
               lte_rrc.CounterCheckResponse_r8_IEs

           lte-rrc.counterCheck_r8  counterCheck-r8
               No value
               lte_rrc.CounterCheck_r8_IEs

           lte-rrc.cpich_EcN0  cpich-EcN0
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_49

           lte-rrc.cpich_RSCP  cpich-RSCP
               Signed 32-bit integer
               lte_rrc.INTEGER_M5_91

           lte-rrc.cqi_FormatIndicatorPeriodic  cqi-FormatIndicatorPeriodic
               Unsigned 32-bit integer
               lte_rrc.T_cqi_FormatIndicatorPeriodic

           lte-rrc.cqi_PUCCH_ResourceIndex  cqi-PUCCH-ResourceIndex
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_767

           lte-rrc.cqi_Reporting  cqi-Reporting
               No value
               lte_rrc.CQI_Reporting

           lte-rrc.cqi_ReportingModeAperiodic  cqi-ReportingModeAperiodic
               Unsigned 32-bit integer
               lte_rrc.T_cqi_ReportingModeAperiodic

           lte-rrc.cqi_ReportingPeriodic  cqi-ReportingPeriodic
               Unsigned 32-bit integer
               lte_rrc.CQI_ReportingPeriodic

           lte-rrc.cqi_pmi_ConfigIndex  cqi-pmi-ConfigIndex
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_511

           lte-rrc.criticalExtensions  criticalExtensions
               Unsigned 32-bit integer
               lte_rrc.T_criticalExtensions

           lte-rrc.criticalExtensionsFuture  criticalExtensionsFuture
               No value
               lte_rrc.T_criticalExtensionsFuture

           lte-rrc.csFallbackIndicator  csFallbackIndicator
               Unsigned 32-bit integer
               lte_rrc.T_csFallbackIndicator

           lte-rrc.csg_Identity  csg-Identity
               Byte array
               lte_rrc.BIT_STRING_SIZE_27

           lte-rrc.csg_Indication  csg-Indication
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.csg_PCI_Range  csg-PCI-Range
               Unsigned 32-bit integer
               lte_rrc.PhysicalCellIdentityAndRange

           lte-rrc.cyclicShift  cyclicShift
               Unsigned 32-bit integer
               lte_rrc.T_cyclicShift

           lte-rrc.dataCodingScheme  dataCodingScheme
               Byte array
               lte_rrc.OCTET_STRING_SIZE_1

           lte-rrc.deactivate  deactivate
               No value
               lte_rrc.NULL

           lte-rrc.defaultPagingCycle  defaultPagingCycle
               Unsigned 32-bit integer
               lte_rrc.T_defaultPagingCycle

           lte-rrc.defaultValue  defaultValue
               No value
               lte_rrc.NULL

           lte-rrc.deltaFList_PUCCH  deltaFList-PUCCH
               No value
               lte_rrc.DeltaFList_PUCCH

           lte-rrc.deltaF_PUCCH_Format1  deltaF-PUCCH-Format1
               Unsigned 32-bit integer
               lte_rrc.T_deltaF_PUCCH_Format1

           lte-rrc.deltaF_PUCCH_Format1b  deltaF-PUCCH-Format1b
               Unsigned 32-bit integer
               lte_rrc.T_deltaF_PUCCH_Format1b

           lte-rrc.deltaF_PUCCH_Format2  deltaF-PUCCH-Format2
               Unsigned 32-bit integer
               lte_rrc.T_deltaF_PUCCH_Format2

           lte-rrc.deltaF_PUCCH_Format2a  deltaF-PUCCH-Format2a
               Unsigned 32-bit integer
               lte_rrc.T_deltaF_PUCCH_Format2a

           lte-rrc.deltaF_PUCCH_Format2b  deltaF-PUCCH-Format2b
               Unsigned 32-bit integer
               lte_rrc.T_deltaF_PUCCH_Format2b

           lte-rrc.deltaMCS_Enabled  deltaMCS-Enabled
               Unsigned 32-bit integer
               lte_rrc.T_deltaMCS_Enabled

           lte-rrc.deltaOffset_ACK_Index  deltaOffset-ACK-Index
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_15

           lte-rrc.deltaOffset_CQI_Index  deltaOffset-CQI-Index
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_15

           lte-rrc.deltaOffset_RI_Index  deltaOffset-RI-Index
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_15

           lte-rrc.deltaPUCCH_Shift  deltaPUCCH-Shift
               Unsigned 32-bit integer
               lte_rrc.T_deltaPUCCH_Shift

           lte-rrc.deltaPreambleMsg3  deltaPreambleMsg3
               Signed 32-bit integer
               lte_rrc.INTEGER_M1_6

           lte-rrc.disable  disable
               No value
               lte_rrc.NULL

           lte-rrc.discardTimer  discardTimer
               Unsigned 32-bit integer
               lte_rrc.T_discardTimer

           lte-rrc.dlInformationTransfer  dlInformationTransfer
               No value
               lte_rrc.DLInformationTransfer

           lte-rrc.dlInformationTransfer_r8  dlInformationTransfer-r8
               No value
               lte_rrc.DLInformationTransfer_r8_IEs

           lte-rrc.dl_AM_RLC  dl-AM-RLC
               No value
               lte_rrc.DL_AM_RLC

           lte-rrc.dl_Bandwidth  dl-Bandwidth
               Unsigned 32-bit integer
               lte_rrc.T_dl_Bandwidth

           lte-rrc.dl_PathlossChange  dl-PathlossChange
               Unsigned 32-bit integer
               lte_rrc.T_dl_PathlossChange

           lte-rrc.dl_SCH_Configuration  dl-SCH-Configuration
               No value
               lte_rrc.T_dl_SCH_Configuration

           lte-rrc.dl_UM_RLC  dl-UM-RLC
               No value
               lte_rrc.DL_UM_RLC

           lte-rrc.drb_CountInfoList  drb-CountInfoList
               Unsigned 32-bit integer
               lte_rrc.DRB_CountInfoList

           lte-rrc.drb_CountMSB_InfoList  drb-CountMSB-InfoList
               Unsigned 32-bit integer
               lte_rrc.DRB_CountMSB_InfoList

           lte-rrc.drb_Identity  drb-Identity
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_32

           lte-rrc.drb_ToAddModifyList  drb-ToAddModifyList
               Unsigned 32-bit integer
               lte_rrc.DRB_ToAddModifyList

           lte-rrc.drb_ToReleaseList  drb-ToReleaseList
               Unsigned 32-bit integer
               lte_rrc.DRB_ToReleaseList

           lte-rrc.drxShortCycleTimer  drxShortCycleTimer
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_16

           lte-rrc.drx_Configuration  drx-Configuration
               Unsigned 32-bit integer
               lte_rrc.T_drx_Configuration

           lte-rrc.drx_InactivityTimer  drx-InactivityTimer
               Unsigned 32-bit integer
               lte_rrc.T_drx_InactivityTimer

           lte-rrc.drx_RetransmissionTimer  drx-RetransmissionTimer
               Unsigned 32-bit integer
               lte_rrc.T_drx_RetransmissionTimer

           lte-rrc.dsr_TransMax  dsr-TransMax
               Unsigned 32-bit integer
               lte_rrc.T_dsr_TransMax

           lte-rrc.duration  duration
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.earfcn_DL  earfcn-DL
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_maxEARFCN

           lte-rrc.earfcn_UL  earfcn-UL
               Unsigned 32-bit integer
               lte_rrc.EUTRA_DL_CarrierFreq

           lte-rrc.enable  enable
               Unsigned 32-bit integer
               lte_rrc.T_enable

           lte-rrc.enable64Qam  enable64Qam
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.eps_BearerIdentity  eps-BearerIdentity
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_15

           lte-rrc.equallySpacedARFCNs  equallySpacedARFCNs
               No value
               lte_rrc.T_equallySpacedARFCNs

           lte-rrc.establishmentCause  establishmentCause
               Unsigned 32-bit integer
               lte_rrc.EstablishmentCause

           lte-rrc.etws_Indication  etws-Indication
               Unsigned 32-bit integer
               lte_rrc.T_etws_Indication

           lte-rrc.eutra_Band  eutra-Band
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_64

           lte-rrc.eutra_BandList  eutra-BandList
               Unsigned 32-bit integer
               lte_rrc.EUTRA_BandList

           lte-rrc.eutra_CarrierBandwidth  eutra-CarrierBandwidth
               No value
               lte_rrc.EUTRA_CarrierBandwidth

           lte-rrc.eutra_CarrierFreq  eutra-CarrierFreq
               Unsigned 32-bit integer
               lte_rrc.EUTRA_DL_CarrierFreq

           lte-rrc.eutra_CarrierInfo  eutra-CarrierInfo
               Unsigned 32-bit integer
               lte_rrc.EUTRA_DL_CarrierFreq

           lte-rrc.event  event
               No value
               lte_rrc.T_event

           lte-rrc.eventA1  eventA1
               No value
               lte_rrc.T_eventA1

           lte-rrc.eventA2  eventA2
               No value
               lte_rrc.T_eventA2

           lte-rrc.eventA3  eventA3
               No value
               lte_rrc.T_eventA3

           lte-rrc.eventA4  eventA4
               No value
               lte_rrc.T_eventA4

           lte-rrc.eventA5  eventA5
               No value
               lte_rrc.T_eventA5

           lte-rrc.eventB1  eventB1
               No value
               lte_rrc.T_eventB1

           lte-rrc.eventB2  eventB2
               No value
               lte_rrc.T_eventB2

           lte-rrc.eventId  eventId
               Unsigned 32-bit integer
               lte_rrc.T_eventId

           lte-rrc.explicitListOfARFCNs  explicitListOfARFCNs
               Unsigned 32-bit integer
               lte_rrc.ExplicitListOfARFCNs

           lte-rrc.explicitValue  explicitValue
               No value
               lte_rrc.AntennaInformationDedicated

           lte-rrc.fdd  fdd
               No value
               lte_rrc.T_fdd

           lte-rrc.filterCoefficient  filterCoefficient
               Unsigned 32-bit integer
               lte_rrc.FilterCoefficient

           lte-rrc.filterCoefficientRSRP  filterCoefficientRSRP
               Unsigned 32-bit integer
               lte_rrc.FilterCoefficient

           lte-rrc.filterCoefficientRSRQ  filterCoefficientRSRQ
               Unsigned 32-bit integer
               lte_rrc.FilterCoefficient

           lte-rrc.followingARFCNs  followingARFCNs
               Unsigned 32-bit integer
               lte_rrc.T_followingARFCNs

           lte-rrc.fourFrames  fourFrames
               Byte array
               lte_rrc.BIT_STRING_SIZE_24

           lte-rrc.frequency  frequency
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_2047

           lte-rrc.frequencyBandIndicator  frequencyBandIndicator
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_64

           lte-rrc.frequencyDomainPosition  frequencyDomainPosition
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_23

           lte-rrc.frequencyInformation  frequencyInformation
               No value
               lte_rrc.T_frequencyInformation

           lte-rrc.frequencyList  frequencyList
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_NeighbourCellsPerBandclass

           lte-rrc.gapActivation  gapActivation
               Unsigned 32-bit integer
               lte_rrc.T_gapActivation

           lte-rrc.gapOffset  gapOffset
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_39

           lte-rrc.gapPattern  gapPattern
               Unsigned 32-bit integer
               lte_rrc.T_gapPattern

           lte-rrc.geran  geran
               No value
               lte_rrc.T_geran

           lte-rrc.geran_BCCH_Configuration  geran-BCCH-Configuration
               No value
               lte_rrc.T_geran_BCCH_Configuration

           lte-rrc.geran_BCCH_FrequencyGroup  geran-BCCH-FrequencyGroup
               No value
               lte_rrc.GERAN_CarrierFreqList

           lte-rrc.geran_Band  geran-Band
               Unsigned 32-bit integer
               lte_rrc.T_geran_Band

           lte-rrc.geran_CarrierFreq  geran-CarrierFreq
               No value
               lte_rrc.GERAN_CarrierFreq

           lte-rrc.geran_CellIdentity  geran-CellIdentity
               Byte array
               lte_rrc.BIT_STRING_SIZE_16

           lte-rrc.geran_CellReselectionPriority  geran-CellReselectionPriority
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_7

           lte-rrc.geran_FreqPriorityList  geran-FreqPriorityList
               Unsigned 32-bit integer
               lte_rrc.GERAN_FreqPriorityList

           lte-rrc.geran_MeasFrequencyList  geran-MeasFrequencyList
               Unsigned 32-bit integer
               lte_rrc.GERAN_MeasFrequencyList

           lte-rrc.geran_NeigbourFreqList  geran-NeigbourFreqList
               Unsigned 32-bit integer
               lte_rrc.GERAN_NeigbourFreqList

           lte-rrc.geran_SystemInformation  geran-SystemInformation
               Unsigned 32-bit integer
               lte_rrc.T_geran_SystemInformation

           lte-rrc.globalCellID_EUTRA  globalCellID-EUTRA
               No value
               lte_rrc.GlobalCellId_EUTRA

           lte-rrc.globalCellId_HRPD  globalCellId-HRPD
               Byte array
               lte_rrc.BIT_STRING_SIZE_128

           lte-rrc.globalCellId_oneXRTT  globalCellId-oneXRTT
               Byte array
               lte_rrc.BIT_STRING_SIZE_47

           lte-rrc.globalCellIdentity  globalCellIdentity
               No value
               lte_rrc.T_globalCellIdentity

           lte-rrc.globalcellID_GERAN  globalcellID-GERAN
               No value
               lte_rrc.GlobalCellId_GERAN

           lte-rrc.globalcellID_UTRA  globalcellID-UTRA
               No value
               lte_rrc.GlobalCellId_UTRA

           lte-rrc.gp1  gp1
               No value
               lte_rrc.T_gp1

           lte-rrc.gp2  gp2
               No value
               lte_rrc.T_gp2

           lte-rrc.groupAssignmentPUSCH  groupAssignmentPUSCH
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_29

           lte-rrc.groupHoppingEnabled  groupHoppingEnabled
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.halfDuplex  halfDuplex
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.handover  handover
               No value
               lte_rrc.Handover

           lte-rrc.handoverCommand  handoverCommand
               No value
               lte_rrc.HandoverCommand

           lte-rrc.handoverCommandMessage  handoverCommandMessage
               Byte array
               lte_rrc.T_handoverCommandMessage

           lte-rrc.handoverCommand_r8  handoverCommand-r8
               No value
               lte_rrc.HandoverCommand_r8_IEs

           lte-rrc.handoverFromEUTRAPreparationRequest  handoverFromEUTRAPreparationRequest
               No value
               lte_rrc.HandoverFromEUTRAPreparationRequest

           lte-rrc.handoverFromEUTRAPreparationRequest_r8  handoverFromEUTRAPreparationRequest-r8
               No value
               lte_rrc.HandoverFromEUTRAPreparationRequest_r8_IEs

           lte-rrc.handoverPreparationInformation  handoverPreparationInformation
               No value
               lte_rrc.HandoverPreparationInformation

           lte-rrc.handoverPreparationInformation_r8  handoverPreparationInformation-r8
               No value
               lte_rrc.HandoverPreparationInformation_r8_IEs

           lte-rrc.headerCompression  headerCompression
               Unsigned 32-bit integer
               lte_rrc.T_headerCompression

           lte-rrc.highSpeedFlag  highSpeedFlag
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.hnbid  hnbid
               Byte array
               lte_rrc.OCTET_STRING_SIZE_1_48

           lte-rrc.hoppingMode  hoppingMode
               Unsigned 32-bit integer
               lte_rrc.T_hoppingMode

           lte-rrc.hrpdPreRegistrationStatus  hrpdPreRegistrationStatus
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.hrpd_BandClass  hrpd-BandClass
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_Bandclass

           lte-rrc.hrpd_BandClassList  hrpd-BandClassList
               Unsigned 32-bit integer
               lte_rrc.HRPD_BandClassList

           lte-rrc.hrpd_BandClassPriorityList  hrpd-BandClassPriorityList
               Unsigned 32-bit integer
               lte_rrc.HRPD_BandClassPriorityList

           lte-rrc.hrpd_CellReselectionParameters  hrpd-CellReselectionParameters
               No value
               lte_rrc.T_hrpd_CellReselectionParameters

           lte-rrc.hrpd_CellReselectionPriority  hrpd-CellReselectionPriority
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_7

           lte-rrc.hrpd_NeighborCellList  hrpd-NeighborCellList
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_NeighbourCellList

           lte-rrc.hrpd_Parameters  hrpd-Parameters
               No value
               lte_rrc.T_hrpd_Parameters

           lte-rrc.hrpd_PreRegistrationAllowed  hrpd-PreRegistrationAllowed
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.hrpd_PreRegistrationInfo  hrpd-PreRegistrationInfo
               No value
               lte_rrc.HRPD_PreRegistrationInfo

           lte-rrc.hrpd_PreRegistrationZoneId  hrpd-PreRegistrationZoneId
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_255

           lte-rrc.hrpd_SecondaryPreRegistrationZoneId  hrpd-SecondaryPreRegistrationZoneId
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_255

           lte-rrc.hrpd_SecondaryPreRegistrationZoneIdList  hrpd-SecondaryPreRegistrationZoneIdList
               Unsigned 32-bit integer
               lte_rrc.HRPD_SecondaryPreRegistrationZoneIdList

           lte-rrc.hrpd_bandClass  hrpd-bandClass
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_Bandclass

           lte-rrc.hysteresis  hysteresis
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_30

           lte-rrc.idleModeMobilityControlInfo  idleModeMobilityControlInfo
               No value
               lte_rrc.IdleModeMobilityControlInfo

           lte-rrc.implicitReleaseAfter  implicitReleaseAfter
               Unsigned 32-bit integer
               lte_rrc.T_implicitReleaseAfter

           lte-rrc.imsi  imsi
               Unsigned 32-bit integer
               lte_rrc.IMSI

           lte-rrc.indexOfFormat3  indexOfFormat3
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_15

           lte-rrc.indexOfFormat3A  indexOfFormat3A
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_31

           lte-rrc.informationType  informationType
               Unsigned 32-bit integer
               lte_rrc.T_informationType

           lte-rrc.integrityProtAlgorithm  integrityProtAlgorithm
               Unsigned 32-bit integer
               lte_rrc.IntegrityProtAlgorithm

           lte-rrc.interFreqBlacklistedCellList  interFreqBlacklistedCellList
               Unsigned 32-bit integer
               lte_rrc.InterFreqBlacklistedCellList

           lte-rrc.interFreqCarrierFreqList  interFreqCarrierFreqList
               Unsigned 32-bit integer
               lte_rrc.InterFreqCarrierFreqList

           lte-rrc.interFreqEUTRA_BandList  interFreqEUTRA-BandList
               Unsigned 32-bit integer
               lte_rrc.InterFreqEUTRA_BandList

           lte-rrc.interFreqNeedForGaps  interFreqNeedForGaps
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.interFreqNeighbouringCellList  interFreqNeighbouringCellList
               Unsigned 32-bit integer
               lte_rrc.InterFreqNeighbouringCellList

           lte-rrc.interFreqPriorityList  interFreqPriorityList
               Unsigned 32-bit integer
               lte_rrc.InterFreqPriorityList

           lte-rrc.interRAT_BandList  interRAT-BandList
               Unsigned 32-bit integer
               lte_rrc.InterRAT_BandList

           lte-rrc.interRAT_Message  interRAT-Message
               No value
               lte_rrc.InterRAT_Message

           lte-rrc.interRAT_Message_r8  interRAT-Message-r8
               No value
               lte_rrc.InterRAT_Message_r8_IEs

           lte-rrc.interRAT_NeedForGaps  interRAT-NeedForGaps
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.interRAT_PS_HO_ToGERAN  interRAT-PS-HO-ToGERAN
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.interRAT_Parameters  interRAT-Parameters
               No value
               lte_rrc.T_interRAT_Parameters

           lte-rrc.interRAT_target  interRAT-target
               Unsigned 32-bit integer
               lte_rrc.T_interRAT_target

           lte-rrc.intraFreqBlacklistedCellList  intraFreqBlacklistedCellList
               Unsigned 32-bit integer
               lte_rrc.IntraFreqBlacklistedCellList

           lte-rrc.intraFreqCellReselectionInfo  intraFreqCellReselectionInfo
               No value
               lte_rrc.T_intraFreqCellReselectionInfo

           lte-rrc.intraFreqNeighbouringCellList  intraFreqNeighbouringCellList
               Unsigned 32-bit integer
               lte_rrc.IntraFreqNeighbouringCellList

           lte-rrc.intraFrequencyReselection  intraFrequencyReselection
               Unsigned 32-bit integer
               lte_rrc.T_intraFrequencyReselection

           lte-rrc.k  k
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_4

           lte-rrc.keyChangeIndicator  keyChangeIndicator
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.key_eNodeB_Star  key-eNodeB-Star
               Byte array
               lte_rrc.Key_eNodeB_Star

           lte-rrc.lac_Id  lac-Id
               Byte array
               lte_rrc.BIT_STRING_SIZE_16

           lte-rrc.locationAreaCode  locationAreaCode
               Byte array
               lte_rrc.BIT_STRING_SIZE_16

           lte-rrc.logicalChannelConfig  logicalChannelConfig
               Unsigned 32-bit integer
               lte_rrc.T_logicalChannelConfig

           lte-rrc.logicalChannelGroup  logicalChannelGroup
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_3

           lte-rrc.logicalChannelIdentity  logicalChannelIdentity
               Unsigned 32-bit integer
               lte_rrc.INTEGER_3_10

           lte-rrc.longDRX_CycleStartOffset  longDRX-CycleStartOffset
               Unsigned 32-bit integer
               lte_rrc.T_longDRX_CycleStartOffset

           lte-rrc.m_TMSI  m-TMSI
               Byte array
               lte_rrc.BIT_STRING_SIZE_32

           lte-rrc.mac_ContentionResolutionTimer  mac-ContentionResolutionTimer
               Unsigned 32-bit integer
               lte_rrc.T_mac_ContentionResolutionTimer

           lte-rrc.mac_MainConfig  mac-MainConfig
               Unsigned 32-bit integer
               lte_rrc.T_mac_MainConfig

           lte-rrc.maxAllowedTxPower  maxAllowedTxPower
               Signed 32-bit integer
               lte_rrc.INTEGER_M50_33

           lte-rrc.maxCID  maxCID
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_16383

           lte-rrc.maxHARQ_Msg3Tx  maxHARQ-Msg3Tx
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_8

           lte-rrc.maxHARQ_Tx  maxHARQ-Tx
               Unsigned 32-bit integer
               lte_rrc.T_maxHARQ_Tx

           lte-rrc.maxNumberROHC_ContextSessions  maxNumberROHC-ContextSessions
               Unsigned 32-bit integer
               lte_rrc.T_maxNumberROHC_ContextSessions

           lte-rrc.maxReportCells  maxReportCells
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_maxCellReport

           lte-rrc.maxRetxThreshold  maxRetxThreshold
               Unsigned 32-bit integer
               lte_rrc.T_maxRetxThreshold

           lte-rrc.mbsfn_SubframeConfiguration  mbsfn-SubframeConfiguration
               Unsigned 32-bit integer
               lte_rrc.MBSFN_SubframeConfiguration

           lte-rrc.mcc  mcc
               Unsigned 32-bit integer
               lte_rrc.MCC

           lte-rrc.measGapConfig  measGapConfig
               No value
               lte_rrc.MeasGapConfig

           lte-rrc.measId  measId
               Unsigned 32-bit integer
               lte_rrc.MeasId

           lte-rrc.measIdList  measIdList
               Unsigned 32-bit integer
               lte_rrc.MeasIdToAddModifyList

           lte-rrc.measIdToAddModifyList  measIdToAddModifyList
               Unsigned 32-bit integer
               lte_rrc.MeasIdToAddModifyList

           lte-rrc.measIdToRemoveList  measIdToRemoveList
               Unsigned 32-bit integer
               lte_rrc.MeasIdToRemoveList

           lte-rrc.measObject  measObject
               Unsigned 32-bit integer
               lte_rrc.T_measObject

           lte-rrc.measObjectCDMA2000  measObjectCDMA2000
               No value
               lte_rrc.MeasObjectCDMA2000

           lte-rrc.measObjectEUTRA  measObjectEUTRA
               No value
               lte_rrc.MeasObjectEUTRA

           lte-rrc.measObjectGERAN  measObjectGERAN
               No value
               lte_rrc.MeasObjectGERAN

           lte-rrc.measObjectId  measObjectId
               Unsigned 32-bit integer
               lte_rrc.MeasObjectId

           lte-rrc.measObjectList  measObjectList
               Unsigned 32-bit integer
               lte_rrc.MeasObjectToAddModifyList

           lte-rrc.measObjectToAddModifyList  measObjectToAddModifyList
               Unsigned 32-bit integer
               lte_rrc.MeasObjectToAddModifyList

           lte-rrc.measObjectToRemoveList  measObjectToRemoveList
               Unsigned 32-bit integer
               lte_rrc.MeasObjectToRemoveList

           lte-rrc.measObjectUTRA  measObjectUTRA
               No value
               lte_rrc.MeasObjectUTRA

           lte-rrc.measQuantityCDMA2000  measQuantityCDMA2000
               Unsigned 32-bit integer
               lte_rrc.T_measQuantityCDMA2000

           lte-rrc.measQuantityGERAN  measQuantityGERAN
               Unsigned 32-bit integer
               lte_rrc.T_measQuantityGERAN

           lte-rrc.measQuantityUTRA_FDD  measQuantityUTRA-FDD
               Unsigned 32-bit integer
               lte_rrc.T_measQuantityUTRA_FDD

           lte-rrc.measQuantityUTRA_TDD  measQuantityUTRA-TDD
               Unsigned 32-bit integer
               lte_rrc.T_measQuantityUTRA_TDD

           lte-rrc.measResult  measResult
               No value
               lte_rrc.T_measResult

           lte-rrc.measResultListCDMA2000  measResultListCDMA2000
               Unsigned 32-bit integer
               lte_rrc.MeasResultListCDMA2000

           lte-rrc.measResultListEUTRA  measResultListEUTRA
               Unsigned 32-bit integer
               lte_rrc.MeasResultListEUTRA

           lte-rrc.measResultListGERAN  measResultListGERAN
               Unsigned 32-bit integer
               lte_rrc.MeasResultListGERAN

           lte-rrc.measResultListUTRA  measResultListUTRA
               Unsigned 32-bit integer
               lte_rrc.MeasResultListUTRA

           lte-rrc.measResultServing  measResultServing
               No value
               lte_rrc.T_measResultServing

           lte-rrc.measResultsCDMA2000  measResultsCDMA2000
               No value
               lte_rrc.MeasResultsCDMA2000

           lte-rrc.measuredResults  measuredResults
               No value
               lte_rrc.MeasuredResults

           lte-rrc.measurementBandwidth  measurementBandwidth
               Unsigned 32-bit integer
               lte_rrc.MeasurementBandwidth

           lte-rrc.measurementConfiguration  measurementConfiguration
               No value
               lte_rrc.MeasurementConfiguration

           lte-rrc.measurementParameters  measurementParameters
               No value
               lte_rrc.MeasurementParameters

           lte-rrc.measurementReport  measurementReport
               No value
               lte_rrc.MeasurementReport

           lte-rrc.measurementReport_r8  measurementReport-r8
               No value
               lte_rrc.MeasurementReport_r8_IEs

           lte-rrc.message  message
               No value
               lte_rrc.BCCH_BCH_MessageType

           lte-rrc.messageClassExtension  messageClassExtension
               No value
               lte_rrc.T_messageClassExtension

           lte-rrc.messageIdentifier  messageIdentifier
               Byte array
               lte_rrc.BIT_STRING_SIZE_16

           lte-rrc.messagePowerOffsetGroupB  messagePowerOffsetGroupB
               Unsigned 32-bit integer
               lte_rrc.T_messagePowerOffsetGroupB

           lte-rrc.messageSizeGroupA  messageSizeGroupA
               Unsigned 32-bit integer
               lte_rrc.T_messageSizeGroupA

           lte-rrc.mmec  mmec
               Byte array
               lte_rrc.MMEC

           lte-rrc.mmegi  mmegi
               Byte array
               lte_rrc.BIT_STRING_SIZE_16

           lte-rrc.mnc  mnc
               Unsigned 32-bit integer
               lte_rrc.MNC

           lte-rrc.mobilityControlInformation  mobilityControlInformation
               No value
               lte_rrc.MobilityControlInformation

           lte-rrc.mobilityFromEUTRACommand  mobilityFromEUTRACommand
               No value
               lte_rrc.MobilityFromEUTRACommand

           lte-rrc.mobilityFromEUTRACommand_r8  mobilityFromEUTRACommand-r8
               No value
               lte_rrc.MobilityFromEUTRACommand_r8_IEs

           lte-rrc.mobilityStateParameters  mobilityStateParameters
               No value
               lte_rrc.MobilityStateParameters

           lte-rrc.mode  mode
               Unsigned 32-bit integer
               lte_rrc.T_mode

           lte-rrc.modificationPeriodCoeff  modificationPeriodCoeff
               Unsigned 32-bit integer
               lte_rrc.T_modificationPeriodCoeff

           lte-rrc.n1PUCCH_AN  n1PUCCH-AN
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_2047

           lte-rrc.n1Pucch_AN_Persistent  n1Pucch-AN-Persistent
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_2047

           lte-rrc.n2TxAntenna_tm3  n2TxAntenna-tm3
               Byte array
               lte_rrc.BIT_STRING_SIZE_2

           lte-rrc.n2TxAntenna_tm4  n2TxAntenna-tm4
               Byte array
               lte_rrc.BIT_STRING_SIZE_6

           lte-rrc.n2TxAntenna_tm5  n2TxAntenna-tm5
               Byte array
               lte_rrc.BIT_STRING_SIZE_4

           lte-rrc.n2TxAntenna_tm6  n2TxAntenna-tm6
               Byte array
               lte_rrc.BIT_STRING_SIZE_4

           lte-rrc.n310  n310
               Unsigned 32-bit integer
               lte_rrc.T_n310

           lte-rrc.n311  n311
               Unsigned 32-bit integer
               lte_rrc.T_n311

           lte-rrc.n4TxAntenna_tm3  n4TxAntenna-tm3
               Byte array
               lte_rrc.BIT_STRING_SIZE_4

           lte-rrc.n4TxAntenna_tm4  n4TxAntenna-tm4
               Byte array
               lte_rrc.BIT_STRING_SIZE_64

           lte-rrc.n4TxAntenna_tm5  n4TxAntenna-tm5
               Byte array
               lte_rrc.BIT_STRING_SIZE_16

           lte-rrc.n4TxAntenna_tm6  n4TxAntenna-tm6
               Byte array
               lte_rrc.BIT_STRING_SIZE_16

           lte-rrc.nB  nB
               Unsigned 32-bit integer
               lte_rrc.T_nB

           lte-rrc.nCS_AN  nCS-AN
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_7

           lte-rrc.nRB_CQI  nRB-CQI
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_63

           lte-rrc.n_CellChangeHigh  n-CellChangeHigh
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_16

           lte-rrc.n_CellChangeMedium  n-CellChangeMedium
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_16

           lte-rrc.n_SB  n-SB
               Unsigned 32-bit integer
               lte_rrc.T_n_SB

           lte-rrc.nas3GPP  nas3GPP
               Byte array
               lte_rrc.NAS_DedicatedInformation

           lte-rrc.nas_DedicatedInformation  nas-DedicatedInformation
               Byte array
               lte_rrc.NAS_DedicatedInformation

           lte-rrc.nas_DedicatedInformationList  nas-DedicatedInformationList
               Unsigned 32-bit integer
               lte_rrc.SEQUENCE_SIZE_1_maxDRB_OF_NAS_DedicatedInformation

           lte-rrc.nas_SecurityParamFromEUTRA  nas-SecurityParamFromEUTRA
               Byte array
               lte_rrc.OCTET_STRING

           lte-rrc.nas_SecurityParamToEUTRA  nas-SecurityParamToEUTRA
               Byte array
               lte_rrc.OCTET_STRING_SIZE_6

           lte-rrc.ncc_Permitted  ncc-Permitted
               Byte array
               lte_rrc.BIT_STRING_SIZE_8

           lte-rrc.neighbourCellConfiguration  neighbourCellConfiguration
               Byte array
               lte_rrc.NeighbourCellConfiguration

           lte-rrc.neighbouringMeasResults  neighbouringMeasResults
               Unsigned 32-bit integer
               lte_rrc.T_neighbouringMeasResults

           lte-rrc.networkColourCode  networkColourCode
               Byte array
               lte_rrc.BIT_STRING_SIZE_3

           lte-rrc.networkControlOrder  networkControlOrder
               Byte array
               lte_rrc.BIT_STRING_SIZE_2

           lte-rrc.newUE_Identity  newUE-Identity
               Byte array
               lte_rrc.C_RNTI

           lte-rrc.nextHopChainingCount  nextHopChainingCount
               Unsigned 32-bit integer
               lte_rrc.NextHopChainingCount

           lte-rrc.nomPDSCH_RS_EPRE_Offset  nomPDSCH-RS-EPRE-Offset
               Signed 32-bit integer
               lte_rrc.INTEGER_M1_6

           lte-rrc.nonCriticalExtension  nonCriticalExtension
               No value
               lte_rrc.T_nonCriticalExtension

           lte-rrc.notUsed  notUsed
               No value
               lte_rrc.NULL

           lte-rrc.numberOfConfSPS_Processes  numberOfConfSPS-Processes
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_8

           lte-rrc.numberOfFollowingARFCNs  numberOfFollowingARFCNs
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_31

           lte-rrc.numberOfRA_Preambles  numberOfRA-Preambles
               Unsigned 32-bit integer
               lte_rrc.T_numberOfRA_Preambles

           lte-rrc.numberOfReportsSent  numberOfReportsSent
               Signed 32-bit integer
               lte_rrc.INTEGER

           lte-rrc.offsetFreq  offsetFreq
               Unsigned 32-bit integer
               lte_rrc.T_offsetFreq

           lte-rrc.onDurationTimer  onDurationTimer
               Unsigned 32-bit integer
               lte_rrc.T_onDurationTimer

           lte-rrc.oneFrame  oneFrame
               Byte array
               lte_rrc.BIT_STRING_SIZE_6

           lte-rrc.oneXRTT_BandClass  oneXRTT-BandClass
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_Bandclass

           lte-rrc.oneXRTT_BandClassList  oneXRTT-BandClassList
               Unsigned 32-bit integer
               lte_rrc.OneXRTT_BandClassList

           lte-rrc.oneXRTT_BandClassPriorityList  oneXRTT-BandClassPriorityList
               Unsigned 32-bit integer
               lte_rrc.OneXRTT_BandClassPriorityList

           lte-rrc.oneXRTT_CSFB_RegistrationAllowed  oneXRTT-CSFB-RegistrationAllowed
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.oneXRTT_CSFB_RegistrationInfo  oneXRTT-CSFB-RegistrationInfo
               No value
               lte_rrc.OneXRTT_CSFB_RegistrationInfo

           lte-rrc.oneXRTT_CellReselectionParameters  oneXRTT-CellReselectionParameters
               No value
               lte_rrc.T_oneXRTT_CellReselectionParameters

           lte-rrc.oneXRTT_CellReselectionPriority  oneXRTT-CellReselectionPriority
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_7

           lte-rrc.oneXRTT_ForeignNIDReg  oneXRTT-ForeignNIDReg
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.oneXRTT_ForeignSIDReg  oneXRTT-ForeignSIDReg
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.oneXRTT_HomeReg  oneXRTT-HomeReg
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.oneXRTT_LongCodeState  oneXRTT-LongCodeState
               Byte array
               lte_rrc.BIT_STRING_SIZE_42

           lte-rrc.oneXRTT_MultipleNID  oneXRTT-MultipleNID
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.oneXRTT_MultipleSID  oneXRTT-MultipleSID
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.oneXRTT_NID  oneXRTT-NID
               Byte array
               lte_rrc.BIT_STRING_SIZE_16

           lte-rrc.oneXRTT_NeighborCellList  oneXRTT-NeighborCellList
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_NeighbourCellList

           lte-rrc.oneXRTT_ParameterReg  oneXRTT-ParameterReg
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.oneXRTT_Parameters  oneXRTT-Parameters
               No value
               lte_rrc.T_oneXRTT_Parameters

           lte-rrc.oneXRTT_RegistrationParameters  oneXRTT-RegistrationParameters
               No value
               lte_rrc.OneXRTT_RegistrationParameters

           lte-rrc.oneXRTT_RegistrationPeriod  oneXRTT-RegistrationPeriod
               Byte array
               lte_rrc.BIT_STRING_SIZE_7

           lte-rrc.oneXRTT_RegistrationZone  oneXRTT-RegistrationZone
               Byte array
               lte_rrc.BIT_STRING_SIZE_12

           lte-rrc.oneXRTT_SID  oneXRTT-SID
               Byte array
               lte_rrc.BIT_STRING_SIZE_15

           lte-rrc.oneXRTT_TotalZone  oneXRTT-TotalZone
               Byte array
               lte_rrc.BIT_STRING_SIZE_3

           lte-rrc.oneXRTT_ZoneTimer  oneXRTT-ZoneTimer
               Byte array
               lte_rrc.BIT_STRING_SIZE_3

           lte-rrc.oneXRTT_bandClass  oneXRTT-bandClass
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_Bandclass

           lte-rrc.p0_NominalPUCCH  p0-NominalPUCCH
               Signed 32-bit integer
               lte_rrc.INTEGER_M127_M96

           lte-rrc.p0_NominalPUSCH  p0-NominalPUSCH
               Signed 32-bit integer
               lte_rrc.INTEGER_M126_24

           lte-rrc.p0_NominalPUSCH_Persistent  p0-NominalPUSCH-Persistent
               Signed 32-bit integer
               lte_rrc.INTEGER_M126_24

           lte-rrc.p0_Persistent  p0-Persistent
               No value
               lte_rrc.T_p0_Persistent

           lte-rrc.p0_UePUSCH  p0-UePUSCH
               Signed 32-bit integer
               lte_rrc.INTEGER_M8_7

           lte-rrc.p0_UePUSCH_Persistent  p0-UePUSCH-Persistent
               Signed 32-bit integer
               lte_rrc.INTEGER_M8_7

           lte-rrc.p0_uePUCCH  p0-uePUCCH
               Signed 32-bit integer
               lte_rrc.INTEGER_M8_7

           lte-rrc.pSRS_Offset  pSRS-Offset
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_15

           lte-rrc.p_Max  p-Max
               Signed 32-bit integer
               lte_rrc.P_Max

           lte-rrc.p_MaxGERAN  p-MaxGERAN
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_39

           lte-rrc.p_a  p-a
               Unsigned 32-bit integer
               lte_rrc.T_p_a

           lte-rrc.p_b  p-b
               Unsigned 32-bit integer
               lte_rrc.T_p_b

           lte-rrc.paging  paging
               No value
               lte_rrc.Paging

           lte-rrc.pagingRecordList  pagingRecordList
               Unsigned 32-bit integer
               lte_rrc.PagingRecordList

           lte-rrc.pcch_Configuration  pcch-Configuration
               No value
               lte_rrc.PCCH_Configuration

           lte-rrc.pccpch_RSCP  pccpch-RSCP
               Signed 32-bit integer
               lte_rrc.INTEGER_M5_91

           lte-rrc.pdcp_Configuration  pdcp-Configuration
               No value
               lte_rrc.PDCP_Configuration

           lte-rrc.pdcp_Parameters  pdcp-Parameters
               No value
               lte_rrc.PDCP_Parameters

           lte-rrc.pdcp_SN_Size  pdcp-SN-Size
               Unsigned 32-bit integer
               lte_rrc.T_pdcp_SN_Size

           lte-rrc.pdsch_Configuration  pdsch-Configuration
               No value
               lte_rrc.PDSCH_ConfigDedicated

           lte-rrc.periodicBSR_Timer  periodicBSR-Timer
               Unsigned 32-bit integer
               lte_rrc.T_periodicBSR_Timer

           lte-rrc.periodicPHR_Timer  periodicPHR-Timer
               Unsigned 32-bit integer
               lte_rrc.T_periodicPHR_Timer

           lte-rrc.periodical  periodical
               No value
               lte_rrc.T_periodical

           lte-rrc.phich_Configuration  phich-Configuration
               No value
               lte_rrc.PHICH_Configuration

           lte-rrc.phich_Duration  phich-Duration
               Unsigned 32-bit integer
               lte_rrc.T_phich_Duration

           lte-rrc.phich_Resource  phich-Resource
               Unsigned 32-bit integer
               lte_rrc.T_phich_Resource

           lte-rrc.phr_Configuration  phr-Configuration
               Unsigned 32-bit integer
               lte_rrc.T_phr_Configuration

           lte-rrc.phyLayerParameters  phyLayerParameters
               No value
               lte_rrc.PhyLayerParameters

           lte-rrc.physCellIdentity  physCellIdentity
               Unsigned 32-bit integer
               lte_rrc.PhysicalCellIdentity

           lte-rrc.physicalCellIdentity  physicalCellIdentity
               Unsigned 32-bit integer
               lte_rrc.PhysicalCellIdentity

           lte-rrc.physicalCellIdentityAndRange  physicalCellIdentityAndRange
               Unsigned 32-bit integer
               lte_rrc.PhysicalCellIdentityAndRange

           lte-rrc.physicalConfigDedicated  physicalConfigDedicated
               No value
               lte_rrc.PhysicalConfigDedicated

           lte-rrc.pilotPnPhase  pilotPnPhase
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_32767

           lte-rrc.pilotStrength  pilotStrength
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_63

           lte-rrc.plmn_Identity  plmn-Identity
               No value
               lte_rrc.PLMN_Identity

           lte-rrc.plmn_IdentityList  plmn-IdentityList
               Unsigned 32-bit integer
               lte_rrc.PLMN_IdentityList

           lte-rrc.pnOffset  pnOffset
               Unsigned 32-bit integer
               lte_rrc.CDMA2000_CellIdentity

           lte-rrc.pollByte  pollByte
               Unsigned 32-bit integer
               lte_rrc.PollByte

           lte-rrc.pollPDU  pollPDU
               Unsigned 32-bit integer
               lte_rrc.PollPDU

           lte-rrc.powerRampingParameters  powerRampingParameters
               No value
               lte_rrc.T_powerRampingParameters

           lte-rrc.powerRampingStep  powerRampingStep
               Unsigned 32-bit integer
               lte_rrc.T_powerRampingStep

           lte-rrc.prach_ConfigInfo  prach-ConfigInfo
               No value
               lte_rrc.PRACH_ConfigInfo

           lte-rrc.prach_Configuration  prach-Configuration
               No value
               lte_rrc.PRACH_ConfigurationSIB

           lte-rrc.prach_ConfigurationIndex  prach-ConfigurationIndex
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_63

           lte-rrc.prach_FrequencyOffset  prach-FrequencyOffset
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_104

           lte-rrc.preambleInformation  preambleInformation
               No value
               lte_rrc.T_preambleInformation

           lte-rrc.preambleInitialReceivedTargetPower  preambleInitialReceivedTargetPower
               Unsigned 32-bit integer
               lte_rrc.T_preambleInitialReceivedTargetPower

           lte-rrc.preambleTransMax  preambleTransMax
               Unsigned 32-bit integer
               lte_rrc.T_preambleTransMax

           lte-rrc.preamblesGroupAConfig  preamblesGroupAConfig
               No value
               lte_rrc.T_preamblesGroupAConfig

           lte-rrc.primaryScramblingCode  primaryScramblingCode
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_511

           lte-rrc.prioritizedBitRate  prioritizedBitRate
               Unsigned 32-bit integer
               lte_rrc.T_prioritizedBitRate

           lte-rrc.priority  priority
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_16

           lte-rrc.profile0x0001  profile0x0001
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.profile0x0002  profile0x0002
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.profile0x0003  profile0x0003
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.profile0x0004  profile0x0004
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.profile0x0006  profile0x0006
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.profile0x0101  profile0x0101
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.profile0x0102  profile0x0102
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.profile0x0103  profile0x0103
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.profile0x0104  profile0x0104
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.profiles  profiles
               No value
               lte_rrc.T_profiles

           lte-rrc.prohibitPHR_Timer  prohibitPHR-Timer
               Unsigned 32-bit integer
               lte_rrc.T_prohibitPHR_Timer

           lte-rrc.psi  psi
               Unsigned 32-bit integer
               lte_rrc.GERAN_SystemInformation

           lte-rrc.pucch_Configuration  pucch-Configuration
               No value
               lte_rrc.PUCCH_ConfigDedicated

           lte-rrc.purpose  purpose
               Unsigned 32-bit integer
               lte_rrc.T_purpose

           lte-rrc.pusch_ConfigBasic  pusch-ConfigBasic
               No value
               lte_rrc.T_pusch_ConfigBasic

           lte-rrc.pusch_Configuration  pusch-Configuration
               No value
               lte_rrc.PUSCH_ConfigDedicated

           lte-rrc.pusch_HoppingOffset  pusch-HoppingOffset
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_63

           lte-rrc.q_Hyst  q-Hyst
               Unsigned 32-bit integer
               lte_rrc.T_q_Hyst

           lte-rrc.q_HystSF_High  q-HystSF-High
               Unsigned 32-bit integer
               lte_rrc.T_q_HystSF_High

           lte-rrc.q_HystSF_Medium  q-HystSF-Medium
               Unsigned 32-bit integer
               lte_rrc.T_q_HystSF_Medium

           lte-rrc.q_OffsetCell  q-OffsetCell
               Unsigned 32-bit integer
               lte_rrc.T_q_OffsetCell

           lte-rrc.q_OffsetFreq  q-OffsetFreq
               Unsigned 32-bit integer
               lte_rrc.T_q_OffsetFreq

           lte-rrc.q_QualMin  q-QualMin
               Signed 32-bit integer
               lte_rrc.INTEGER_M24_0

           lte-rrc.q_RxLevMin  q-RxLevMin
               Signed 32-bit integer
               lte_rrc.INTEGER_M70_M22

           lte-rrc.q_RxLevMinOffset  q-RxLevMinOffset
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_8

           lte-rrc.quantityConfig  quantityConfig
               No value
               lte_rrc.QuantityConfig

           lte-rrc.quantityConfigCDMA2000  quantityConfigCDMA2000
               No value
               lte_rrc.QuantityConfigCDMA2000

           lte-rrc.quantityConfigEUTRA  quantityConfigEUTRA
               No value
               lte_rrc.QuantityConfigEUTRA

           lte-rrc.quantityConfigGERAN  quantityConfigGERAN
               No value
               lte_rrc.QuantityConfigGERAN

           lte-rrc.quantityConfigUTRA  quantityConfigUTRA
               No value
               lte_rrc.QuantityConfigUTRA

           lte-rrc.ra_PRACH_MaskIndex  ra-PRACH-MaskIndex
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_15

           lte-rrc.ra_PreambleIndex  ra-PreambleIndex
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_64

           lte-rrc.ra_ResponseWindowSize  ra-ResponseWindowSize
               Unsigned 32-bit integer
               lte_rrc.T_ra_ResponseWindowSize

           lte-rrc.ra_SupervisionInformation  ra-SupervisionInformation
               No value
               lte_rrc.T_ra_SupervisionInformation

           lte-rrc.rac_Id  rac-Id
               Byte array
               lte_rrc.BIT_STRING_SIZE_8

           lte-rrc.rach_ConfigDedicated  rach-ConfigDedicated
               No value
               lte_rrc.RACH_ConfigDedicated

           lte-rrc.rach_Configuration  rach-Configuration
               No value
               lte_rrc.RACH_ConfigCommon

           lte-rrc.radioResourceConfigCommon  radioResourceConfigCommon
               No value
               lte_rrc.RadioResourceConfigCommonSIB

           lte-rrc.radioResourceConfiguration  radioResourceConfiguration
               No value
               lte_rrc.RadioResourceConfigDedicated

           lte-rrc.radioframeAllocationOffset  radioframeAllocationOffset
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_7

           lte-rrc.radioframeAllocationPeriod  radioframeAllocationPeriod
               Unsigned 32-bit integer
               lte_rrc.T_radioframeAllocationPeriod

           lte-rrc.randomValue  randomValue
               Byte array
               lte_rrc.BIT_STRING_SIZE_40

           lte-rrc.rangeOfPCI  rangeOfPCI
               No value
               lte_rrc.T_rangeOfPCI

           lte-rrc.rangePCI  rangePCI
               Unsigned 32-bit integer
               lte_rrc.T_rangePCI

           lte-rrc.rat_Type  rat-Type
               Unsigned 32-bit integer
               lte_rrc.RAT_Type

           lte-rrc.redirectionInformation  redirectionInformation
               Unsigned 32-bit integer
               lte_rrc.RedirectionInformation

           lte-rrc.reestablishmentCause  reestablishmentCause
               Unsigned 32-bit integer
               lte_rrc.ReestablishmentCause

           lte-rrc.reestablishmentInfo  reestablishmentInfo
               No value
               lte_rrc.ReestablishmentInfo

           lte-rrc.referenceSignalPower  referenceSignalPower
               Signed 32-bit integer
               lte_rrc.INTEGER_M60_50

           lte-rrc.registeredMME  registeredMME
               No value
               lte_rrc.RegisteredMME

           lte-rrc.releaseCause  releaseCause
               Unsigned 32-bit integer
               lte_rrc.ReleaseCause

           lte-rrc.repetitionFactor  repetitionFactor
               Unsigned 32-bit integer
               lte_rrc.T_repetitionFactor

           lte-rrc.reportAmount  reportAmount
               Unsigned 32-bit integer
               lte_rrc.T_reportAmount

           lte-rrc.reportCGI  reportCGI
               No value
               lte_rrc.NULL

           lte-rrc.reportConfig  reportConfig
               Unsigned 32-bit integer
               lte_rrc.T_reportConfig

           lte-rrc.reportConfigEUTRA  reportConfigEUTRA
               No value
               lte_rrc.ReportConfigEUTRA

           lte-rrc.reportConfigId  reportConfigId
               Unsigned 32-bit integer
               lte_rrc.ReportConfigId

           lte-rrc.reportConfigInterRAT  reportConfigInterRAT
               No value
               lte_rrc.ReportConfigInterRAT

           lte-rrc.reportConfigList  reportConfigList
               Unsigned 32-bit integer
               lte_rrc.ReportConfigToAddModifyList

           lte-rrc.reportConfigToAddModifyList  reportConfigToAddModifyList
               Unsigned 32-bit integer
               lte_rrc.ReportConfigToAddModifyList

           lte-rrc.reportConfigToRemoveList  reportConfigToRemoveList
               Unsigned 32-bit integer
               lte_rrc.ReportConfigToRemoveList

           lte-rrc.reportInterval  reportInterval
               Unsigned 32-bit integer
               lte_rrc.ReportInterval

           lte-rrc.reportOnLeave  reportOnLeave
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.reportQuantity  reportQuantity
               Unsigned 32-bit integer
               lte_rrc.T_reportQuantity

           lte-rrc.reportStrongestCells  reportStrongestCells
               No value
               lte_rrc.NULL

           lte-rrc.reportStrongestCellsForSON  reportStrongestCellsForSON
               No value
               lte_rrc.NULL

           lte-rrc.retxBSR_Timer  retxBSR-Timer
               Unsigned 32-bit integer
               lte_rrc.T_retxBSR_Timer

           lte-rrc.rf_Parameters  rf-Parameters
               No value
               lte_rrc.RF_Parameters

           lte-rrc.ri_ConfigIndex  ri-ConfigIndex
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_1023

           lte-rrc.rlc_AM  rlc-AM
               No value
               lte_rrc.T_rlc_AM

           lte-rrc.rlc_Configuration  rlc-Configuration
               Unsigned 32-bit integer
               lte_rrc.T_rlc_Configuration

           lte-rrc.rlc_UM  rlc-UM
               No value
               lte_rrc.T_rlc_UM

           lte-rrc.rohc  rohc
               No value
               lte_rrc.T_rohc

           lte-rrc.rootSequenceIndex  rootSequenceIndex
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_837

           lte-rrc.rrcConnectionReconfiguration  rrcConnectionReconfiguration
               No value
               lte_rrc.RRCConnectionReconfiguration

           lte-rrc.rrcConnectionReconfigurationComplete  rrcConnectionReconfigurationComplete
               No value
               lte_rrc.RRCConnectionReconfigurationComplete

           lte-rrc.rrcConnectionReconfigurationComplete_r8  rrcConnectionReconfigurationComplete-r8
               No value
               lte_rrc.RRCConnectionReconfigurationComplete_r8_IEs

           lte-rrc.rrcConnectionReconfiguration_r8  rrcConnectionReconfiguration-r8
               No value
               lte_rrc.RRCConnectionReconfiguration_r8_IEs

           lte-rrc.rrcConnectionReestablishment  rrcConnectionReestablishment
               No value
               lte_rrc.RRCConnectionReestablishment

           lte-rrc.rrcConnectionReestablishmentComplete  rrcConnectionReestablishmentComplete
               No value
               lte_rrc.RRCConnectionReestablishmentComplete

           lte-rrc.rrcConnectionReestablishmentComplete_r8  rrcConnectionReestablishmentComplete-r8
               No value
               lte_rrc.RRCConnectionReestablishmentComplete_r8_IEs

           lte-rrc.rrcConnectionReestablishmentReject  rrcConnectionReestablishmentReject
               No value
               lte_rrc.RRCConnectionReestablishmentReject

           lte-rrc.rrcConnectionReestablishmentReject_r8  rrcConnectionReestablishmentReject-r8
               No value
               lte_rrc.RRCConnectionReestablishmentReject_r8_IEs

           lte-rrc.rrcConnectionReestablishmentRequest  rrcConnectionReestablishmentRequest
               No value
               lte_rrc.RRCConnectionReestablishmentRequest

           lte-rrc.rrcConnectionReestablishmentRequest_r8  rrcConnectionReestablishmentRequest-r8
               No value
               lte_rrc.RRCConnectionReestablishmentRequest_r8_IEs

           lte-rrc.rrcConnectionReestablishment_r8  rrcConnectionReestablishment-r8
               No value
               lte_rrc.RRCConnectionReestablishment_r8_IEs

           lte-rrc.rrcConnectionReject  rrcConnectionReject
               No value
               lte_rrc.RRCConnectionReject

           lte-rrc.rrcConnectionReject_r8  rrcConnectionReject-r8
               No value
               lte_rrc.RRCConnectionReject_r8_IEs

           lte-rrc.rrcConnectionRelease  rrcConnectionRelease
               No value
               lte_rrc.RRCConnectionRelease

           lte-rrc.rrcConnectionRelease_r8  rrcConnectionRelease-r8
               No value
               lte_rrc.RRCConnectionRelease_r8_IEs

           lte-rrc.rrcConnectionRequest  rrcConnectionRequest
               No value
               lte_rrc.RRCConnectionRequest

           lte-rrc.rrcConnectionRequest_r8  rrcConnectionRequest-r8
               No value
               lte_rrc.RRCConnectionRequest_r8_IEs

           lte-rrc.rrcConnectionSetup  rrcConnectionSetup
               No value
               lte_rrc.RRCConnectionSetup

           lte-rrc.rrcConnectionSetupComplete  rrcConnectionSetupComplete
               No value
               lte_rrc.RRCConnectionSetupComplete

           lte-rrc.rrcConnectionSetupComplete_r8  rrcConnectionSetupComplete-r8
               No value
               lte_rrc.RRCConnectionSetupComplete_r8_IEs

           lte-rrc.rrcConnectionSetup_r8  rrcConnectionSetup-r8
               No value
               lte_rrc.RRCConnectionSetup_r8_IEs

           lte-rrc.rrc_TransactionIdentifier  rrc-TransactionIdentifier
               Unsigned 32-bit integer
               lte_rrc.RRC_TransactionIdentifier

           lte-rrc.rrm_Configuration  rrm-Configuration
               No value
               lte_rrc.RRM_Configuration

           lte-rrc.rsrpResult  rsrpResult
               Unsigned 32-bit integer
               lte_rrc.RSRP_Range

           lte-rrc.rsrqResult  rsrqResult
               Unsigned 32-bit integer
               lte_rrc.RSRQ_Range

           lte-rrc.rssi  rssi
               Byte array
               lte_rrc.BIT_STRING_SIZE_6

           lte-rrc.s_IntraSearch  s-IntraSearch
               Unsigned 32-bit integer
               lte_rrc.ReselectionThreshold

           lte-rrc.s_Measure  s-Measure
               Unsigned 32-bit integer
               lte_rrc.RSRP_Range

           lte-rrc.s_NonIntraSearch  s-NonIntraSearch
               Unsigned 32-bit integer
               lte_rrc.ReselectionThreshold

           lte-rrc.s_TMSI  s-TMSI
               No value
               lte_rrc.S_TMSI

           lte-rrc.sameRefSignalsInNeighbour  sameRefSignalsInNeighbour
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.schedulingInformation  schedulingInformation
               Unsigned 32-bit integer
               lte_rrc.SchedulingInformation

           lte-rrc.schedulingRequestConfig  schedulingRequestConfig
               Unsigned 32-bit integer
               lte_rrc.SchedulingRequest_Configuration

           lte-rrc.searchWindowSize  searchWindowSize
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_15

           lte-rrc.securityConfiguration  securityConfiguration
               No value
               lte_rrc.SecurityConfiguration

           lte-rrc.securityModeCommand  securityModeCommand
               No value
               lte_rrc.SecurityModeCommand

           lte-rrc.securityModeCommand_r8  securityModeCommand-r8
               No value
               lte_rrc.SecurityModeCommand_r8_IEs

           lte-rrc.securityModeComplete  securityModeComplete
               No value
               lte_rrc.SecurityModeComplete

           lte-rrc.securityModeComplete_r8  securityModeComplete-r8
               No value
               lte_rrc.SecurityModeComplete_r8_IEs

           lte-rrc.securityModeFailure  securityModeFailure
               No value
               lte_rrc.SecurityModeFailure

           lte-rrc.securityModeFailure_r8  securityModeFailure-r8
               No value
               lte_rrc.SecurityModeFailure_r8_IEs

           lte-rrc.selectedPLMN_Identity  selectedPLMN-Identity
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_6

           lte-rrc.semiPersistSchedC_RNTI  semiPersistSchedC-RNTI
               Byte array
               lte_rrc.C_RNTI

           lte-rrc.semiPersistSchedIntervalDL  semiPersistSchedIntervalDL
               Unsigned 32-bit integer
               lte_rrc.T_semiPersistSchedIntervalDL

           lte-rrc.semiPersistSchedIntervalUL  semiPersistSchedIntervalUL
               Unsigned 32-bit integer
               lte_rrc.T_semiPersistSchedIntervalUL

           lte-rrc.sequenceHoppingEnabled  sequenceHoppingEnabled
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.serialNumber  serialNumber
               Byte array
               lte_rrc.BIT_STRING_SIZE_16

           lte-rrc.sf10  sf10
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_9

           lte-rrc.sf1024  sf1024
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_1023

           lte-rrc.sf128  sf128
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_127

           lte-rrc.sf1280  sf1280
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_1279

           lte-rrc.sf160  sf160
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_159

           lte-rrc.sf20  sf20
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_19

           lte-rrc.sf2048  sf2048
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_2047

           lte-rrc.sf256  sf256
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_255

           lte-rrc.sf2560  sf2560
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_2559

           lte-rrc.sf32  sf32
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_31

           lte-rrc.sf320  sf320
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_319

           lte-rrc.sf40  sf40
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_39

           lte-rrc.sf512  sf512
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_511

           lte-rrc.sf64  sf64
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_63

           lte-rrc.sf640  sf640
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_639

           lte-rrc.sf80  sf80
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_79

           lte-rrc.shortDRX  shortDRX
               Unsigned 32-bit integer
               lte_rrc.T_shortDRX

           lte-rrc.shortDRX_Cycle  shortDRX-Cycle
               Unsigned 32-bit integer
               lte_rrc.T_shortDRX_Cycle

           lte-rrc.shortMAC_I  shortMAC-I
               Byte array
               lte_rrc.ShortMAC_I

           lte-rrc.si  si
               Unsigned 32-bit integer
               lte_rrc.GERAN_SystemInformation

           lte-rrc.si_Periodicity  si-Periodicity
               Unsigned 32-bit integer
               lte_rrc.T_si_Periodicity

           lte-rrc.si_WindowLength  si-WindowLength
               Unsigned 32-bit integer
               lte_rrc.T_si_WindowLength

           lte-rrc.sib10  sib10
               No value
               lte_rrc.SystemInformationBlockType10

           lte-rrc.sib11  sib11
               No value
               lte_rrc.SystemInformationBlockType11

           lte-rrc.sib2  sib2
               No value
               lte_rrc.SystemInformationBlockType2

           lte-rrc.sib3  sib3
               No value
               lte_rrc.SystemInformationBlockType3

           lte-rrc.sib4  sib4
               No value
               lte_rrc.SystemInformationBlockType4

           lte-rrc.sib5  sib5
               No value
               lte_rrc.SystemInformationBlockType5

           lte-rrc.sib6  sib6
               No value
               lte_rrc.SystemInformationBlockType6

           lte-rrc.sib7  sib7
               No value
               lte_rrc.SystemInformationBlockType7

           lte-rrc.sib8  sib8
               No value
               lte_rrc.SystemInformationBlockType8

           lte-rrc.sib9  sib9
               No value
               lte_rrc.SystemInformationBlockType9

           lte-rrc.sib_MappingInfo  sib-MappingInfo
               Unsigned 32-bit integer
               lte_rrc.SIB_MappingInfo

           lte-rrc.sib_TypeAndInfo  sib-TypeAndInfo
               Unsigned 32-bit integer
               lte_rrc.T_sib_TypeAndInfo

           lte-rrc.sib_TypeAndInfo_item  sib-TypeAndInfo item
               Unsigned 32-bit integer
               lte_rrc.T_sib_TypeAndInfo_item

           lte-rrc.simultaneousAckNackAndCQI  simultaneousAckNackAndCQI
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.singlePCI  singlePCI
               Unsigned 32-bit integer
               lte_rrc.PhysicalCellIdentity

           lte-rrc.sizeOfRA_PreamblesGroupA  sizeOfRA-PreamblesGroupA
               Unsigned 32-bit integer
               lte_rrc.T_sizeOfRA_PreamblesGroupA

           lte-rrc.sn_FieldLength  sn-FieldLength
               Unsigned 32-bit integer
               lte_rrc.SN_FieldLength

           lte-rrc.soundingRsUl_Config  soundingRsUl-Config
               Unsigned 32-bit integer
               lte_rrc.SoundingRsUl_ConfigDedicated

           lte-rrc.sourceMasterInformationBlock  sourceMasterInformationBlock
               No value
               lte_rrc.MasterInformationBlock

           lte-rrc.sourceMeasurementConfiguration  sourceMeasurementConfiguration
               No value
               lte_rrc.MeasurementConfiguration

           lte-rrc.sourcePhysicalCellIdentity  sourcePhysicalCellIdentity
               Unsigned 32-bit integer
               lte_rrc.PhysicalCellIdentity

           lte-rrc.sourceRadioResourceConfiguration  sourceRadioResourceConfiguration
               No value
               lte_rrc.RadioResourceConfigDedicated

           lte-rrc.sourceSecurityConfiguration  sourceSecurityConfiguration
               No value
               lte_rrc.SecurityConfiguration

           lte-rrc.sourceSystemInformationBlockType1  sourceSystemInformationBlockType1
               No value
               lte_rrc.SystemInformationBlockType1

           lte-rrc.sourceSystemInformationBlockType2  sourceSystemInformationBlockType2
               No value
               lte_rrc.SystemInformationBlockType2

           lte-rrc.sourceUE_Identity  sourceUE-Identity
               Byte array
               lte_rrc.C_RNTI

           lte-rrc.spare  spare
               Byte array
               lte_rrc.BIT_STRING_SIZE_10

           lte-rrc.spare1  spare1
               No value
               lte_rrc.NULL

           lte-rrc.spare2  spare2
               No value
               lte_rrc.NULL

           lte-rrc.spare3  spare3
               No value
               lte_rrc.NULL

           lte-rrc.spare4  spare4
               No value
               lte_rrc.NULL

           lte-rrc.spare5  spare5
               No value
               lte_rrc.NULL

           lte-rrc.spare6  spare6
               No value
               lte_rrc.NULL

           lte-rrc.spare7  spare7
               No value
               lte_rrc.NULL

           lte-rrc.specialSubframePatterns  specialSubframePatterns
               Unsigned 32-bit integer
               lte_rrc.T_specialSubframePatterns

           lte-rrc.speedDependentParameters  speedDependentParameters
               Unsigned 32-bit integer
               lte_rrc.T_speedDependentParameters

           lte-rrc.speedDependentReselection  speedDependentReselection
               No value
               lte_rrc.T_speedDependentReselection

           lte-rrc.speedDependentScalingParameters  speedDependentScalingParameters
               No value
               lte_rrc.T_speedDependentScalingParameters

           lte-rrc.speedDependentScalingParametersHyst  speedDependentScalingParametersHyst
               No value
               lte_rrc.T_speedDependentScalingParametersHyst

           lte-rrc.sps_Configuration  sps-Configuration
               No value
               lte_rrc.SPS_Configuration

           lte-rrc.sps_ConfigurationDL  sps-ConfigurationDL
               Unsigned 32-bit integer
               lte_rrc.SPS_ConfigurationDL

           lte-rrc.sps_ConfigurationUL  sps-ConfigurationUL
               Unsigned 32-bit integer
               lte_rrc.SPS_ConfigurationUL

           lte-rrc.sr_ConfigurationIndex  sr-ConfigurationIndex
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_155

           lte-rrc.sr_PUCCH_ResourceIndex  sr-PUCCH-ResourceIndex
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_2047

           lte-rrc.srb_Identity  srb-Identity
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_2

           lte-rrc.srb_ToAddModifyList  srb-ToAddModifyList
               Unsigned 32-bit integer
               lte_rrc.SRB_ToAddModifyList

           lte-rrc.srsBandwidth  srsBandwidth
               Unsigned 32-bit integer
               lte_rrc.T_srsBandwidth

           lte-rrc.srsBandwidthConfiguration  srsBandwidthConfiguration
               Unsigned 32-bit integer
               lte_rrc.T_srsBandwidthConfiguration

           lte-rrc.srsHoppingBandwidth  srsHoppingBandwidth
               Unsigned 32-bit integer
               lte_rrc.T_srsHoppingBandwidth

           lte-rrc.srsMaxUpPts  srsMaxUpPts
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.srsSubframeConfiguration  srsSubframeConfiguration
               Unsigned 32-bit integer
               lte_rrc.T_srsSubframeConfiguration

           lte-rrc.srs_ConfigurationIndex  srs-ConfigurationIndex
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_1023

           lte-rrc.startPCI  startPCI
               Unsigned 32-bit integer
               lte_rrc.PhysicalCellIdentity

           lte-rrc.startingARFCN  startingARFCN
               Unsigned 32-bit integer
               lte_rrc.GERAN_ARFCN_Value

           lte-rrc.statusReportRequired  statusReportRequired
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.subbandCQI  subbandCQI
               No value
               lte_rrc.T_subbandCQI

           lte-rrc.subframeAllocation  subframeAllocation
               Unsigned 32-bit integer
               lte_rrc.T_subframeAllocation

           lte-rrc.subframeAssignment  subframeAssignment
               Unsigned 32-bit integer
               lte_rrc.T_subframeAssignment

           lte-rrc.supported1xRTT_BandList  supported1xRTT-BandList
               Unsigned 32-bit integer
               lte_rrc.Supported1xRTT_BandList

           lte-rrc.supportedEUTRA_BandList  supportedEUTRA-BandList
               Unsigned 32-bit integer
               lte_rrc.SupportedEUTRA_BandList

           lte-rrc.supportedGERAN_BandList  supportedGERAN-BandList
               Unsigned 32-bit integer
               lte_rrc.SupportedGERAN_BandList

           lte-rrc.supportedHRPD_BandList  supportedHRPD-BandList
               Unsigned 32-bit integer
               lte_rrc.SupportedHRPD_BandList

           lte-rrc.supportedROHCprofiles  supportedROHCprofiles
               No value
               lte_rrc.T_supportedROHCprofiles

           lte-rrc.supportedUTRA_FDD_BandList  supportedUTRA-FDD-BandList
               Unsigned 32-bit integer
               lte_rrc.SupportedUTRA_FDD_BandList

           lte-rrc.supportedUTRA_TDD128BandList  supportedUTRA-TDD128BandList
               Unsigned 32-bit integer
               lte_rrc.SupportedUTRA_TDD128BandList

           lte-rrc.supportedUTRA_TDD384BandList  supportedUTRA-TDD384BandList
               Unsigned 32-bit integer
               lte_rrc.SupportedUTRA_TDD384BandList

           lte-rrc.supportedUTRA_TDD768BandList  supportedUTRA-TDD768BandList
               Unsigned 32-bit integer
               lte_rrc.SupportedUTRA_TDD768BandList

           lte-rrc.systemFrameNumber  systemFrameNumber
               Byte array
               lte_rrc.BIT_STRING_SIZE_8

           lte-rrc.systemInfoModification  systemInfoModification
               Unsigned 32-bit integer
               lte_rrc.T_systemInfoModification

           lte-rrc.systemInformation  systemInformation
               No value
               lte_rrc.SystemInformation

           lte-rrc.systemInformationBlockType1  systemInformationBlockType1
               No value
               lte_rrc.SystemInformationBlockType1

           lte-rrc.systemInformationValueTag  systemInformationValueTag
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_31

           lte-rrc.systemInformation_r8  systemInformation-r8
               No value
               lte_rrc.SystemInformation_r8_IEs

           lte-rrc.t300  t300
               Unsigned 32-bit integer
               lte_rrc.T_t300

           lte-rrc.t301  t301
               Unsigned 32-bit integer
               lte_rrc.T_t301

           lte-rrc.t304  t304
               Unsigned 32-bit integer
               lte_rrc.T_t304

           lte-rrc.t310  t310
               Unsigned 32-bit integer
               lte_rrc.T_t310

           lte-rrc.t311  t311
               Unsigned 32-bit integer
               lte_rrc.T_t311

           lte-rrc.t320  t320
               Unsigned 32-bit integer
               lte_rrc.T_t320

           lte-rrc.t_Evalulation  t-Evalulation
               Unsigned 32-bit integer
               lte_rrc.T_t_Evalulation

           lte-rrc.t_HystNormal  t-HystNormal
               Unsigned 32-bit integer
               lte_rrc.T_t_HystNormal

           lte-rrc.t_PollRetransmit  t-PollRetransmit
               Unsigned 32-bit integer
               lte_rrc.T_PollRetransmit

           lte-rrc.t_Reordering  t-Reordering
               Unsigned 32-bit integer
               lte_rrc.T_Reordering

           lte-rrc.t_ReselectionCDMA_HRPD  t-ReselectionCDMA-HRPD
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_7

           lte-rrc.t_ReselectionCDMA_HRPD_SF_High  t-ReselectionCDMA-HRPD-SF-High
               Unsigned 32-bit integer
               lte_rrc.T_t_ReselectionCDMA_HRPD_SF_High

           lte-rrc.t_ReselectionCDMA_HRPD_SF_Medium  t-ReselectionCDMA-HRPD-SF-Medium
               Unsigned 32-bit integer
               lte_rrc.T_t_ReselectionCDMA_HRPD_SF_Medium

           lte-rrc.t_ReselectionCDMA_OneXRTT  t-ReselectionCDMA-OneXRTT
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_7

           lte-rrc.t_ReselectionCDMA_OneXRTT_SF_High  t-ReselectionCDMA-OneXRTT-SF-High
               Unsigned 32-bit integer
               lte_rrc.T_t_ReselectionCDMA_OneXRTT_SF_High

           lte-rrc.t_ReselectionCDMA_OneXRTT_SF_Medium  t-ReselectionCDMA-OneXRTT-SF-Medium
               Unsigned 32-bit integer
               lte_rrc.T_t_ReselectionCDMA_OneXRTT_SF_Medium

           lte-rrc.t_ReselectionEUTRAN  t-ReselectionEUTRAN
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_7

           lte-rrc.t_ReselectionEUTRAN_SF_High  t-ReselectionEUTRAN-SF-High
               Unsigned 32-bit integer
               lte_rrc.T_t_ReselectionEUTRAN_SF_High

           lte-rrc.t_ReselectionEUTRAN_SF_Medium  t-ReselectionEUTRAN-SF-Medium
               Unsigned 32-bit integer
               lte_rrc.T_t_ReselectionEUTRAN_SF_Medium

           lte-rrc.t_ReselectionGERAN  t-ReselectionGERAN
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_7

           lte-rrc.t_ReselectionGERAN_SF_High  t-ReselectionGERAN-SF-High
               Unsigned 32-bit integer
               lte_rrc.T_t_ReselectionGERAN_SF_High

           lte-rrc.t_ReselectionGERAN_SF_Medium  t-ReselectionGERAN-SF-Medium
               Unsigned 32-bit integer
               lte_rrc.T_t_ReselectionGERAN_SF_Medium

           lte-rrc.t_ReselectionUTRA  t-ReselectionUTRA
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_7

           lte-rrc.t_ReselectionUTRA_SF_High  t-ReselectionUTRA-SF-High
               Unsigned 32-bit integer
               lte_rrc.T_t_ReselectionUTRA_SF_High

           lte-rrc.t_ReselectionUTRA_SF_Medium  t-ReselectionUTRA-SF-Medium
               Unsigned 32-bit integer
               lte_rrc.T_t_ReselectionUTRA_SF_Medium

           lte-rrc.t_StatusProhibit  t-StatusProhibit
               Unsigned 32-bit integer
               lte_rrc.T_StatusProhibit

           lte-rrc.tac_ID  tac-ID
               Byte array
               lte_rrc.TrackingAreaCode

           lte-rrc.targetCellIdentity  targetCellIdentity
               Unsigned 32-bit integer
               lte_rrc.PhysicalCellIdentity

           lte-rrc.targetCellShortMAC_I  targetCellShortMAC-I
               Byte array
               lte_rrc.ShortMAC_I

           lte-rrc.targetRAT_MessageContainer  targetRAT-MessageContainer
               Byte array
               lte_rrc.OCTET_STRING

           lte-rrc.targetRAT_Type  targetRAT-Type
               Unsigned 32-bit integer
               lte_rrc.T_targetRAT_Type

           lte-rrc.tdd  tdd
               No value
               lte_rrc.T_tdd

           lte-rrc.tddAckNackFeedbackMode  tddAckNackFeedbackMode
               Unsigned 32-bit integer
               lte_rrc.T_tddAckNackFeedbackMode

           lte-rrc.tdd_Configuration  tdd-Configuration
               No value
               lte_rrc.TDD_Configuration

           lte-rrc.threshServingLow  threshServingLow
               Unsigned 32-bit integer
               lte_rrc.ReselectionThreshold

           lte-rrc.threshX_High  threshX-High
               Unsigned 32-bit integer
               lte_rrc.ReselectionThreshold

           lte-rrc.threshX_Low  threshX-Low
               Unsigned 32-bit integer
               lte_rrc.ReselectionThreshold

           lte-rrc.thresholdUTRA_EcNO  thresholdUTRA-EcNO
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_49

           lte-rrc.thresholdUTRA_RSCP  thresholdUTRA-RSCP
               Signed 32-bit integer
               lte_rrc.INTEGER_M5_91

           lte-rrc.threshold_RSRP  threshold-RSRP
               Unsigned 32-bit integer
               lte_rrc.RSRP_Range

           lte-rrc.threshold_RSRQ  threshold-RSRQ
               Unsigned 32-bit integer
               lte_rrc.RSRQ_Range

           lte-rrc.timeAlignmentTimerCommon  timeAlignmentTimerCommon
               Unsigned 32-bit integer
               lte_rrc.TimeAlignmentTimer

           lte-rrc.timeAlignmentTimerDedicated  timeAlignmentTimerDedicated
               Unsigned 32-bit integer
               lte_rrc.TimeAlignmentTimer

           lte-rrc.timeToTrigger  timeToTrigger
               Unsigned 32-bit integer
               lte_rrc.TimeToTrigger

           lte-rrc.timeToTriggerSF_High  timeToTriggerSF-High
               Unsigned 32-bit integer
               lte_rrc.T_timeToTriggerSF_High

           lte-rrc.timeToTriggerSF_Medium  timeToTriggerSF-Medium
               Unsigned 32-bit integer
               lte_rrc.T_timeToTriggerSF_Medium

           lte-rrc.tpc_Index  tpc-Index
               Unsigned 32-bit integer
               lte_rrc.TPC_Index

           lte-rrc.tpc_PDCCH_ConfigPUCCH  tpc-PDCCH-ConfigPUCCH
               Unsigned 32-bit integer
               lte_rrc.TPC_PDCCH_Configuration

           lte-rrc.tpc_PDCCH_ConfigPUSCH  tpc-PDCCH-ConfigPUSCH
               Unsigned 32-bit integer
               lte_rrc.TPC_PDCCH_Configuration

           lte-rrc.tpc_RNTI  tpc-RNTI
               Byte array
               lte_rrc.BIT_STRING_SIZE_16

           lte-rrc.trackingAreaCode  trackingAreaCode
               Byte array
               lte_rrc.TrackingAreaCode

           lte-rrc.transmissionComb  transmissionComb
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_1

           lte-rrc.transmissionMode  transmissionMode
               Unsigned 32-bit integer
               lte_rrc.T_transmissionMode

           lte-rrc.triggerQuantity  triggerQuantity
               Unsigned 32-bit integer
               lte_rrc.T_triggerQuantity

           lte-rrc.triggerType  triggerType
               Unsigned 32-bit integer
               lte_rrc.T_triggerType

           lte-rrc.ttiBundling  ttiBundling
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.uarfcn_DL  uarfcn-DL
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_16383

           lte-rrc.ueCapabilitiesRAT_Container  ueCapabilitiesRAT-Container
               Byte array
               lte_rrc.OCTET_STRING

           lte-rrc.ueCapabilityEnquiry  ueCapabilityEnquiry
               No value
               lte_rrc.UECapabilityEnquiry

           lte-rrc.ueCapabilityEnquiry_r8  ueCapabilityEnquiry-r8
               No value
               lte_rrc.UECapabilityEnquiry_r8_IEs

           lte-rrc.ueCapabilityInformation  ueCapabilityInformation
               No value
               lte_rrc.UECapabilityInformation

           lte-rrc.ueCapabilityInformation_r8  ueCapabilityInformation-r8
               Unsigned 32-bit integer
               lte_rrc.UECapabilityInformation_r8_IEs

           lte-rrc.ueRadioAccessCapabilityInformation  ueRadioAccessCapabilityInformation
               No value
               lte_rrc.UERadioAccessCapabilityInformation

           lte-rrc.ueRadioAccessCapabilityInformation_r8  ueRadioAccessCapabilityInformation-r8
               No value
               lte_rrc.UERadioAccessCapabilityInformation_r8_IEs

           lte-rrc.ue_Category  ue-Category
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_16

           lte-rrc.ue_Identity  ue-Identity
               Unsigned 32-bit integer
               lte_rrc.PagingUE_Identity

           lte-rrc.ue_InactiveTime  ue-InactiveTime
               Unsigned 32-bit integer
               lte_rrc.T_ue_InactiveTime

           lte-rrc.ue_RadioAccessCapRequest  ue-RadioAccessCapRequest
               Unsigned 32-bit integer
               lte_rrc.UE_RadioAccessCapRequest

           lte-rrc.ue_RadioAccessCapabilityInfo  ue-RadioAccessCapabilityInfo
               Byte array
               lte_rrc.T_ue_RadioAccessCapabilityInfo

           lte-rrc.ue_SecurityCapabilityInfo  ue-SecurityCapabilityInfo
               Byte array
               lte_rrc.OCTET_STRING

           lte-rrc.ue_SpecificRefSigsSupported  ue-SpecificRefSigsSupported
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.ue_TimersAndConstants  ue-TimersAndConstants
               No value
               lte_rrc.UE_TimersAndConstants

           lte-rrc.ue_TransmitAntennaSelection  ue-TransmitAntennaSelection
               Unsigned 32-bit integer
               lte_rrc.T_ue_TransmitAntennaSelection

           lte-rrc.ue_TxAntennaSelectionSupported  ue-TxAntennaSelectionSupported
               Boolean
               lte_rrc.BOOLEAN

           lte-rrc.ulHandoverPreparationTransfer  ulHandoverPreparationTransfer
               No value
               lte_rrc.ULHandoverPreparationTransfer

           lte-rrc.ulHandoverPreparationTransfer_r8  ulHandoverPreparationTransfer-r8
               No value
               lte_rrc.ULHandoverPreparationTransfer_r8_IEs

           lte-rrc.ulInformationTransfer  ulInformationTransfer
               No value
               lte_rrc.ULInformationTransfer

           lte-rrc.ulInformationTransfer_r8  ulInformationTransfer-r8
               No value
               lte_rrc.ULInformationTransfer_r8_IEs

           lte-rrc.ul_AM_RLC  ul-AM-RLC
               No value
               lte_rrc.UL_AM_RLC

           lte-rrc.ul_Bandwidth  ul-Bandwidth
               Unsigned 32-bit integer
               lte_rrc.T_ul_Bandwidth

           lte-rrc.ul_CyclicPrefixLength  ul-CyclicPrefixLength
               Unsigned 32-bit integer
               lte_rrc.UL_CyclicPrefixLength

           lte-rrc.ul_EARFCN  ul-EARFCN
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_maxEARFCN

           lte-rrc.ul_ReferenceSignalsPUSCH  ul-ReferenceSignalsPUSCH
               No value
               lte_rrc.UL_ReferenceSignalsPUSCH

           lte-rrc.ul_SCH_Configuration  ul-SCH-Configuration
               No value
               lte_rrc.T_ul_SCH_Configuration

           lte-rrc.ul_SpecificParameters  ul-SpecificParameters
               No value
               lte_rrc.T_ul_SpecificParameters

           lte-rrc.ul_UM_RLC  ul-UM-RLC
               No value
               lte_rrc.UL_UM_RLC

           lte-rrc.um_Bi_Directional  um-Bi-Directional
               No value
               lte_rrc.T_um_Bi_Directional

           lte-rrc.um_Uni_Directional_DL  um-Uni-Directional-DL
               No value
               lte_rrc.T_um_Uni_Directional_DL

           lte-rrc.um_Uni_Directional_UL  um-Uni-Directional-UL
               No value
               lte_rrc.T_um_Uni_Directional_UL

           lte-rrc.uplinkPowerControl  uplinkPowerControl
               No value
               lte_rrc.UplinkPowerControlDedicated

           lte-rrc.utraFDD  utraFDD
               No value
               lte_rrc.IRAT_UTRA_FDD_Parameters

           lte-rrc.utraTDD128  utraTDD128
               No value
               lte_rrc.IRAT_UTRA_TDD128_Parameters

           lte-rrc.utraTDD384  utraTDD384
               No value
               lte_rrc.IRAT_UTRA_TDD384_Parameters

           lte-rrc.utraTDD768  utraTDD768
               No value
               lte_rrc.IRAT_UTRA_TDD768_Parameters

           lte-rrc.utra_CarrierFreq  utra-CarrierFreq
               No value
               lte_rrc.UTRA_DL_CarrierFreq

           lte-rrc.utra_CellIdentity  utra-CellIdentity
               Byte array
               lte_rrc.BIT_STRING_SIZE_28

           lte-rrc.utra_CellReselectionPriority  utra-CellReselectionPriority
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_7

           lte-rrc.utra_FDD  utra-FDD
               No value
               lte_rrc.UTRA_DL_CarrierFreq

           lte-rrc.utra_FDD_Band  utra-FDD-Band
               Unsigned 32-bit integer
               lte_rrc.T_utra_FDD_Band

           lte-rrc.utra_FDD_CarrierFreqList  utra-FDD-CarrierFreqList
               Unsigned 32-bit integer
               lte_rrc.UTRA_FDD_CarrierFreqList

           lte-rrc.utra_FDD_CellIdentity  utra-FDD-CellIdentity
               No value
               lte_rrc.UTRA_FDD_CellIdentity

           lte-rrc.utra_FDD_FreqPriorityList  utra-FDD-FreqPriorityList
               Unsigned 32-bit integer
               lte_rrc.UTRA_FDD_FreqPriorityList

           lte-rrc.utra_TDD  utra-TDD
               No value
               lte_rrc.UTRA_DL_CarrierFreq

           lte-rrc.utra_TDD128Band  utra-TDD128Band
               Unsigned 32-bit integer
               lte_rrc.T_utra_TDD128Band

           lte-rrc.utra_TDD384Band  utra-TDD384Band
               Unsigned 32-bit integer
               lte_rrc.T_utra_TDD384Band

           lte-rrc.utra_TDD768Band  utra-TDD768Band
               Unsigned 32-bit integer
               lte_rrc.T_utra_TDD768Band

           lte-rrc.utra_TDD_CarrierFreqList  utra-TDD-CarrierFreqList
               Unsigned 32-bit integer
               lte_rrc.UTRA_TDD_CarrierFreqList

           lte-rrc.utra_TDD_CellIdentity  utra-TDD-CellIdentity
               No value
               lte_rrc.UTRA_TDD_CellIdentity

           lte-rrc.utra_TDD_FreqPriorityList  utra-TDD-FreqPriorityList
               Unsigned 32-bit integer
               lte_rrc.UTRA_TDD_FreqPriorityList

           lte-rrc.variableBitMapOfARFCNs  variableBitMapOfARFCNs
               Byte array
               lte_rrc.OCTET_STRING_SIZE_1_16

           lte-rrc.waitTime  waitTime
               Unsigned 32-bit integer
               lte_rrc.INTEGER_1_16

           lte-rrc.warningMessageSegment  warningMessageSegment
               Byte array
               lte_rrc.OCTET_STRING

           lte-rrc.warningMessageSegmentNumber  warningMessageSegmentNumber
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_63

           lte-rrc.warningMessageSegmentType  warningMessageSegmentType
               Unsigned 32-bit integer
               lte_rrc.T_warningMessageSegmentType

           lte-rrc.warningSecurityInformation  warningSecurityInformation
               Byte array
               lte_rrc.OCTET_STRING_SIZE_50

           lte-rrc.warningType  warningType
               Byte array
               lte_rrc.OCTET_STRING_SIZE_2

           lte-rrc.widebandCQI  widebandCQI
               No value
               lte_rrc.NULL

           lte-rrc.zeroCorrelationZoneConfig  zeroCorrelationZoneConfig
               Unsigned 32-bit integer
               lte_rrc.INTEGER_0_15

   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
               Address

           ldp.msg.tlv.addrl.addr_family  Address Family
               Unsigned 16-bit integer
               Address Family List

           ldp.msg.tlv.atm.label.vbits  V-bits
               Unsigned 8-bit integer
               ATM Label V Bits

           ldp.msg.tlv.atm.label.vci  VCI
               Unsigned 16-bit integer
               ATM Label VCI

           ldp.msg.tlv.atm.label.vpi  VPI
               Unsigned 16-bit integer
               ATM Label VPI

           ldp.msg.tlv.cbs  CBS
               Double-precision floating point
               Committed Burst Size

           ldp.msg.tlv.cdr  CDR
               Double-precision floating point
               Committed Data Rate

           ldp.msg.tlv.diffserv  Diff-Serv TLV
               No value
               Diffserv TLV

           ldp.msg.tlv.diffserv.map  MAP
               No value
               MAP entry

           ldp.msg.tlv.diffserv.map.exp  EXP
               Unsigned 8-bit integer
               EXP bit code

           ldp.msg.tlv.diffserv.mapnb  MAPnb
               Unsigned 8-bit integer
               Number of MAP entries

           ldp.msg.tlv.diffserv.phbid  PHBID
               No value
               PHBID

           ldp.msg.tlv.diffserv.phbid.bit14  Bit 14
               Unsigned 16-bit integer
               Bit 14

           ldp.msg.tlv.diffserv.phbid.bit15  Bit 15
               Unsigned 16-bit integer
               Bit 15

           ldp.msg.tlv.diffserv.phbid.code  PHB id code
               Unsigned 16-bit integer
               PHB id code

           ldp.msg.tlv.diffserv.phbid.dscp  DSCP
               Unsigned 16-bit integer
               DSCP

           ldp.msg.tlv.diffserv.type  LSP Type
               Unsigned 8-bit integer
               LSP Type

           ldp.msg.tlv.ebs  EBS
               Double-precision floating point
               Excess Burst Size

           ldp.msg.tlv.er_hop.as  AS Number
               Unsigned 16-bit integer
               AS Number

           ldp.msg.tlv.er_hop.locallspid  Local CR-LSP ID
               Unsigned 16-bit integer
               Local CR-LSP ID

           ldp.msg.tlv.er_hop.loose  Loose route bit
               Unsigned 24-bit integer
               Loose route bit

           ldp.msg.tlv.er_hop.lsrid  Local CR-LSP ID
               IPv4 address
               Local CR-LSP ID

           ldp.msg.tlv.er_hop.prefix4  IPv4 Address
               IPv4 address
               IPv4 Address

           ldp.msg.tlv.er_hop.prefix6  IPv6 Address
               IPv6 address
               IPv6 Address

           ldp.msg.tlv.er_hop.prefixlen  Prefix length
               Unsigned 8-bit integer
               Prefix len

           ldp.msg.tlv.experiment_id  Experiment ID
               Unsigned 32-bit integer
               Experiment ID

           ldp.msg.tlv.extstatus.data  Extended Status Data
               Unsigned 32-bit integer
               Extended Status Data

           ldp.msg.tlv.fec.af  FEC Element Address Type
               Unsigned 16-bit integer
               Forwarding Equivalence Class Element Address Family

           ldp.msg.tlv.fec.hoval  FEC Element Host Address Value
               String
               Forwarding Equivalence Class Element Address

           ldp.msg.tlv.fec.len  FEC Element Length
               Unsigned 8-bit integer
               Forwarding Equivalence Class Element Length

           ldp.msg.tlv.fec.pfval  FEC Element Prefix Value
               String
               Forwarding Equivalence Class Element Prefix

           ldp.msg.tlv.fec.type  FEC Element Type
               Unsigned 8-bit integer
               Forwarding Equivalence Class Element Types

           ldp.msg.tlv.fec.vc.controlword  C-bit
               Boolean
               Control Word Present

           ldp.msg.tlv.fec.vc.groupid  Group ID
               Unsigned 32-bit integer
               VC FEC Group ID

           ldp.msg.tlv.fec.vc.infolength  VC Info Length
               Unsigned 8-bit integer
               VC FEC Info Length

           ldp.msg.tlv.fec.vc.intparam.cepbytes  Payload Bytes
               Unsigned 16-bit integer
               VC FEC Interface Param CEP/TDM Payload Bytes

           ldp.msg.tlv.fec.vc.intparam.cepopt_ais  AIS
               Boolean
               VC FEC Interface Param CEP Option AIS

           ldp.msg.tlv.fec.vc.intparam.cepopt_ceptype  CEP Type
               Unsigned 16-bit integer
               VC FEC Interface Param CEP Option CEP Type

           ldp.msg.tlv.fec.vc.intparam.cepopt_e3  Async E3
               Boolean
               VC FEC Interface Param CEP Option Async E3

           ldp.msg.tlv.fec.vc.intparam.cepopt_ebm  EBM
               Boolean
               VC FEC Interface Param CEP Option EBM Header

           ldp.msg.tlv.fec.vc.intparam.cepopt_mah  MAH
               Boolean
               VC FEC Interface Param CEP Option MPLS Adaptation header

           ldp.msg.tlv.fec.vc.intparam.cepopt_res  Reserved
               Unsigned 16-bit integer
               VC FEC Interface Param CEP Option Reserved

           ldp.msg.tlv.fec.vc.intparam.cepopt_rtp  RTP
               Boolean
               VC FEC Interface Param CEP Option RTP Header

           ldp.msg.tlv.fec.vc.intparam.cepopt_t3  Async T3
               Boolean
               VC FEC Interface Param CEP Option Async T3

           ldp.msg.tlv.fec.vc.intparam.cepopt_une  UNE
               Boolean
               VC FEC Interface Param CEP Option Unequipped

           ldp.msg.tlv.fec.vc.intparam.desc  Description
               String
               VC FEC Interface Description

           ldp.msg.tlv.fec.vc.intparam.dlcilen  DLCI Length
               Unsigned 16-bit integer
               VC FEC Interface Parameter Frame-Relay DLCI Length

           ldp.msg.tlv.fec.vc.intparam.fcslen  FCS Length
               Unsigned 16-bit integer
               VC FEC Interface Paramater FCS Length

           ldp.msg.tlv.fec.vc.intparam.id  ID
               Unsigned 8-bit integer
               VC FEC Interface Paramater ID

           ldp.msg.tlv.fec.vc.intparam.length  Length
               Unsigned 8-bit integer
               VC FEC Interface Paramater Length

           ldp.msg.tlv.fec.vc.intparam.maxatm  Number of Cells
               Unsigned 16-bit integer
               VC FEC Interface Param Max ATM Concat Cells

           ldp.msg.tlv.fec.vc.intparam.mtu  MTU
               Unsigned 16-bit integer
               VC FEC Interface Paramater MTU

           ldp.msg.tlv.fec.vc.intparam.tdmbps  BPS
               Unsigned 32-bit integer
               VC FEC Interface Parameter CEP/TDM bit-rate

           ldp.msg.tlv.fec.vc.intparam.tdmopt_d  D Bit
               Boolean
               VC FEC Interface Param TDM Options Dynamic Timestamp

           ldp.msg.tlv.fec.vc.intparam.tdmopt_f  F Bit
               Boolean
               VC FEC Interface Param TDM Options Flavor bit

           ldp.msg.tlv.fec.vc.intparam.tdmopt_freq  FREQ
               Unsigned 16-bit integer
               VC FEC Interface Param TDM Options Frequency

           ldp.msg.tlv.fec.vc.intparam.tdmopt_pt  PT
               Unsigned 8-bit integer
               VC FEC Interface Param TDM Options Payload Type

           ldp.msg.tlv.fec.vc.intparam.tdmopt_r  R Bit
               Boolean
               VC FEC Interface Param TDM Options RTP Header

           ldp.msg.tlv.fec.vc.intparam.tdmopt_res1  RSVD-1
               Unsigned 16-bit integer
               VC FEC Interface Param TDM Options Reserved

           ldp.msg.tlv.fec.vc.intparam.tdmopt_res2  RSVD-2
               Unsigned 8-bit integer
               VC FEC Interface Param TDM Options Reserved

           ldp.msg.tlv.fec.vc.intparam.tdmopt_ssrc  SSRC
               Unsigned 32-bit integer
               VC FEC Interface Param TDM Options SSRC

           ldp.msg.tlv.fec.vc.intparam.vccv.cctype_cw  PWE3 Control Word
               Boolean
               VC FEC Interface Param VCCV CC Type PWE3 CW

           ldp.msg.tlv.fec.vc.intparam.vccv.cctype_mplsra  MPLS Router Alert
               Boolean
               VC FEC Interface Param VCCV CC Type MPLS Router Alert

           ldp.msg.tlv.fec.vc.intparam.vccv.cctype_ttl1  MPLS Inner Label TTL = 1
               Boolean
               VC FEC Interface Param VCCV CC Type Inner Label TTL 1

           ldp.msg.tlv.fec.vc.intparam.vccv.cvtype_bfd  BFD
               Boolean
               VC FEC Interface Param VCCV CV Type BFD

           ldp.msg.tlv.fec.vc.intparam.vccv.cvtype_icmpping  ICMP Ping
               Boolean
               VC FEC Interface Param VCCV CV Type ICMP Ping

           ldp.msg.tlv.fec.vc.intparam.vccv.cvtype_lspping  LSP Ping
               Boolean
               VC FEC Interface Param VCCV CV Type LSP Ping

           ldp.msg.tlv.fec.vc.intparam.vlanid  VLAN Id
               Unsigned 16-bit integer
               VC FEC Interface Param VLAN Id

           ldp.msg.tlv.fec.vc.vcid  VC ID
               Unsigned 32-bit integer
               VC FEC VCID

           ldp.msg.tlv.fec.vc.vctype  VC Type
               Unsigned 16-bit integer
               Virtual Circuit Type

           ldp.msg.tlv.flags_cbs  CBS
               Boolean
               CBS negotiability flag

           ldp.msg.tlv.flags_cdr  CDR
               Boolean
               CDR negotiability flag

           ldp.msg.tlv.flags_ebs  EBS
               Boolean
               EBS negotiability flag

           ldp.msg.tlv.flags_pbs  PBS
               Boolean
               PBS negotiability flag

           ldp.msg.tlv.flags_pdr  PDR
               Boolean
               PDR negotiability flag

           ldp.msg.tlv.flags_reserv  Reserved
               Unsigned 8-bit integer
               Reserved

           ldp.msg.tlv.flags_weight  Weight
               Boolean
               Weight negotiability flag

           ldp.msg.tlv.fr.label.dlci  DLCI
               Unsigned 24-bit integer
               FRAME RELAY Label DLCI

           ldp.msg.tlv.fr.label.len  Number of DLCI bits
               Unsigned 16-bit integer
               DLCI Number of bits

           ldp.msg.tlv.frequency  Frequency
               Unsigned 8-bit integer
               Frequency

           ldp.msg.tlv.ft_ack.sequence_num  FT ACK Sequence Number
               Unsigned 32-bit integer
               FT ACK Sequence Number

           ldp.msg.tlv.ft_protect.sequence_num  FT Sequence Number
               Unsigned 32-bit integer
               FT Sequence Number

           ldp.msg.tlv.ft_sess.flag_a  A bit
               Boolean
               All-Label protection Required

           ldp.msg.tlv.ft_sess.flag_c  C bit
               Boolean
               Check-Pointint Flag

           ldp.msg.tlv.ft_sess.flag_l  L bit
               Boolean
               Learn From network Flag

           ldp.msg.tlv.ft_sess.flag_r  R bit
               Boolean
               FT Reconnect Flag

           ldp.msg.tlv.ft_sess.flag_res  Reserved
               Unsigned 16-bit integer
               Reserved bits

           ldp.msg.tlv.ft_sess.flag_s  S bit
               Boolean
               Save State Flag

           ldp.msg.tlv.ft_sess.flags  Flags
               Unsigned 16-bit integer
               FT Session Flags

           ldp.msg.tlv.ft_sess.reconn_to  Reconnect Timeout
               Unsigned 32-bit integer
               FT Reconnect Timeout

           ldp.msg.tlv.ft_sess.recovery_time  Recovery Time
               Unsigned 32-bit integer
               Recovery Time

           ldp.msg.tlv.ft_sess.res  Reserved
               Unsigned 16-bit integer
               Reserved

           ldp.msg.tlv.generic.label  Generic Label
               Unsigned 32-bit integer
               Generic Label

           ldp.msg.tlv.hc.value  Hop Count Value
               Unsigned 8-bit integer
               Hop Count

           ldp.msg.tlv.hello.cnf_seqno  Configuration Sequence Number
               Unsigned 32-bit integer
               Hello Configuration Sequence Number

           ldp.msg.tlv.hello.hold  Hold Time
               Unsigned 16-bit integer
               Hello Common Parameters Hold Time

           ldp.msg.tlv.hello.requested  Hello Requested
               Boolean
               Hello Common Parameters Hello Requested Bit

           ldp.msg.tlv.hello.res  Reserved
               Unsigned 16-bit integer
               Hello Common Parameters Reserved Field

           ldp.msg.tlv.hello.targeted  Targeted Hello
               Boolean
               Hello Common Parameters Targeted Bit

           ldp.msg.tlv.hold_prio  Hold Prio
               Unsigned 8-bit integer
               LSP hold priority

           ldp.msg.tlv.ipv4.taddr  IPv4 Transport Address
               IPv4 address
               IPv4 Transport Address

           ldp.msg.tlv.ipv6.taddr  IPv6 Transport Address
               IPv6 address
               IPv6 Transport Address

           ldp.msg.tlv.len  TLV Length
               Unsigned 16-bit integer
               TLV Length Field

           ldp.msg.tlv.lspid.actflg  Action Indicator Flag
               Unsigned 16-bit integer
               Action Indicator Flag

           ldp.msg.tlv.lspid.locallspid  Local CR-LSP ID
               Unsigned 16-bit integer
               Local CR-LSP ID

           ldp.msg.tlv.lspid.lsrid  Ingress LSR Router ID
               IPv4 address
               Ingress LSR Router ID

           ldp.msg.tlv.mac  MAC address
               6-byte Hardware (MAC) Address
               MAC address

           ldp.msg.tlv.pbs  PBS
               Double-precision floating point
               Peak Burst Size

           ldp.msg.tlv.pdr  PDR
               Double-precision floating point
               Peak Data Rate

           ldp.msg.tlv.pv.lsrid  LSR Id
               IPv4 address
               Path Vector LSR Id

           ldp.msg.tlv.resource_class  Resource Class
               Unsigned 32-bit integer
               Resource Class (Color)

           ldp.msg.tlv.returned.ldpid.lsid  Returned PDU Label Space ID
               Unsigned 16-bit integer
               LDP Label Space ID

           ldp.msg.tlv.returned.ldpid.lsr  Returned PDU LSR ID
               IPv4 address
               LDP Label Space Router ID

           ldp.msg.tlv.returned.msg.id  Returned Message ID
               Unsigned 32-bit integer
               LDP Message ID

           ldp.msg.tlv.returned.msg.len  Returned Message Length
               Unsigned 16-bit integer
               LDP Message Length (excluding message type and len)

           ldp.msg.tlv.returned.msg.type  Returned Message Type
               Unsigned 16-bit integer
               LDP message type

           ldp.msg.tlv.returned.msg.ubit  Returned Message Unknown bit
               Boolean
               Message Unknown bit

           ldp.msg.tlv.returned.pdu_len  Returned PDU Length
               Unsigned 16-bit integer
               LDP PDU Length

           ldp.msg.tlv.returned.version  Returned PDU Version
               Unsigned 16-bit integer
               LDP Version Number

           ldp.msg.tlv.route_pinning  Route Pinning
               Unsigned 32-bit integer
               Route Pinning

           ldp.msg.tlv.sess.advbit  Session Label Advertisement Discipline
               Boolean
               Common Session Parameters Label Advertisement Discipline

           ldp.msg.tlv.sess.atm.dir  Directionality
               Boolean
               Label Directionality

           ldp.msg.tlv.sess.atm.lr  Number of ATM Label Ranges
               Unsigned 8-bit integer
               Number of Label Ranges

           ldp.msg.tlv.sess.atm.maxvci  Maximum VCI
               Unsigned 16-bit integer
               Maximum VCI

           ldp.msg.tlv.sess.atm.maxvpi  Maximum VPI
               Unsigned 16-bit integer
               Maximum VPI

           ldp.msg.tlv.sess.atm.merge  Session ATM Merge Parameter
               Unsigned 8-bit integer
               Merge ATM Session Parameters

           ldp.msg.tlv.sess.atm.minvci  Minimum VCI
               Unsigned 16-bit integer
               Minimum VCI

           ldp.msg.tlv.sess.atm.minvpi  Minimum VPI
               Unsigned 16-bit integer
               Minimum VPI

           ldp.msg.tlv.sess.fr.dir  Directionality
               Boolean
               Label Directionality

           ldp.msg.tlv.sess.fr.len  Number of DLCI bits
               Unsigned 16-bit integer
               DLCI Number of bits

           ldp.msg.tlv.sess.fr.lr  Number of Frame Relay Label Ranges
               Unsigned 8-bit integer
               Number of Label Ranges

           ldp.msg.tlv.sess.fr.maxdlci  Maximum DLCI
               Unsigned 24-bit integer
               Maximum DLCI

           ldp.msg.tlv.sess.fr.merge  Session Frame Relay Merge Parameter
               Unsigned 8-bit integer
               Merge Frame Relay Session Parameters

           ldp.msg.tlv.sess.fr.mindlci  Minimum DLCI
               Unsigned 24-bit integer
               Minimum DLCI

           ldp.msg.tlv.sess.ka  Session KeepAlive Time
               Unsigned 16-bit integer
               Common Session Parameters KeepAlive Time

           ldp.msg.tlv.sess.ldetbit  Session Loop Detection
               Boolean
               Common Session Parameters Loop Detection

           ldp.msg.tlv.sess.mxpdu  Session Max PDU Length
               Unsigned 16-bit integer
               Common Session Parameters Max PDU Length

           ldp.msg.tlv.sess.pvlim  Session Path Vector Limit
               Unsigned 8-bit integer
               Common Session Parameters Path Vector Limit

           ldp.msg.tlv.sess.rxlsr  Session Receiver LSR Identifier
               IPv4 address
               Common Session Parameters LSR Identifier

           ldp.msg.tlv.sess.ver  Session Protocol Version
               Unsigned 16-bit integer
               Common Session Parameters Protocol Version

           ldp.msg.tlv.set_prio  Set Prio
               Unsigned 8-bit integer
               LSP setup priority

           ldp.msg.tlv.status.data  Status Data
               Unsigned 32-bit integer
               Status Data

           ldp.msg.tlv.status.ebit  E Bit
               Boolean
               Fatal Error Bit

           ldp.msg.tlv.status.fbit  F Bit
               Boolean
               Forward Bit

           ldp.msg.tlv.status.msg.id  Message ID
               Unsigned 32-bit integer
               Identifies peer message to which Status TLV refers

           ldp.msg.tlv.status.msg.type  Message Type
               Unsigned 16-bit integer
               Type of peer message to which Status TLV refers

           ldp.msg.tlv.type  TLV Type
               Unsigned 16-bit integer
               TLV Type Field

           ldp.msg.tlv.unknown  TLV Unknown bits
               Unsigned 8-bit integer
               TLV Unknown bits Field

           ldp.msg.tlv.value  TLV Value
               Byte array
               TLV Value Bytes

           ldp.msg.tlv.vendor_id  Vendor ID
               Unsigned 32-bit integer
               IEEE 802 Assigned Vendor ID

           ldp.msg.tlv.weight  Weight
               Unsigned 8-bit integer
               Weight of the CR-LSP

           ldp.msg.type  Message Type
               Unsigned 16-bit integer
               LDP message type

           ldp.msg.ubit  U bit
               Boolean
               Unknown Message Bit

           ldp.msg.vendor.id  Vendor ID
               Unsigned 32-bit integer
               LDP Vendor-private Message ID

           ldp.req  Request
               Boolean

           ldp.rsp  Response
               Boolean

           ldp.tlv.lbl_req_msg_id  Label Request Message ID
               Unsigned 32-bit integer
               Label Request Message to be aborted

   Laplink (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
               Control Connection ID

           l2tp.length  Length
               Unsigned 16-bit integer

           l2tp.length_bit  Length Bit
               Boolean
               Length bit

           l2tp.offset  Offset
               Unsigned 16-bit integer
               Number of octest past the L2TP header at which thepayload data starts.

           l2tp.offset_bit  Offset bit
               Boolean
               Offset bit

           l2tp.priority  Priority
               Boolean
               Priority bit

           l2tp.res  Reserved
               Unsigned 16-bit integer
               Reserved

           l2tp.seq_bit  Sequence Bit
               Boolean
               Sequence bit

           l2tp.session  Session ID
               Unsigned 16-bit integer
               Session ID

           l2tp.sid  Session ID
               Unsigned 32-bit integer
               Session ID

           l2tp.tie_breaker  Tie Breaker
               Unsigned 64-bit integer
               Tie Breaker

           l2tp.tunnel  Tunnel ID
               Unsigned 16-bit integer
               Tunnel ID

           l2tp.type  Type
               Unsigned 16-bit integer
               Type bit

           l2tp.version  Version
               Unsigned 16-bit integer
               Version

           lt2p.cookie  Cookie
               Byte array
               Cookie

           lt2p.l2_spec_atm  ATM-Specific Sublayer
               No value
               ATM-Specific Sublayer

           lt2p.l2_spec_c  C-bit
               Boolean
               CLP Bit

           lt2p.l2_spec_def  Default L2-Specific Sublayer
               No value
               Default L2-Specific Sublayer

           lt2p.l2_spec_g  G-bit
               Boolean
               EFCI Bit

           lt2p.l2_spec_s  S-bit
               Boolean
               Sequence Bit

           lt2p.l2_spec_sequence  Sequence Number
               Unsigned 24-bit integer
               Sequence Number

           lt2p.l2_spec_t  T-bit
               Boolean
               Transport Type Bit

           lt2p.l2_spec_u  U-bit
               Boolean
               C/R Bit

   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
               Current Deciphering Key Value

           gsm_bssmap_le.decipheringKeys.flag  Ciphering Key Flag
               Unsigned 8-bit integer
               Ciphering Key Flag

           gsm_bssmap_le.decipheringKeys.next  Next Deciphering Key Value
               Unsigned 8-bit integer
               Next Deciphering Key Value

           gsm_bssmap_le.diagnosticValue  Diagnostic Value
               Unsigned 8-bit integer
               Diagnostic Value

           gsm_bssmap_le.lcsCauseValue  Cause Value
               Unsigned 8-bit integer
               Cause Value

           gsm_bssmap_le.lcsClientType.clientCategory  Client Category
               Unsigned 8-bit integer
               Client Category

           gsm_bssmap_le.lcsClientType.clientSubtype  Client Subtype
               Unsigned 8-bit integer
               Client Subtype

           gsm_bssmap_le.lcsQos.horizontalAccuracy  Horizontal Accuracy
               Unsigned 8-bit integer
               Horizontal Accuracy

           gsm_bssmap_le.lcsQos.horizontalAccuracyIndicator  Horizontal Accuracy Indicator
               Unsigned 8-bit integer
               Horizontal Accuracy Indicator

           gsm_bssmap_le.lcsQos.responseTimeCategory  Response Time Category
               Unsigned 8-bit integer
               Response Time Category

           gsm_bssmap_le.lcsQos.velocityRequested  Velocity Requested
               Unsigned 8-bit integer
               Velocity Requested

           gsm_bssmap_le.lcsQos.verticalAccuracy  Vertical Accuracy
               Unsigned 8-bit integer
               Vertical Accuracy

           gsm_bssmap_le.lcsQos.verticalAccuracyIndicator  Vertical Accuracy Indicator
               Unsigned 8-bit integer
               Vertical Accuracy Indicator

           gsm_bssmap_le.lcsQos.verticalCoordinateIndicator  Vertical Coordinate Indicator
               Unsigned 8-bit integer
               Vertical Coordinate Indicator

           gsm_bssmap_le.spare  Spare
               Unsigned 8-bit integer
               Spare

   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

   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 User Datagram Protocol (udplite)
           udp.checksum_coverage  Checksum coverage
               Unsigned 16-bit integer

           udp.checksum_coverage_bad  Bad Checksum coverage
               Boolean

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

           ldap.AttributeList_item  AttributeList item
               No value
               ldap.AttributeList_item

           ldap.AttributeValue  AttributeValue
               Byte array
               ldap.AttributeValue

           ldap.CancelRequestValue  CancelRequestValue
               No value
               ldap.CancelRequestValue

           ldap.Control  Control
               No value
               ldap.Control

           ldap.LDAPMessage  LDAPMessage
               No value
               ldap.LDAPMessage

           ldap.LDAPURL  LDAPURL
               String
               ldap.LDAPURL

           ldap.PartialAttributeList_item  PartialAttributeList item
               No value
               ldap.PartialAttributeList_item

           ldap.PasswdModifyRequestValue  PasswdModifyRequestValue
               No value
               ldap.PasswdModifyRequestValue

           ldap.ReplControlValue  ReplControlValue
               No value
               ldap.ReplControlValue

           ldap.SearchControlValue  SearchControlValue
               No value
               ldap.SearchControlValue

           ldap.SortKeyList  SortKeyList
               Unsigned 32-bit integer
               ldap.SortKeyList

           ldap.SortKeyList_item  SortKeyList item
               No value
               ldap.SortKeyList_item

           ldap.SortResult  SortResult
               No value
               ldap.SortResult

           ldap.abandonRequest  abandonRequest
               Unsigned 32-bit integer
               ldap.AbandonRequest

           ldap.addRequest  addRequest
               No value
               ldap.AddRequest

           ldap.addResponse  addResponse
               No value
               ldap.AddResponse

           ldap.and  and
               Unsigned 32-bit integer
               ldap.T_and

           ldap.and_item  and item
               Unsigned 32-bit integer
               ldap.T_and_item

           ldap.any  any
               String
               ldap.LDAPString

           ldap.approxMatch  approxMatch
               No value
               ldap.T_approxMatch

           ldap.assertionValue  assertionValue
               String
               ldap.AssertionValue

           ldap.attributeDesc  attributeDesc
               String
               ldap.AttributeDescription

           ldap.attributeType  attributeType
               String
               ldap.AttributeDescription

           ldap.attributes  attributes
               Unsigned 32-bit integer
               ldap.AttributeDescriptionList

           ldap.authentication  authentication
               Unsigned 32-bit integer
               ldap.AuthenticationChoice

           ldap.ava  ava
               No value
               ldap.AttributeValueAssertion

           ldap.baseObject  baseObject
               String
               ldap.LDAPDN

           ldap.bindRequest  bindRequest
               No value
               ldap.BindRequest

           ldap.bindResponse  bindResponse
               No value
               ldap.BindResponse

           ldap.cancelID  cancelID
               Unsigned 32-bit integer
               ldap.MessageID

           ldap.compareRequest  compareRequest
               No value
               ldap.CompareRequest

           ldap.compareResponse  compareResponse
               No value
               ldap.CompareResponse

           ldap.controlType  controlType
               String
               ldap.ControlType

           ldap.controlValue  controlValue
               Byte array
               ldap.T_controlValue

           ldap.controls  controls
               Unsigned 32-bit integer
               ldap.Controls

           ldap.cookie  cookie
               Byte array
               ldap.OCTET_STRING

           ldap.credentials  credentials
               Byte array
               ldap.Credentials

           ldap.criticality  criticality
               Boolean
               ldap.BOOLEAN

           ldap.delRequest  delRequest
               String
               ldap.DelRequest

           ldap.delResponse  delResponse
               No value
               ldap.DelResponse

           ldap.deleteoldrdn  deleteoldrdn
               Boolean
               ldap.BOOLEAN

           ldap.derefAliases  derefAliases
               Unsigned 32-bit integer
               ldap.T_derefAliases

           ldap.dnAttributes  dnAttributes
               Boolean
               ldap.T_dnAttributes

           ldap.entry  entry
               String
               ldap.LDAPDN

           ldap.equalityMatch  equalityMatch
               No value
               ldap.T_equalityMatch

           ldap.errorMessage  errorMessage
               String
               ldap.ErrorMessage

           ldap.extendedReq  extendedReq
               No value
               ldap.ExtendedRequest

           ldap.extendedResp  extendedResp
               No value
               ldap.ExtendedResponse

           ldap.extensibleMatch  extensibleMatch
               No value
               ldap.T_extensibleMatch

           ldap.filter  filter
               Unsigned 32-bit integer
               ldap.T_filter

           ldap.final  final
               String
               ldap.LDAPString

           ldap.genPasswd  genPasswd
               Byte array
               ldap.OCTET_STRING

           ldap.greaterOrEqual  greaterOrEqual
               No value
               ldap.T_greaterOrEqual

           ldap.guid  GUID
               Globally Unique Identifier
               GUID

           ldap.initial  initial
               String
               ldap.LDAPString

           ldap.lessOrEqual  lessOrEqual
               No value
               ldap.T_lessOrEqual

           ldap.matchValue  matchValue
               String
               ldap.AssertionValue

           ldap.matchedDN  matchedDN
               String
               ldap.LDAPDN

           ldap.matchingRule  matchingRule
               String
               ldap.MatchingRuleId

           ldap.maxReturnLength  maxReturnLength
               Signed 32-bit integer
               ldap.INTEGER

           ldap.mechanism  mechanism
               String
               ldap.Mechanism

           ldap.messageID  messageID
               Unsigned 32-bit integer
               ldap.MessageID

           ldap.modDNRequest  modDNRequest
               No value
               ldap.ModifyDNRequest

           ldap.modDNResponse  modDNResponse
               No value
               ldap.ModifyDNResponse

           ldap.modification  modification
               Unsigned 32-bit integer
               ldap.ModifyRequest_modification

           ldap.modification_item  modification item
               No value
               ldap.T_modifyRequest_modification_item

           ldap.modifyRequest  modifyRequest
               No value
               ldap.ModifyRequest

           ldap.modifyResponse  modifyResponse
               No value
               ldap.ModifyResponse

           ldap.name  name
               String
               ldap.LDAPDN

           ldap.newPasswd  newPasswd
               Byte array
               ldap.OCTET_STRING

           ldap.newSuperior  newSuperior
               String
               ldap.LDAPDN

           ldap.newrdn  newrdn
               String
               ldap.RelativeLDAPDN

           ldap.not  not
               Unsigned 32-bit integer
               ldap.T_not

           ldap.ntlmsspAuth  ntlmsspAuth
               Byte array
               ldap.T_ntlmsspAuth

           ldap.ntlmsspNegotiate  ntlmsspNegotiate
               Byte array
               ldap.T_ntlmsspNegotiate

           ldap.object  object
               String
               ldap.LDAPDN

           ldap.objectName  objectName
               String
               ldap.LDAPDN

           ldap.oldPasswd  oldPasswd
               Byte array
               ldap.OCTET_STRING

           ldap.operation  operation
               Unsigned 32-bit integer
               ldap.T_operation

           ldap.or  or
               Unsigned 32-bit integer
               ldap.T_or

           ldap.or_item  or item
               Unsigned 32-bit integer
               ldap.T_or_item

           ldap.orderingRule  orderingRule
               String
               ldap.MatchingRuleId

           ldap.parentsFirst  parentsFirst
               Signed 32-bit integer
               ldap.INTEGER

           ldap.present  present
               String
               ldap.T_present

           ldap.protocolOp  protocolOp
               Unsigned 32-bit integer
               ldap.ProtocolOp

           ldap.referral  referral
               Unsigned 32-bit integer
               ldap.Referral

           ldap.requestName  requestName
               String
               ldap.LDAPOID

           ldap.requestValue  requestValue
               Byte array
               ldap.T_requestValue

           ldap.response  response
               Byte array
               ldap.OCTET_STRING

           ldap.responseName  responseName
               String
               ldap.ResponseName

           ldap.response_in  Response In
               Frame number
               The response to this LDAP request is in this frame

           ldap.response_to  Response To
               Frame number
               This is a response to the LDAP request in this frame

           ldap.resultCode  resultCode
               Unsigned 32-bit integer
               ldap.T_resultCode

           ldap.reverseOrder  reverseOrder
               Boolean
               ldap.BOOLEAN

           ldap.sasl  sasl
               No value
               ldap.SaslCredentials

           ldap.sasl_buffer_length  SASL Buffer Length
               Unsigned 32-bit integer
               SASL Buffer Length

           ldap.scope  scope
               Unsigned 32-bit integer
               ldap.T_scope

           ldap.searchRequest  searchRequest
               No value
               ldap.SearchRequest

           ldap.searchResDone  searchResDone
               No value
               ldap.SearchResultDone

           ldap.searchResEntry  searchResEntry
               No value
               ldap.SearchResultEntry

           ldap.searchResRef  searchResRef
               Unsigned 32-bit integer
               ldap.SearchResultReference

           ldap.serverSaslCreds  serverSaslCreds
               Byte array
               ldap.ServerSaslCreds

           ldap.sid  Sid
               String
               Sid

           ldap.simple  simple
               Byte array
               ldap.Simple

           ldap.size  size
               Signed 32-bit integer
               ldap.INTEGER

           ldap.sizeLimit  sizeLimit
               Unsigned 32-bit integer
               ldap.INTEGER_0_maxInt

           ldap.sortResult  sortResult
               Unsigned 32-bit integer
               ldap.T_sortResult

           ldap.substrings  substrings
               No value
               ldap.SubstringFilter

           ldap.substrings_item  substrings item
               Unsigned 32-bit integer
               ldap.T_substringFilter_substrings_item

           ldap.time  Time
               Time duration
               The time between the Call and the Reply

           ldap.timeLimit  timeLimit
               Unsigned 32-bit integer
               ldap.INTEGER_0_maxInt

           ldap.type  type
               String
               ldap.AttributeDescription

           ldap.typesOnly  typesOnly
               Boolean
               ldap.BOOLEAN

           ldap.unbindRequest  unbindRequest
               No value
               ldap.UnbindRequest

           ldap.userIdentity  userIdentity
               Byte array
               ldap.OCTET_STRING

           ldap.vals  vals
               Unsigned 32-bit integer
               ldap.SET_OF_AttributeValue

           ldap.version  version
               Unsigned 32-bit integer
               ldap.INTEGER_1_127

           mscldap.clientsitename  Client Site
               String
               Client Site name

           mscldap.domain  Domain
               String
               Domainname

           mscldap.domain.guid  Domain GUID
               Byte array
               Domain GUID

           mscldap.forest  Forest
               String
               Forest

           mscldap.hostname  Hostname
               String
               Hostname

           mscldap.nb_domain  NetBios Domain
               String
               NetBios Domainname

           mscldap.nb_hostname  NetBios Hostname
               String
               NetBios Hostname

           mscldap.netlogon.flags  Flags
               Unsigned 32-bit integer
               Netlogon flags describing the DC properties

           mscldap.netlogon.flags.closest  Closest
               Boolean
               Is this the closest dc?

           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
               Family

           mscldap.netlogon.ipaddress.ipv4  IPv4
               IPv4 address
               IP Address

           mscldap.netlogon.ipaddress.port  Port
               Unsigned 16-bit integer
               Port

           mscldap.netlogon.lm_token  LM Token
               Unsigned 16-bit integer
               LM Token

           mscldap.netlogon.nt_token  NT Token
               Unsigned 16-bit integer
               NT Token

           mscldap.netlogon.type  Type
               Unsigned 16-bit integer
               NetLogon Response type

           mscldap.netlogon.version  Version
               Unsigned 32-bit integer
               Version

           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

   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.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
               Network Address family

           lldp.orgtlv.oui  Organization Unique Code
               Unsigned 24-bit integer

           lldp.port.id.ip4  Port Id
               IPv4 address

           lldp.port.id.ip6  Port Id
               IPv6 address

           lldp.port.id.mac  Port Id
               6-byte Hardware (MAC) Address

           lldp.port.subtype  Port Id Subtype
               Unsigned 8-bit integer

           lldp.profinet.cable_delay_local  Port Cable Delay Local
               Unsigned 32-bit integer

           lldp.profinet.cm_mac_add  CMMacAdd
               6-byte Hardware (MAC) Address
               CMResponderMacAdd or CMInitiatorMacAdd

           lldp.profinet.green_period_begin_offset  GreenPeriodBegin.Offset
               Unsigned 32-bit integer
               Unrestricted period, offset to cycle begin in nanoseconds

           lldp.profinet.green_period_begin_valid  GreenPeriodBegin.Valid
               Unsigned 32-bit integer
               Offset field is valid/invalid

           lldp.profinet.ir_data_uuid  IRDataUUID
               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
               Sequence number

           pktgen.timestamp  Timestamp
               Date/Time stamp
               Timestamp

           pktgen.tvsec  Timestamp tvsec
               Unsigned 32-bit integer
               Timestamp tvsec part

           pktgen.tvusec  Timestamp tvusec
               Unsigned 32-bit integer
               Timestamp tvusec part

   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
               Link-layer address length

           sll.hatype  Link-layer address type
               Unsigned 16-bit integer
               Link-layer address type

           sll.ltype  Protocol
               Unsigned 16-bit integer
               Linux protocol type

           sll.pkttype  Packet type
               Unsigned 16-bit integer
               Packet type

           sll.src.eth  Source
               6-byte Hardware (MAC) Address
               Source link-layer address

           sll.src.ipv4  Source
               IPv4 address
               Source link-layer address

           sll.src.other  Source
               Byte array
               Source link-layer address

           sll.trailer  Trailer
               Byte array
               Trailer

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

           lmi.inf_ele_len  Length
               Unsigned 8-bit integer
               Information Element Length

           lmi.inf_ele_type  Type
               Unsigned 8-bit integer
               Information Element Type

           lmi.msg_type  Message Type
               Unsigned 8-bit integer
               Message Type

           lmi.recv_seq  Recv Seq
               Unsigned 8-bit integer
               Receive Sequence

           lmi.send_seq  Send Seq
               Unsigned 8-bit integer
               Send Sequence

   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 16-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 16-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 16-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 16-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 16-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 16-bit integer

           lsarpc.lsa_QueryInfoPolicy.handle  Handle
               Byte array

           lsarpc.lsa_QueryInfoPolicy.info  Info
               No value

           lsarpc.lsa_QueryInfoPolicy.level  Level
               Unsigned 16-bit integer

           lsarpc.lsa_QueryInfoPolicy2.handle  Handle
               Byte array

           lsarpc.lsa_QueryInfoPolicy2.info  Info
               No value

           lsarpc.lsa_QueryInfoPolicy2.level  Level
               Unsigned 16-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 16-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 16-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 16-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 16-bit integer

           lsarpc.lsa_SetDomainInformationPolicy.handle  Handle
               Byte array

           lsarpc.lsa_SetDomainInformationPolicy.info  Info
               No value

           lsarpc.lsa_SetDomainInformationPolicy.level  Level
               Unsigned 16-bit integer

           lsarpc.lsa_SetInfoPolicy.handle  Handle
               Byte array

           lsarpc.lsa_SetInfoPolicy.info  Info
               No value

           lsarpc.lsa_SetInfoPolicy.level  Level
               Unsigned 16-bit integer

           lsarpc.lsa_SetInfoPolicy2.handle  Handle
               Byte array

           lsarpc.lsa_SetInfoPolicy2.info  Info
               No value

           lsarpc.lsa_SetInfoPolicy2.level  Level
               Unsigned 16-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 16-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 16-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 16-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 16-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 16-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 16-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
               Command/Response bit

           llcgprs.e  E bit
               Boolean
               Encryption mode bit

           llcgprs.frmrcr  C/R
               Unsigned 32-bit integer
               Rejected command response

           llcgprs.frmrrfcf  Control Field Octet
               Unsigned 16-bit integer
               Rejected Frame CF

           llcgprs.frmrspare  X
               Unsigned 32-bit integer
               Filler

           llcgprs.frmrvr  V(R)
               Unsigned 32-bit integer
               Current receive state variable

           llcgprs.frmrvs  V(S)
               Unsigned 32-bit integer
               Current send state variable

           llcgprs.frmrw1  W1
               Unsigned 32-bit integer
               Invalid - info not permitted

           llcgprs.frmrw2  W2
               Unsigned 32-bit integer
               Info exceeded N201

           llcgprs.frmrw3  W3
               Unsigned 32-bit integer
               Undefined control field

           llcgprs.frmrw4  W4
               Unsigned 32-bit integer
               LLE was in ABM when rejecting

           llcgprs.ia  Ack Bit
               Unsigned 24-bit integer
               I A Bit

           llcgprs.ifmt  I Format
               Unsigned 24-bit integer
               I Fmt Bit

           llcgprs.iignore  Spare
               Unsigned 24-bit integer
               Ignore Bit

           llcgprs.k  k
               Unsigned 8-bit integer
               k counter

           llcgprs.kmask  ignored
               Unsigned 8-bit integer
               ignored

           llcgprs.nr  Receive sequence number
               Unsigned 16-bit integer
               Receive sequence number N(R)

           llcgprs.nu  N(U)
               Unsigned 16-bit integer
               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
               N(R)

           llcgprs.sackns  N(S)
               Unsigned 24-bit integer
               N(S)

           llcgprs.sackrbits  R Bitmap Bits
               Unsigned 8-bit integer
               R Bitmap

           llcgprs.sacksfb  Supervisory function bits
               Unsigned 24-bit integer
               Supervisory functions bits

           llcgprs.sapi  SAPI
               Unsigned 8-bit integer
               Service Access Point Identifier

           llcgprs.sapib  SAPI
               Unsigned 8-bit integer
               Service Access Point Identifier

           llcgprs.sspare  Spare
               Unsigned 16-bit integer
               Ignore Bit

           llcgprs.tomdata  TOM Message Capsule Byte
               Unsigned 8-bit integer
               tdb

           llcgprs.tomhead  TOM Header Byte
               Unsigned 8-bit integer
               thb

           llcgprs.tompd  TOM Protocol Discriminator
               Unsigned 8-bit integer
               TPD

           llcgprs.u  U format
               Unsigned 8-bit integer
                U frame format

           llcgprs.ucom  Command/Response
               Unsigned 8-bit integer
               Commands and Responses

           llcgprs.ui  UI format
               Unsigned 16-bit integer
               UI frame format

           llcgprs.ui_sp_bit  Spare bits
               Unsigned 16-bit integer
               Spare bits

           llcgprs.xidbyte  Parameter Byte
               Unsigned 8-bit integer
               Data

           llcgprs.xidlen1  Length
               Unsigned 8-bit integer
               Len

           llcgprs.xidlen2  Length continued
               Unsigned 8-bit integer
               Len

           llcgprs.xidspare  Spare
               Unsigned 8-bit integer
               Ignore

           llcgprs.xidtype  Type
               Unsigned 8-bit integer
               Type

           llcgprs.xidxl  XL Bit
               Unsigned 8-bit integer
               XL

   Logical-Link Control (llc)
           llc.cimetrics_pid  PID
               Unsigned 16-bit integer

           llc.cisco_pid  PID
               Unsigned 16-bit integer

           llc.control  Control
               Unsigned 16-bit integer

           llc.control.f  Final
               Boolean

           llc.control.ftype  Frame type
               Unsigned 16-bit integer

           llc.control.n_r  N(R)
               Unsigned 16-bit integer

           llc.control.n_s  N(S)
               Unsigned 16-bit integer

           llc.control.p  Poll
               Boolean

           llc.control.s_ftype  Supervisory frame type
               Unsigned 16-bit integer

           llc.control.u_modifier_cmd  Command
               Unsigned 8-bit integer

           llc.control.u_modifier_resp  Response
               Unsigned 8-bit integer

           llc.dsap  DSAP
               Unsigned 8-bit integer
               DSAP - 7 Most Significant Bits only

           llc.dsap.ig  IG Bit
               Boolean
               Individual/Group - Least Significant Bit only

           llc.extreme_pid  PID
               Unsigned 16-bit integer

           llc.force10_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.HashAlgAndValue

           logotypecertextn.LogotypeAudio  LogotypeAudio
               No value
               logotypecertextn.LogotypeAudio

           logotypecertextn.LogotypeExtn  LogotypeExtn
               No value
               logotypecertextn.LogotypeExtn

           logotypecertextn.LogotypeImage  LogotypeImage
               No value
               logotypecertextn.LogotypeImage

           logotypecertextn.LogotypeInfo  LogotypeInfo
               Unsigned 32-bit integer
               logotypecertextn.LogotypeInfo

           logotypecertextn.OtherLogotypeInfo  OtherLogotypeInfo
               No value
               logotypecertextn.OtherLogotypeInfo

           logotypecertextn.audio  audio
               Unsigned 32-bit integer
               logotypecertextn.SEQUENCE_OF_LogotypeAudio

           logotypecertextn.audioDetails  audioDetails
               No value
               logotypecertextn.LogotypeDetails

           logotypecertextn.audioInfo  audioInfo
               No value
               logotypecertextn.LogotypeAudioInfo

           logotypecertextn.channels  channels
               Signed 32-bit integer
               logotypecertextn.INTEGER

           logotypecertextn.communityLogos  communityLogos
               Unsigned 32-bit integer
               logotypecertextn.SEQUENCE_OF_LogotypeInfo

           logotypecertextn.direct  direct
               No value
               logotypecertextn.LogotypeData

           logotypecertextn.fileSize  fileSize
               Signed 32-bit integer
               logotypecertextn.INTEGER

           logotypecertextn.hashAlg  hashAlg
               No value
               x509af.AlgorithmIdentifier

           logotypecertextn.hashValue  hashValue
               Byte array
               logotypecertextn.OCTET_STRING

           logotypecertextn.image  image
               Unsigned 32-bit integer
               logotypecertextn.SEQUENCE_OF_LogotypeImage

           logotypecertextn.imageDetails  imageDetails
               No value
               logotypecertextn.LogotypeDetails

           logotypecertextn.imageInfo  imageInfo
               No value
               logotypecertextn.LogotypeImageInfo

           logotypecertextn.indirect  indirect
               No value
               logotypecertextn.LogotypeReference

           logotypecertextn.info  info
               Unsigned 32-bit integer
               logotypecertextn.LogotypeInfo

           logotypecertextn.issuerLogo  issuerLogo
               Unsigned 32-bit integer
               logotypecertextn.LogotypeInfo

           logotypecertextn.language  language
               String
               logotypecertextn.IA5String

           logotypecertextn.logotypeHash  logotypeHash
               Unsigned 32-bit integer
               logotypecertextn.SEQUENCE_SIZE_1_MAX_OF_HashAlgAndValue

           logotypecertextn.logotypeType  logotypeType
               Object Identifier
               logotypecertextn.OBJECT_IDENTIFIER

           logotypecertextn.logotypeURI  logotypeURI
               Unsigned 32-bit integer
               logotypecertextn.T_logotypeURI

           logotypecertextn.logotypeURI_item  logotypeURI item
               String
               logotypecertextn.T_logotypeURI_item

           logotypecertextn.mediaType  mediaType
               String
               logotypecertextn.IA5String

           logotypecertextn.numBits  numBits
               Signed 32-bit integer
               logotypecertextn.INTEGER

           logotypecertextn.otherLogos  otherLogos
               Unsigned 32-bit integer
               logotypecertextn.SEQUENCE_OF_OtherLogotypeInfo

           logotypecertextn.playTime  playTime
               Signed 32-bit integer
               logotypecertextn.INTEGER

           logotypecertextn.refStructHash  refStructHash
               Unsigned 32-bit integer
               logotypecertextn.SEQUENCE_SIZE_1_MAX_OF_HashAlgAndValue

           logotypecertextn.refStructURI  refStructURI
               Unsigned 32-bit integer
               logotypecertextn.T_refStructURI

           logotypecertextn.refStructURI_item  refStructURI item
               String
               logotypecertextn.T_refStructURI_item

           logotypecertextn.resolution  resolution
               Unsigned 32-bit integer
               logotypecertextn.LogotypeImageResolution

           logotypecertextn.sampleRate  sampleRate
               Signed 32-bit integer
               logotypecertextn.INTEGER

           logotypecertextn.subjectLogo  subjectLogo
               Unsigned 32-bit integer
               logotypecertextn.LogotypeInfo

           logotypecertextn.tableSize  tableSize
               Signed 32-bit integer
               logotypecertextn.INTEGER

           logotypecertextn.type  type
               Signed 32-bit integer
               logotypecertextn.LogotypeImageType

           logotypecertextn.xSize  xSize
               Signed 32-bit integer
               logotypecertextn.INTEGER

           logotypecertextn.ySize  ySize
               Signed 32-bit integer
               logotypecertextn.INTEGER

   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 Control (macc)
           macctrl.pause  Pause
               Unsigned 16-bit integer
               MAC control Pause

           macctrl.quanta  Quanta
               Unsigned 16-bit integer
               MAC control quanta

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

           mac-lte.control.buffer-size  Buffer Size
               Unsigned 8-bit integer
               Buffer Size available in all channels in group

           mac-lte.control.buffer-size-1  Buffer Size 1
               Unsigned 8-bit integer
               Buffer Size available in for 1st channel in group

           mac-lte.control.buffer-size-2  Buffer Size 2
               Unsigned 16-bit integer
               Buffer Size available in for 2nd channel in group

           mac-lte.control.buffer-size-3  Buffer Size 3
               Unsigned 16-bit integer
               Buffer Size available in for 3rd channel in group

           mac-lte.control.buffer-size-4  Buffer Size 4
               Unsigned 8-bit integer
               Buffer Size available in for 4th channel in group

           mac-lte.control.crnti  C-RNTI
               Unsigned 16-bit integer
               C-RNTI for the UE

           mac-lte.control.lcg-id  Logical Channel Group ID
               Unsigned 8-bit integer
               Logical Channel Group ID

           mac-lte.control.padding  Padding
               No value
               Padding

           mac-lte.control.power-headroom  Power Headroom
               Unsigned 8-bit integer
               Power Headroom

           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.ue-contention-resoluation-identity  UE Contention Resoluation Identity
               Byte array
               UE Contention Resoluation Identity

           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.dlsch.header  DL-SCH Header
               String
               DL-SCH Header

           mac-lte.dlsch.lcid  LCID
               Unsigned 8-bit integer
               DL-SCH Logical Channel Identifier

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

           mac-lte.padding-length  Padding length
               Unsigned 32-bit integer
               Length of padding data at end of frame

           mac-lte.pch.pdu  PCH PDU
               Byte array
               PCH PDU

           mac-lte.predefined-data  Predefined data
               Byte array
               Predefined test data

           mac-lte.radio-type  Radio Type
               Unsigned 8-bit integer
               Radio Type

           mac-lte.rar  RAR
               No value
               RAR

           mac-lte.rar.bi  BI
               Unsigned 8-bit integer
               Backoff Indicator (ms)

           mac-lte.rar.body  RAR Body
               String
               RAR Body

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

           mac-lte.rar.headers  RAR Headers
               String
               RAR Headers

           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
               Temporary C-RNTI

           mac-lte.rar.ul-grant  UL Grant
               Unsigned 24-bit integer
               Size of UL Grant

           mac-lte.rar.ul-grant.hopping  Hopping Flag
               Unsigned 8-bit integer
               Size of UL Grant

           mac-lte.rar.ul.cqi-request  CQI Request
               Unsigned 8-bit integer
               CQI Request

           mac-lte.rar.ul.fsrba  Fixed sized resource block assignment
               Unsigned 16-bit integer
               Fixed sized resource block assignment

           mac-lte.rar.ul.tcsp  TPC command for scheduled PUSCH
               Unsigned 8-bit integer
               TPC command for scheduled PUSCH

           mac-lte.rar.ul.tmcs  Truncated Modulation and coding scheme
               Unsigned 16-bit integer
               Truncated Modulation and coding scheme

           mac-lte.rar.ul.ul-delay  UL Delay
               Unsigned 8-bit integer
               UL Delay

           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
               Format

           mac-lte.sch.header-only  MAC PDU Header only
               Unsigned 8-bit integer
               MAC PDU Header only

           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
               SCH reserved bits

           mac-lte.sch.sdu  SDU
               Byte array
               Shared channel SDU

           mac-lte.sch.subheader  SCH sub-header
               String
               SCH sub-header

           mac-lte.subframe  Subframe
               Unsigned 16-bit integer
               Subframe number associate with message

           mac-lte.ueid  UEId
               Unsigned 16-bit integer
               User Equipment Identifier associated with message

           mac-lte.ulsch.header  UL-SCH Header
               String
               UL-SCH Header

           mac-lte.ulsch.lcid  LCID
               Unsigned 8-bit integer
               UL-SCH Logical Channel Identifier

   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
               h324/h223capr

           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
               h324/muxtbl_in

           megaco.h324_muxtbl_out  h324/muxtbl_out
               String
               h324/muxtbl_out

           megaco.localcontroldescriptor  Local Control Descriptor
               String
               Local Control Descriptor in Media Descriptor

           megaco.localdescriptor  Local Descriptor
               String
               Local Descriptor in Media Descriptor

           megaco.mId  MediagatewayID
               String
               Mediagateway ID

           megaco.media  Media Descriptor
               String
               Media Descriptor of the megaco Command

           megaco.mode  Mode
               String
               Mode  sendonly/receiveonly/inactive/loopback

           megaco.modem  Modem Descriptor
               String
               Modem Descriptor of the megaco Command

           megaco.multiplex  Multiplex Descriptor
               String
               Multiplex Descriptor of the megaco Command

           megaco.observedevents  Observed Events Descriptor
               String
               Observed Events Descriptor of the megaco Command

           megaco.packagesdescriptor  Packages Descriptor
               String
               Packages Descriptor

           megaco.pkgdname  pkgdName
               String
               PackageName SLASH ItemID

           megaco.remotedescriptor  Remote Descriptor
               String
               Remote Descriptor in Media Descriptor

           megaco.requestid  RequestID
               String
               RequestID in Events or Observedevents Descriptor

           megaco.reservegroup  Reserve Group
               String
               Reserve Group on or off

           megaco.reservevalue  Reserve Value
               String
               Reserve Value on or off

           megaco.servicechange  Service Change Descriptor
               String
               Service Change Descriptor of the megaco Command

           megaco.servicestates  Service State
               String
               Service States in Termination State Descriptor

           megaco.signal  Signal Descriptor
               String
               Signal Descriptor of the megaco Command

           megaco.statistics  Statistics Descriptor
               String
               Statistics Descriptor of the megaco Command

           megaco.streamid  StreamID
               String
               StreamID in the Media Descriptor

           megaco.termid  Termination ID
               String
               Termination ID of this Command

           megaco.terminationstate  Termination State Descriptor
               String
               Termination State Descriptor in Media Descriptor

           megaco.topology  Topology Descriptor
               String
               Topology Descriptor of the megaco Command

           megaco.transaction  Transaction
               String
               Message Originator

           megaco.transid  Transaction ID
               String
               Transaction ID of this message

           megaco.version  Version
               String
               Version

   MIME Multipart 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
               Encapsulated multipart part

           mime_multipart.type  Type
               String
               MIME multipart encapsulation type

   MMS (mms)
           mms.AccessResult  AccessResult
               Unsigned 32-bit integer
               mms.AccessResult

           mms.AlarmEnrollmentSummary  AlarmEnrollmentSummary
               No value
               mms.AlarmEnrollmentSummary

           mms.AlarmSummary  AlarmSummary
               No value
               mms.AlarmSummary

           mms.AlternateAccess_item  AlternateAccess item
               Unsigned 32-bit integer
               mms.AlternateAccess_item

           mms.Data  Data
               Unsigned 32-bit integer
               mms.Data

           mms.DirectoryEntry  DirectoryEntry
               No value
               mms.DirectoryEntry

           mms.EntryContent  EntryContent
               No value
               mms.EntryContent

           mms.EventEnrollment  EventEnrollment
               No value
               mms.EventEnrollment

           mms.FileName_item  FileName item
               String
               mms.GraphicString

           mms.Identifier  Identifier
               String
               mms.Identifier

           mms.JournalEntry  JournalEntry
               No value
               mms.JournalEntry

           mms.Modifier  Modifier
               Unsigned 32-bit integer
               mms.Modifier

           mms.ObjectName  ObjectName
               Unsigned 32-bit integer
               mms.ObjectName

           mms.ScatteredAccessDescription_item  ScatteredAccessDescription item
               No value
               mms.ScatteredAccessDescription_item

           mms.SemaphoreEntry  SemaphoreEntry
               No value
               mms.SemaphoreEntry

           mms.Write_Response_item  Write-Response item
               Unsigned 32-bit integer
               mms.Write_Response_item

           mms.aaSpecific  aaSpecific
               No value
               mms.NULL

           mms.aa_specific  aa-specific
               String
               mms.Identifier

           mms.abortOnTimeOut  abortOnTimeOut
               Boolean
               mms.BOOLEAN

           mms.acceptableDelay  acceptableDelay
               Signed 32-bit integer
               mms.Unsigned32

           mms.access  access
               Signed 32-bit integer
               mms.T_access

           mms.accesst  accesst
               Unsigned 32-bit integer
               mms.AlternateAccessSelection

           mms.acknowledgeEventNotification  acknowledgeEventNotification
               No value
               mms.AcknowledgeEventNotification_Request

           mms.acknowledgedState  acknowledgedState
               Signed 32-bit integer
               mms.EC_State

           mms.acknowledgmentFilter  acknowledgmentFilter
               Signed 32-bit integer
               mms.T_acknowledgmentFilter

           mms.actionResult  actionResult
               No value
               mms.T_actionResult

           mms.active-to-disabled  active-to-disabled
               Boolean

           mms.active-to-idle  active-to-idle
               Boolean

           mms.activeAlarmsOnly  activeAlarmsOnly
               Boolean
               mms.BOOLEAN

           mms.additionalCode  additionalCode
               Signed 32-bit integer
               mms.INTEGER

           mms.additionalDescription  additionalDescription
               String
               mms.VisibleString

           mms.additionalDetail  additionalDetail
               No value
               mms.JOU_Additional_Detail

           mms.address  address
               Unsigned 32-bit integer
               mms.Address

           mms.ae_invocation_id  ae-invocation-id
               Signed 32-bit integer
               mms.T_ae_invocation_id

           mms.ae_qualifier  ae-qualifier
               Unsigned 32-bit integer
               mms.T_ae_qualifier

           mms.alarmAcknowledgementRule  alarmAcknowledgementRule
               Signed 32-bit integer
               mms.AlarmAckRule

           mms.alarmAcknowledgmentRule  alarmAcknowledgmentRule
               Signed 32-bit integer
               mms.AlarmAckRule

           mms.alarmSummaryReports  alarmSummaryReports
               Boolean
               mms.BOOLEAN

           mms.allElements  allElements
               No value
               mms.NULL

           mms.alterEventConditionMonitoring  alterEventConditionMonitoring
               No value
               mms.AlterEventConditionMonitoring_Request

           mms.alterEventEnrollment  alterEventEnrollment
               No value
               mms.AlterEventEnrollment_Request

           mms.alternateAccess  alternateAccess
               Unsigned 32-bit integer
               mms.AlternateAccess

           mms.annotation  annotation
               String
               mms.VisibleString

           mms.any-to-deleted  any-to-deleted
               Boolean

           mms.ap_invocation_id  ap-invocation-id
               Signed 32-bit integer
               mms.T_ap_invocation_id

           mms.ap_title  ap-title
               Unsigned 32-bit integer
               mms.T_ap_title

           mms.applicationReference  applicationReference
               No value
               mms.ApplicationReference

           mms.applicationToPreempt  applicationToPreempt
               No value
               mms.ApplicationReference

           mms.application_reference  application-reference
               Signed 32-bit integer
               mms.T_application_reference

           mms.array  array
               No value
               mms.T_array

           mms.attachToEventCondition  attachToEventCondition
               Boolean

           mms.attachToSemaphore  attachToSemaphore
               Boolean

           mms.attach_To_Event_Condition  attach-To-Event-Condition
               No value
               mms.AttachToEventCondition

           mms.attach_To_Semaphore  attach-To-Semaphore
               No value
               mms.AttachToSemaphore

           mms.bcd  bcd
               Signed 32-bit integer
               mms.Unsigned8

           mms.binary_time  binary-time
               Boolean
               mms.BOOLEAN

           mms.bit_string  bit-string
               Signed 32-bit integer
               mms.Integer32

           mms.boolean  boolean
               No value
               mms.NULL

           mms.booleanArray  booleanArray
               Byte array
               mms.BIT_STRING

           mms.cancel  cancel
               Signed 32-bit integer
               mms.T_cancel

           mms.cancel_ErrorPDU  cancel-ErrorPDU
               No value
               mms.Cancel_ErrorPDU

           mms.cancel_RequestPDU  cancel-RequestPDU
               Signed 32-bit integer
               mms.Cancel_RequestPDU

           mms.cancel_ResponsePDU  cancel-ResponsePDU
               Signed 32-bit integer
               mms.Cancel_ResponsePDU

           mms.cancel_errorPDU  cancel-errorPDU
               Signed 32-bit integer
               mms.T_cancel_errorPDU

           mms.cancel_requestPDU  cancel-requestPDU
               Signed 32-bit integer
               mms.T_cancel_requestPDU

           mms.cancel_responsePDU  cancel-responsePDU
               Signed 32-bit integer
               mms.T_cancel_responsePDU

           mms.causingTransitions  causingTransitions
               Byte array
               mms.Transitions

           mms.cei  cei
               Boolean

           mms.class  class
               Signed 32-bit integer
               mms.T_class

           mms.clientApplication  clientApplication
               No value
               mms.ApplicationReference

           mms.coded  coded
               No value
               acse.EXTERNALt

           mms.component  component
               String
               mms.Identifier

           mms.componentName  componentName
               String
               mms.Identifier

           mms.componentType  componentType
               Unsigned 32-bit integer
               mms.TypeSpecification

           mms.components  components
               Unsigned 32-bit integer
               mms.T_components

           mms.components_item  components item
               No value
               mms.T_components_item

           mms.conclude  conclude
               Signed 32-bit integer
               mms.T_conclude

           mms.conclude_ErrorPDU  conclude-ErrorPDU
               No value
               mms.Conclude_ErrorPDU

           mms.conclude_RequestPDU  conclude-RequestPDU
               No value
               mms.Conclude_RequestPDU

           mms.conclude_ResponsePDU  conclude-ResponsePDU
               No value
               mms.Conclude_ResponsePDU

           mms.conclude_errorPDU  conclude-errorPDU
               Signed 32-bit integer
               mms.T_conclude_errorPDU

           mms.conclude_requestPDU  conclude-requestPDU
               Signed 32-bit integer
               mms.T_conclude_requestPDU

           mms.conclude_responsePDU  conclude-responsePDU
               Signed 32-bit integer
               mms.T_conclude_responsePDU

           mms.confirmedServiceRequest  confirmedServiceRequest
               Unsigned 32-bit integer
               mms.ConfirmedServiceRequest

           mms.confirmedServiceResponse  confirmedServiceResponse
               Unsigned 32-bit integer
               mms.ConfirmedServiceResponse

           mms.confirmed_ErrorPDU  confirmed-ErrorPDU
               No value
               mms.Confirmed_ErrorPDU

           mms.confirmed_RequestPDU  confirmed-RequestPDU
               No value
               mms.Confirmed_RequestPDU

           mms.confirmed_ResponsePDU  confirmed-ResponsePDU
               No value
               mms.Confirmed_ResponsePDU

           mms.confirmed_errorPDU  confirmed-errorPDU
               Signed 32-bit integer
               mms.T_confirmed_errorPDU

           mms.confirmed_requestPDU  confirmed-requestPDU
               Signed 32-bit integer
               mms.T_confirmed_requestPDU

           mms.confirmed_responsePDU  confirmed-responsePDU
               Signed 32-bit integer
               mms.T_confirmed_responsePDU

           mms.continueAfter  continueAfter
               String
               mms.Identifier

           mms.controlTimeOut  controlTimeOut
               Signed 32-bit integer
               mms.Unsigned32

           mms.createJournal  createJournal
               No value
               mms.CreateJournal_Request

           mms.createProgramInvocation  createProgramInvocation
               No value
               mms.CreateProgramInvocation_Request

           mms.cs_request_detail  cs-request-detail
               Unsigned 32-bit integer
               mms.CS_Request_Detail

           mms.currentEntries  currentEntries
               Signed 32-bit integer
               mms.Unsigned32

           mms.currentFileName  currentFileName
               Unsigned 32-bit integer
               mms.FileName

           mms.currentName  currentName
               Unsigned 32-bit integer
               mms.ObjectName

           mms.currentState  currentState
               Signed 32-bit integer
               mms.EC_State

           mms.data  data
               No value
               mms.T_data

           mms.defineEventAction  defineEventAction
               No value
               mms.DefineEventAction_Request

           mms.defineEventCondition  defineEventCondition
               No value
               mms.DefineEventCondition_Request

           mms.defineEventEnrollment  defineEventEnrollment
               No value
               mms.DefineEventEnrollment_Request

           mms.defineEventEnrollment_Error  defineEventEnrollment-Error
               Unsigned 32-bit integer
               mms.DefineEventEnrollment_Error

           mms.defineNamedType  defineNamedType
               No value
               mms.DefineNamedType_Request

           mms.defineNamedVariable  defineNamedVariable
               No value
               mms.DefineNamedVariable_Request

           mms.defineNamedVariableList  defineNamedVariableList
               No value
               mms.DefineNamedVariableList_Request

           mms.defineScatteredAccess  defineScatteredAccess
               No value
               mms.DefineScatteredAccess_Request

           mms.defineSemaphore  defineSemaphore
               No value
               mms.DefineSemaphore_Request

           mms.definition  definition
               Signed 32-bit integer
               mms.T_definition

           mms.deleteDomain  deleteDomain
               String
               mms.DeleteDomain_Request

           mms.deleteEventAction  deleteEventAction
               Unsigned 32-bit integer
               mms.DeleteEventAction_Request

           mms.deleteEventCondition  deleteEventCondition
               Unsigned 32-bit integer
               mms.DeleteEventCondition_Request

           mms.deleteEventEnrollment  deleteEventEnrollment
               Unsigned 32-bit integer
               mms.DeleteEventEnrollment_Request

           mms.deleteJournal  deleteJournal
               No value
               mms.DeleteJournal_Request

           mms.deleteNamedType  deleteNamedType
               No value
               mms.DeleteNamedType_Request

           mms.deleteNamedVariableList  deleteNamedVariableList
               No value
               mms.DeleteNamedVariableList_Request

           mms.deleteProgramInvocation  deleteProgramInvocation
               String
               mms.DeleteProgramInvocation_Request

           mms.deleteSemaphore  deleteSemaphore
               Unsigned 32-bit integer
               mms.DeleteSemaphore_Request

           mms.deleteVariableAccess  deleteVariableAccess
               No value
               mms.DeleteVariableAccess_Request

           mms.destinationFile  destinationFile
               Unsigned 32-bit integer
               mms.FileName

           mms.disabled-to-active  disabled-to-active
               Boolean

           mms.disabled-to-idle  disabled-to-idle
               Boolean

           mms.discard  discard
               No value
               mms.ServiceError

           mms.domain  domain
               String
               mms.Identifier

           mms.domainId  domainId
               String
               mms.Identifier

           mms.domainName  domainName
               String
               mms.Identifier

           mms.domainSpecific  domainSpecific
               String
               mms.Identifier

           mms.domain_specific  domain-specific
               No value
               mms.T_domain_specific

           mms.downloadSegment  downloadSegment
               String
               mms.DownloadSegment_Request

           mms.duration  duration
               Signed 32-bit integer
               mms.EE_Duration

           mms.ea  ea
               Unsigned 32-bit integer
               mms.ObjectName

           mms.ec  ec
               Unsigned 32-bit integer
               mms.ObjectName

           mms.echo  echo
               Boolean
               mms.BOOLEAN

           mms.elementType  elementType
               Unsigned 32-bit integer
               mms.TypeSpecification

           mms.enabled  enabled
               Boolean
               mms.BOOLEAN

           mms.encodedString  encodedString
               No value
               acse.EXTERNALt

           mms.endingTime  endingTime
               Byte array
               mms.TimeOfDay

           mms.enrollementState  enrollementState
               Signed 32-bit integer
               mms.EE_State

           mms.enrollmentClass  enrollmentClass
               Signed 32-bit integer
               mms.EE_Class

           mms.enrollmentsOnly  enrollmentsOnly
               Boolean
               mms.BOOLEAN

           mms.entryClass  entryClass
               Signed 32-bit integer
               mms.T_entryClass

           mms.entryContent  entryContent
               No value
               mms.EntryContent

           mms.entryForm  entryForm
               Unsigned 32-bit integer
               mms.T_entryForm

           mms.entryId  entryId
               Byte array
               mms.OCTET_STRING

           mms.entryIdToStartAfter  entryIdToStartAfter
               Byte array
               mms.OCTET_STRING

           mms.entryIdentifier  entryIdentifier
               Byte array
               mms.OCTET_STRING

           mms.entrySpecification  entrySpecification
               Byte array
               mms.OCTET_STRING

           mms.entryToStartAfter  entryToStartAfter
               No value
               mms.T_entryToStartAfter

           mms.errorClass  errorClass
               Unsigned 32-bit integer
               mms.T_errorClass

           mms.evaluationInterval  evaluationInterval
               Signed 32-bit integer
               mms.Unsigned32

           mms.event  event
               No value
               mms.T_event

           mms.eventActioName  eventActioName
               Unsigned 32-bit integer
               mms.ObjectName

           mms.eventAction  eventAction
               Unsigned 32-bit integer
               mms.ObjectName

           mms.eventActionName  eventActionName
               Unsigned 32-bit integer
               mms.ObjectName

           mms.eventActionResult  eventActionResult
               Unsigned 32-bit integer
               mms.T_eventActionResult

           mms.eventCondition  eventCondition
               Unsigned 32-bit integer
               mms.ObjectName

           mms.eventConditionName  eventConditionName
               Unsigned 32-bit integer
               mms.ObjectName

           mms.eventConditionTransition  eventConditionTransition
               Byte array
               mms.Transitions

           mms.eventConditionTransitions  eventConditionTransitions
               Byte array
               mms.Transitions

           mms.eventEnrollmentName  eventEnrollmentName
               Unsigned 32-bit integer
               mms.ObjectName

           mms.eventEnrollmentNames  eventEnrollmentNames
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_ObjectName

           mms.eventNotification  eventNotification
               No value
               mms.EventNotification

           mms.executionArgument  executionArgument
               Unsigned 32-bit integer
               mms.T_executionArgument

           mms.extendedObjectClass  extendedObjectClass
               Unsigned 32-bit integer
               mms.T_extendedObjectClass

           mms.failure  failure
               Signed 32-bit integer
               mms.DataAccessError

           mms.file  file
               Signed 32-bit integer
               mms.T_file

           mms.fileAttributes  fileAttributes
               No value
               mms.FileAttributes

           mms.fileClose  fileClose
               Signed 32-bit integer
               mms.FileClose_Request

           mms.fileData  fileData
               Byte array
               mms.OCTET_STRING

           mms.fileDelete  fileDelete
               Unsigned 32-bit integer
               mms.FileDelete_Request

           mms.fileDirectory  fileDirectory
               No value
               mms.FileDirectory_Request

           mms.fileName  fileName
               Unsigned 32-bit integer
               mms.FileName

           mms.fileOpen  fileOpen
               No value
               mms.FileOpen_Request

           mms.fileRead  fileRead
               Signed 32-bit integer
               mms.FileRead_Request

           mms.fileRename  fileRename
               No value
               mms.FileRename_Request

           mms.fileSpecification  fileSpecification
               Unsigned 32-bit integer
               mms.FileName

           mms.filenName  filenName
               Unsigned 32-bit integer
               mms.FileName

           mms.filename  filename
               Unsigned 32-bit integer
               mms.FileName

           mms.floating_point  floating-point
               Byte array
               mms.FloatingPoint

           mms.foo  foo
               Signed 32-bit integer
               mms.INTEGER

           mms.freeNamedToken  freeNamedToken
               String
               mms.Identifier

           mms.frsmID  frsmID
               Signed 32-bit integer
               mms.Integer32

           mms.generalized_time  generalized-time
               No value
               mms.NULL

           mms.getAlarmEnrollmentSummary  getAlarmEnrollmentSummary
               No value
               mms.GetAlarmEnrollmentSummary_Request

           mms.getAlarmSummary  getAlarmSummary
               No value
               mms.GetAlarmSummary_Request

           mms.getCapabilityList  getCapabilityList
               No value
               mms.GetCapabilityList_Request

           mms.getDomainAttributes  getDomainAttributes
               String
               mms.GetDomainAttributes_Request

           mms.getEventActionAttributes  getEventActionAttributes
               Unsigned 32-bit integer
               mms.GetEventActionAttributes_Request

           mms.getEventConditionAttributes  getEventConditionAttributes
               Unsigned 32-bit integer
               mms.GetEventConditionAttributes_Request

           mms.getEventEnrollmentAttributes  getEventEnrollmentAttributes
               No value
               mms.GetEventEnrollmentAttributes_Request

           mms.getNameList  getNameList
               No value
               mms.GetNameList_Request

           mms.getNamedTypeAttributes  getNamedTypeAttributes
               Unsigned 32-bit integer
               mms.GetNamedTypeAttributes_Request

           mms.getNamedVariableListAttributes  getNamedVariableListAttributes
               Unsigned 32-bit integer
               mms.GetNamedVariableListAttributes_Request

           mms.getProgramInvocationAttributes  getProgramInvocationAttributes
               String
               mms.GetProgramInvocationAttributes_Request

           mms.getScatteredAccessAttributes  getScatteredAccessAttributes
               Unsigned 32-bit integer
               mms.GetScatteredAccessAttributes_Request

           mms.getVariableAccessAttributes  getVariableAccessAttributes
               Unsigned 32-bit integer
               mms.GetVariableAccessAttributes_Request

           mms.hungNamedToken  hungNamedToken
               String
               mms.Identifier

           mms.identify  identify
               No value
               mms.Identify_Request

           mms.idle-to-active  idle-to-active
               Boolean

           mms.idle-to-disabled  idle-to-disabled
               Boolean

           mms.index  index
               Signed 32-bit integer
               mms.Unsigned32

           mms.indexRange  indexRange
               No value
               mms.T_indexRange

           mms.informationReport  informationReport
               No value
               mms.InformationReport

           mms.initialPosition  initialPosition
               Signed 32-bit integer
               mms.Unsigned32

           mms.initializeJournal  initializeJournal
               No value
               mms.InitializeJournal_Request

           mms.initiate  initiate
               Signed 32-bit integer
               mms.T_initiate

           mms.initiateDownloadSequence  initiateDownloadSequence
               No value
               mms.InitiateDownloadSequence_Request

           mms.initiateUploadSequence  initiateUploadSequence
               String
               mms.InitiateUploadSequence_Request

           mms.initiate_ErrorPDU  initiate-ErrorPDU
               No value
               mms.Initiate_ErrorPDU

           mms.initiate_RequestPDU  initiate-RequestPDU
               No value
               mms.Initiate_RequestPDU

           mms.initiate_ResponsePDU  initiate-ResponsePDU
               No value
               mms.Initiate_ResponsePDU

           mms.input  input
               No value
               mms.Input_Request

           mms.inputTimeOut  inputTimeOut
               Signed 32-bit integer
               mms.Unsigned32

           mms.integer  integer
               Signed 32-bit integer
               mms.Unsigned8

           mms.invalidated  invalidated
               No value
               mms.NULL

           mms.invokeID  invokeID
               Signed 32-bit integer
               mms.Unsigned32

           mms.itemId  itemId
               String
               mms.Identifier

           mms.journalName  journalName
               Unsigned 32-bit integer
               mms.ObjectName

           mms.kill  kill
               No value
               mms.Kill_Request

           mms.lastModified  lastModified
               String
               mms.GeneralizedTime

           mms.leastSevere  leastSevere
               Signed 32-bit integer
               mms.Unsigned8

           mms.limitSpecification  limitSpecification
               No value
               mms.T_limitSpecification

           mms.limitingEntry  limitingEntry
               Byte array
               mms.OCTET_STRING

           mms.limitingTime  limitingTime
               Byte array
               mms.TimeOfDay

           mms.listOfAbstractSyntaxes  listOfAbstractSyntaxes
               Unsigned 32-bit integer
               mms.T_listOfAbstractSyntaxes

           mms.listOfAbstractSyntaxes_item  listOfAbstractSyntaxes item
               Object Identifier
               mms.OBJECT_IDENTIFIER

           mms.listOfAccessResult  listOfAccessResult
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_AccessResult

           mms.listOfAlarmEnrollmentSummary  listOfAlarmEnrollmentSummary
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_AlarmEnrollmentSummary

           mms.listOfAlarmSummary  listOfAlarmSummary
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_AlarmSummary

           mms.listOfCapabilities  listOfCapabilities
               Unsigned 32-bit integer
               mms.T_listOfCapabilities

           mms.listOfCapabilities_item  listOfCapabilities item
               String
               mms.VisibleString

           mms.listOfData  listOfData
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_Data

           mms.listOfDirectoryEntry  listOfDirectoryEntry
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_DirectoryEntry

           mms.listOfDomainName  listOfDomainName
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_Identifier

           mms.listOfDomainNames  listOfDomainNames
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_Identifier

           mms.listOfEventEnrollment  listOfEventEnrollment
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_EventEnrollment

           mms.listOfIdentifier  listOfIdentifier
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_Identifier

           mms.listOfJournalEntry  listOfJournalEntry
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_JournalEntry

           mms.listOfModifier  listOfModifier
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_Modifier

           mms.listOfName  listOfName
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_ObjectName

           mms.listOfNamedTokens  listOfNamedTokens
               Unsigned 32-bit integer
               mms.T_listOfNamedTokens

           mms.listOfNamedTokens_item  listOfNamedTokens item
               Unsigned 32-bit integer
               mms.T_listOfNamedTokens_item

           mms.listOfOutputData  listOfOutputData
               Unsigned 32-bit integer
               mms.T_listOfOutputData

           mms.listOfOutputData_item  listOfOutputData item
               String
               mms.VisibleString

           mms.listOfProgramInvocations  listOfProgramInvocations
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_Identifier

           mms.listOfPromptData  listOfPromptData
               Unsigned 32-bit integer
               mms.T_listOfPromptData

           mms.listOfPromptData_item  listOfPromptData item
               String
               mms.VisibleString

           mms.listOfSemaphoreEntry  listOfSemaphoreEntry
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_SemaphoreEntry

           mms.listOfTypeName  listOfTypeName
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_ObjectName

           mms.listOfVariable  listOfVariable
               Unsigned 32-bit integer
               mms.T_listOfVariable

           mms.listOfVariableListName  listOfVariableListName
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_ObjectName

           mms.listOfVariable_item  listOfVariable item
               No value
               mms.T_listOfVariable_item

           mms.listOfVariables  listOfVariables
               Unsigned 32-bit integer
               mms.T_listOfVariables

           mms.listOfVariables_item  listOfVariables item
               String
               mms.VisibleString

           mms.loadData  loadData
               Unsigned 32-bit integer
               mms.T_loadData

           mms.loadDomainContent  loadDomainContent
               No value
               mms.LoadDomainContent_Request

           mms.localDetail  localDetail
               Byte array
               mms.BIT_STRING_SIZE_0_128

           mms.localDetailCalled  localDetailCalled
               Signed 32-bit integer
               mms.Integer32

           mms.localDetailCalling  localDetailCalling
               Signed 32-bit integer
               mms.Integer32

           mms.lowIndex  lowIndex
               Signed 32-bit integer
               mms.Unsigned32

           mms.mmsDeletable  mmsDeletable
               Boolean
               mms.BOOLEAN

           mms.mmsInitRequestDetail  mmsInitRequestDetail
               No value
               mms.InitRequestDetail

           mms.mmsInitResponseDetail  mmsInitResponseDetail
               No value
               mms.InitResponseDetail

           mms.modelName  modelName
               String
               mms.VisibleString

           mms.modifierPosition  modifierPosition
               Signed 32-bit integer
               mms.Unsigned32

           mms.monitor  monitor
               Boolean
               mms.BOOLEAN

           mms.monitorType  monitorType
               Boolean
               mms.BOOLEAN

           mms.monitoredVariable  monitoredVariable
               Unsigned 32-bit integer
               mms.VariableSpecification

           mms.moreFollows  moreFollows
               Boolean
               mms.BOOLEAN

           mms.mostSevere  mostSevere
               Signed 32-bit integer
               mms.Unsigned8

           mms.name  name
               Unsigned 32-bit integer
               mms.ObjectName

           mms.nameToStartAfter  nameToStartAfter
               String
               mms.Identifier

           mms.named  named
               No value
               mms.T_named

           mms.namedToken  namedToken
               String
               mms.Identifier

           mms.negociatedDataStructureNestingLevel  negociatedDataStructureNestingLevel
               Signed 32-bit integer
               mms.Integer8

           mms.negociatedMaxServOutstandingCalled  negociatedMaxServOutstandingCalled
               Signed 32-bit integer
               mms.Integer16

           mms.negociatedMaxServOutstandingCalling  negociatedMaxServOutstandingCalling
               Signed 32-bit integer
               mms.Integer16

           mms.negociatedParameterCBB  negociatedParameterCBB
               Byte array
               mms.ParameterSupportOptions

           mms.negociatedVersionNumber  negociatedVersionNumber
               Signed 32-bit integer
               mms.Integer16

           mms.newFileName  newFileName
               Unsigned 32-bit integer
               mms.FileName

           mms.newIdentifier  newIdentifier
               String
               mms.Identifier

           mms.noResult  noResult
               No value
               mms.NULL

           mms.non_coded  non-coded
               Byte array
               mms.OCTET_STRING

           mms.notificationLost  notificationLost
               Boolean
               mms.BOOLEAN

           mms.numberDeleted  numberDeleted
               Signed 32-bit integer
               mms.Unsigned32

           mms.numberMatched  numberMatched
               Signed 32-bit integer
               mms.Unsigned32

           mms.numberOfElements  numberOfElements
               Signed 32-bit integer
               mms.Unsigned32

           mms.numberOfEntries  numberOfEntries
               Signed 32-bit integer
               mms.Integer32

           mms.numberOfEventEnrollments  numberOfEventEnrollments
               Signed 32-bit integer
               mms.Unsigned32

           mms.numberOfHungTokens  numberOfHungTokens
               Signed 32-bit integer
               mms.Unsigned16

           mms.numberOfOwnedTokens  numberOfOwnedTokens
               Signed 32-bit integer
               mms.Unsigned16

           mms.numberOfTokens  numberOfTokens
               Signed 32-bit integer
               mms.Unsigned16

           mms.numbersOfTokens  numbersOfTokens
               Signed 32-bit integer
               mms.Unsigned16

           mms.numericAddress  numericAddress
               Signed 32-bit integer
               mms.Unsigned32

           mms.objId  objId
               No value
               mms.NULL

           mms.objectClass  objectClass
               Signed 32-bit integer
               mms.T_objectClass

           mms.objectScope  objectScope
               Unsigned 32-bit integer
               mms.T_objectScope

           mms.obtainFile  obtainFile
               No value
               mms.ObtainFile_Request

           mms.occurenceTime  occurenceTime
               Byte array
               mms.TimeOfDay

           mms.octet_string  octet-string
               Signed 32-bit integer
               mms.Integer32

           mms.operatorStationName  operatorStationName
               String
               mms.Identifier

           mms.originalInvokeID  originalInvokeID
               Signed 32-bit integer
               mms.Unsigned32

           mms.originatingApplication  originatingApplication
               No value
               mms.ApplicationReference

           mms.others  others
               Signed 32-bit integer
               mms.INTEGER

           mms.output  output
               No value
               mms.Output_Request

           mms.ownedNamedToken  ownedNamedToken
               String
               mms.Identifier

           mms.packed  packed
               Boolean
               mms.BOOLEAN

           mms.pdu_error  pdu-error
               Signed 32-bit integer
               mms.T_pdu_error

           mms.prio_rity  prio-rity
               Signed 32-bit integer
               mms.Priority

           mms.priority  priority
               Signed 32-bit integer
               mms.Priority

           mms.programInvocationName  programInvocationName
               String
               mms.Identifier

           mms.proposedDataStructureNestingLevel  proposedDataStructureNestingLevel
               Signed 32-bit integer
               mms.Integer8

           mms.proposedMaxServOutstandingCalled  proposedMaxServOutstandingCalled
               Signed 32-bit integer
               mms.Integer16

           mms.proposedMaxServOutstandingCalling  proposedMaxServOutstandingCalling
               Signed 32-bit integer
               mms.Integer16

           mms.proposedParameterCBB  proposedParameterCBB
               Byte array
               mms.ParameterSupportOptions

           mms.proposedVersionNumber  proposedVersionNumber
               Signed 32-bit integer
               mms.Integer16

           mms.rangeStartSpecification  rangeStartSpecification
               Unsigned 32-bit integer
               mms.T_rangeStartSpecification

           mms.rangeStopSpecification  rangeStopSpecification
               Unsigned 32-bit integer
               mms.T_rangeStopSpecification

           mms.read  read
               No value
               mms.Read_Request

           mms.readJournal  readJournal
               No value
               mms.ReadJournal_Request

           mms.real  real
               Boolean

           mms.rejectPDU  rejectPDU
               No value
               mms.RejectPDU

           mms.rejectReason  rejectReason
               Unsigned 32-bit integer
               mms.T_rejectReason

           mms.relinquishControl  relinquishControl
               No value
               mms.RelinquishControl_Request

           mms.relinquishIfConnectionLost  relinquishIfConnectionLost
               Boolean
               mms.BOOLEAN

           mms.remainingAcceptableDelay  remainingAcceptableDelay
               Signed 32-bit integer
               mms.Unsigned32

           mms.remainingTimeOut  remainingTimeOut
               Signed 32-bit integer
               mms.Unsigned32

           mms.rename  rename
               No value
               mms.Rename_Request

           mms.reportActionStatus  reportActionStatus
               Signed 32-bit integer
               mms.ReportEventActionStatus_Response

           mms.reportEventActionStatus  reportEventActionStatus
               Unsigned 32-bit integer
               mms.ReportEventActionStatus_Request

           mms.reportEventConditionStatus  reportEventConditionStatus
               Unsigned 32-bit integer
               mms.ReportEventConditionStatus_Request

           mms.reportEventEnrollmentStatus  reportEventEnrollmentStatus
               Unsigned 32-bit integer
               mms.ReportEventEnrollmentStatus_Request

           mms.reportJournalStatus  reportJournalStatus
               Unsigned 32-bit integer
               mms.ReportJournalStatus_Request

           mms.reportPoolSemaphoreStatus  reportPoolSemaphoreStatus
               No value
               mms.ReportPoolSemaphoreStatus_Request

           mms.reportSemaphoreEntryStatus  reportSemaphoreEntryStatus
               No value
               mms.ReportSemaphoreEntryStatus_Request

           mms.reportSemaphoreStatus  reportSemaphoreStatus
               Unsigned 32-bit integer
               mms.ReportSemaphoreStatus_Request

           mms.requestDomainDownLoad  requestDomainDownLoad
               No value
               mms.RequestDomainDownload_Response

           mms.requestDomainDownload  requestDomainDownload
               No value
               mms.RequestDomainDownload_Request

           mms.requestDomainUpload  requestDomainUpload
               No value
               mms.RequestDomainUpload_Request

           mms.reset  reset
               No value
               mms.Reset_Request

           mms.resource  resource
               Signed 32-bit integer
               mms.T_resource

           mms.resume  resume
               No value
               mms.Resume_Request

           mms.reusable  reusable
               Boolean
               mms.BOOLEAN

           mms.revision  revision
               String
               mms.VisibleString

           mms.scatteredAccessDescription  scatteredAccessDescription
               Unsigned 32-bit integer
               mms.ScatteredAccessDescription

           mms.scatteredAccessName  scatteredAccessName
               Unsigned 32-bit integer
               mms.ObjectName

           mms.scopeOfDelete  scopeOfDelete
               Signed 32-bit integer
               mms.T_scopeOfDelete

           mms.scopeOfRequest  scopeOfRequest
               Signed 32-bit integer
               mms.T_scopeOfRequest

           mms.selectAccess  selectAccess
               Unsigned 32-bit integer
               mms.T_selectAccess

           mms.semaphoreName  semaphoreName
               Unsigned 32-bit integer
               mms.ObjectName

           mms.service  service
               Signed 32-bit integer
               mms.T_service

           mms.serviceError  serviceError
               No value
               mms.ServiceError

           mms.serviceSpecificInformation  serviceSpecificInformation
               Unsigned 32-bit integer
               mms.T_serviceSpecificInformation

           mms.service_preempt  service-preempt
               Signed 32-bit integer
               mms.T_service_preempt

           mms.servicesSupportedCalled  servicesSupportedCalled
               Byte array
               mms.ServiceSupportOptions

           mms.servicesSupportedCalling  servicesSupportedCalling
               Byte array
               mms.ServiceSupportOptions

           mms.severity  severity
               Signed 32-bit integer
               mms.Unsigned8

           mms.severityFilter  severityFilter
               No value
               mms.T_severityFilter

           mms.sharable  sharable
               Boolean
               mms.BOOLEAN

           mms.simpleString  simpleString
               String
               mms.VisibleString

           mms.sizeOfFile  sizeOfFile
               Signed 32-bit integer
               mms.Unsigned32

           mms.sourceFile  sourceFile
               Unsigned 32-bit integer
               mms.FileName

           mms.sourceFileServer  sourceFileServer
               No value
               mms.ApplicationReference

           mms.specific  specific
               Unsigned 32-bit integer
               mms.SEQUENCE_OF_ObjectName

           mms.specificationWithResult  specificationWithResult
               Boolean
               mms.BOOLEAN

           mms.start  start
               No value
               mms.Start_Request

           mms.startArgument  startArgument
               String
               mms.VisibleString

           mms.startingEntry  startingEntry
               Byte array
               mms.OCTET_STRING

           mms.startingTime  startingTime
               Byte array
               mms.TimeOfDay

           mms.state  state
               Signed 32-bit integer
               mms.DomainState

           mms.status  status
               Boolean
               mms.Status_Request

           mms.stop  stop
               No value
               mms.Stop_Request

           mms.storeDomainContent  storeDomainContent
               No value
               mms.StoreDomainContent_Request

           mms.str1  str1
               Boolean

           mms.str2  str2
               Boolean

           mms.structure  structure
               No value
               mms.T_structure

           mms.success  success
               No value
               mms.NULL

           mms.symbolicAddress  symbolicAddress
               String
               mms.VisibleString

           mms.takeControl  takeControl
               No value
               mms.TakeControl_Request

           mms.terminateDownloadSequence  terminateDownloadSequence
               No value
               mms.TerminateDownloadSequence_Request

           mms.terminateUploadSequence  terminateUploadSequence
               Signed 32-bit integer
               mms.TerminateUploadSequence_Request

           mms.thirdParty  thirdParty
               No value
               mms.ApplicationReference

           mms.timeActiveAcknowledged  timeActiveAcknowledged
               Unsigned 32-bit integer
               mms.EventTime

           mms.timeIdleAcknowledged  timeIdleAcknowledged
               Unsigned 32-bit integer
               mms.EventTime

           mms.timeOfAcknowledgedTransition  timeOfAcknowledgedTransition
               Unsigned 32-bit integer
               mms.EventTime

           mms.timeOfDayT  timeOfDayT
               Byte array
               mms.TimeOfDay

           mms.timeOfLastTransitionToActive  timeOfLastTransitionToActive
               Unsigned 32-bit integer
               mms.EventTime

           mms.timeOfLastTransitionToIdle  timeOfLastTransitionToIdle
               Unsigned 32-bit integer
               mms.EventTime

           mms.timeSequenceIdentifier  timeSequenceIdentifier
               Signed 32-bit integer
               mms.Unsigned32

           mms.timeSpecification  timeSpecification
               Byte array
               mms.TimeOfDay

           mms.time_resolution  time-resolution
               Signed 32-bit integer
               mms.T_time_resolution

           mms.tpy  tpy
               Boolean

           mms.transitionTime  transitionTime
               Unsigned 32-bit integer
               mms.EventTime

           mms.triggerEvent  triggerEvent
               No value
               mms.TriggerEvent_Request

           mms.typeName  typeName
               Unsigned 32-bit integer
               mms.ObjectName

           mms.typeSpecification  typeSpecification
               Unsigned 32-bit integer
               mms.TypeSpecification

           mms.ulsmID  ulsmID
               Signed 32-bit integer
               mms.Integer32

           mms.unacknowledgedState  unacknowledgedState
               Signed 32-bit integer
               mms.T_unacknowledgedState

           mms.unconfirmedPDU  unconfirmedPDU
               Signed 32-bit integer
               mms.T_unconfirmedPDU

           mms.unconfirmedService  unconfirmedService
               Unsigned 32-bit integer
               mms.UnconfirmedService

           mms.unconfirmed_PDU  unconfirmed-PDU
               No value
               mms.Unconfirmed_PDU

           mms.unconstrainedAddress  unconstrainedAddress
               Byte array
               mms.OCTET_STRING

           mms.undefined  undefined
               No value
               mms.NULL

           mms.unnamed  unnamed
               Unsigned 32-bit integer
               mms.AlternateAccessSelection

           mms.unsigned  unsigned
               Signed 32-bit integer
               mms.Unsigned8

           mms.unsolicitedStatus  unsolicitedStatus
               No value
               mms.UnsolicitedStatus

           mms.uploadInProgress  uploadInProgress
               Signed 32-bit integer
               mms.Integer8

           mms.uploadSegment  uploadSegment
               Signed 32-bit integer
               mms.UploadSegment_Request

           mms.vadr  vadr
               Boolean

           mms.valt  valt
               Boolean

           mms.valueSpecification  valueSpecification
               Unsigned 32-bit integer
               mms.Data

           mms.variableAccessSpecification  variableAccessSpecification
               Unsigned 32-bit integer
               mms.VariableAccessSpecification

           mms.variableAccessSpecificatn  variableAccessSpecificatn
               Unsigned 32-bit integer
               mms.VariableAccessSpecification

           mms.variableDescription  variableDescription
               No value
               mms.T_variableDescription

           mms.variableListName  variableListName
               Unsigned 32-bit integer
               mms.ObjectName

           mms.variableName  variableName
               Unsigned 32-bit integer
               mms.ObjectName

           mms.variableReference  variableReference
               Unsigned 32-bit integer
               mms.VariableSpecification

           mms.variableSpecification  variableSpecification
               Unsigned 32-bit integer
               mms.VariableSpecification

           mms.variableTag  variableTag
               String
               mms.VisibleString

           mms.vendorName  vendorName
               String
               mms.VisibleString

           mms.visible_string  visible-string
               Signed 32-bit integer
               mms.Integer32

           mms.vlis  vlis
               Boolean

           mms.vmd  vmd
               No value
               mms.NULL

           mms.vmdLogicalStatus  vmdLogicalStatus
               Signed 32-bit integer
               mms.T_vmdLogicalStatus

           mms.vmdPhysicalStatus  vmdPhysicalStatus
               Signed 32-bit integer
               mms.T_vmdPhysicalStatus

           mms.vmdSpecific  vmdSpecific
               No value
               mms.NULL

           mms.vmd_specific  vmd-specific
               String
               mms.Identifier

           mms.vmd_state  vmd-state
               Signed 32-bit integer
               mms.T_vmd_state

           mms.vnam  vnam
               Boolean

           mms.vsca  vsca
               Boolean

           mms.write  write
               No value
               mms.Write_Request

           mms.writeJournal  writeJournal
               No value
               mms.WriteJournal_Request

   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
               aspect_ratio_info

           mp4ves.configuration  Configuration
               Byte array
               Configuration

           mp4ves.is_object_layer_identifier  is_object_layer_identifier
               Unsigned 8-bit integer
               is_object_layer_identifier

           mp4ves.profile_and_level_indication  profile_and_level_indication
               Unsigned 8-bit integer
               profile_and_level_indication

           mp4ves.random_accessible_vol  random_accessible_vol
               Unsigned 8-bit integer
               video_object_type_indication

           mp4ves.start_code  Start code
               Unsigned 8-bit integer
               Start code

           mp4ves.start_code_prefix  start code prefix
               Unsigned 32-bit integer
               start code prefix

           mp4ves.stuffing  Stuffing
               Unsigned 8-bit integer
               Stuffing

           mp4ves.video_object_layer_shape  video_object_layer_shape
               Unsigned 8-bit integer
               video_object_layer_shape

           mp4ves.video_object_type_indication  video_object_type_indication
               Unsigned 8-bit integer
               video_object_type_indication

           mp4ves.video_signal_type  video_signal_type
               Unsigned 8-bit integer
               video_signal_type

           mp4ves.visual_object_identifier  visual_object_identifier
               Unsigned 8-bit integer
               visual_object_identifier

           mp4ves.visual_object_type  visual_object_type
               Unsigned 32-bit integer
               visual_object_type

           mp4ves.vol_control_parameters  vol_control_parameters
               Unsigned 8-bit integer
               vol_control_parameters

           mp4ves.vop_coding_type  vop_coding_type
               Unsigned 8-bit integer
               Start code

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

           kpasswd.new_password  New Password
               String
               New Password

           kpasswd.result  Result
               Unsigned 16-bit integer
               Result

           kpasswd.result_string  Result String
               String
               Result String

           kpasswd.version  Version
               Unsigned 16-bit integer
               Version

   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
               Count

           msnlb.host_ip  Host IP
               IPv4 address
               Host IP address

           msnlb.host_name  Host name
               String
               Host name

           msnlb.hpn  Host Priority Number
               Unsigned 32-bit integer
               Host Priority Number

           msnlb.unknown  Unknown
               Byte array

   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

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

           h245.BEnhancementParameters  BEnhancementParameters
               No value
               h245.BEnhancementParameters

           h245.CapabilityDescriptor  CapabilityDescriptor
               No value
               h245.CapabilityDescriptor

           h245.CapabilityDescriptorNumber  CapabilityDescriptorNumber
               Unsigned 32-bit integer
               h245.CapabilityDescriptorNumber

           h245.CapabilityTableEntry  CapabilityTableEntry
               No value
               h245.CapabilityTableEntry

           h245.CapabilityTableEntryNumber  alternativeCapability
               Unsigned 32-bit integer
               h245.CapabilityTableEntryNumber

           h245.CommunicationModeTableEntry  CommunicationModeTableEntry
               No value
               h245.CommunicationModeTableEntry

           h245.Criteria  Criteria
               No value
               h245.Criteria

           h245.CustomPictureClockFrequency  CustomPictureClockFrequency
               No value
               h245.CustomPictureClockFrequency

           h245.CustomPictureFormat  CustomPictureFormat
               No value
               h245.CustomPictureFormat

           h245.DataApplicationCapability  DataApplicationCapability
               No value
               h245.DataApplicationCapability

           h245.DialingInformationNetworkType  DialingInformationNetworkType
               Unsigned 32-bit integer
               h245.DialingInformationNetworkType

           h245.DialingInformationNumber  DialingInformationNumber
               No value
               h245.DialingInformationNumber

           h245.EnhancementOptions  EnhancementOptions
               No value
               h245.EnhancementOptions

           h245.EscrowData  EscrowData
               No value
               h245.EscrowData

           h245.GenericCapability  GenericCapability
               No value
               h245.GenericCapability

           h245.GenericInformation  GenericInformation
               No value
               h245.GenericInformation

           h245.GenericParameter  GenericParameter
               No value
               h245.GenericParameter

           h245.H263ModeComboFlags  H263ModeComboFlags
               No value
               h245.H263ModeComboFlags

           h245.H263VideoModeCombos  H263VideoModeCombos
               No value
               h245.H263VideoModeCombos

           h245.Manufacturer  H.245 Manufacturer
               Unsigned 32-bit integer
               h245.H.221 Manufacturer

           h245.MediaChannelCapability  MediaChannelCapability
               No value
               h245.MediaChannelCapability

           h245.MediaDistributionCapability  MediaDistributionCapability
               No value
               h245.MediaDistributionCapability

           h245.MediaEncryptionAlgorithm  MediaEncryptionAlgorithm
               Unsigned 32-bit integer
               h245.MediaEncryptionAlgorithm

           h245.ModeDescription  ModeDescription
               Unsigned 32-bit integer
               h245.ModeDescription

           h245.ModeElement  ModeElement
               No value
               h245.ModeElement

           h245.MultiplePayloadStreamElement  MultiplePayloadStreamElement
               No value
               h245.MultiplePayloadStreamElement

           h245.MultiplePayloadStreamElementMode  MultiplePayloadStreamElementMode
               No value
               h245.MultiplePayloadStreamElementMode

           h245.MultiplexElement  MultiplexElement
               No value
               h245.MultiplexElement

           h245.MultiplexEntryDescriptor  MultiplexEntryDescriptor
               No value
               h245.MultiplexEntryDescriptor

           h245.MultiplexEntryRejectionDescriptions  MultiplexEntryRejectionDescriptions
               No value
               h245.MultiplexEntryRejectionDescriptions

           h245.MultiplexTableEntryNumber  MultiplexTableEntryNumber
               Unsigned 32-bit integer
               h245.MultiplexTableEntryNumber

           h245.NonStandardParameter  NonStandardParameter
               No value
               h245.NonStandardParameter

           h245.OpenLogicalChannel  OpenLogicalChannel
               No value
               h245.OpenLogicalChannel

           h245.ParameterIdentifier  ParameterIdentifier
               Unsigned 32-bit integer
               h245.ParameterIdentifier

           h245.PictureReference  PictureReference
               Unsigned 32-bit integer
               h245.PictureReference

           h245.Q2931Address  Q2931Address
               No value
               h245.Q2931Address

           h245.QOSCapability  QOSCapability
               No value
               h245.QOSCapability

           h245.RTPH263VideoRedundancyFrameMapping  RTPH263VideoRedundancyFrameMapping
               No value
               h245.RTPH263VideoRedundancyFrameMapping

           h245.RTPPayloadType  RTPPayloadType
               No value
               h245.RTPPayloadType

           h245.RedundancyEncodingCapability  RedundancyEncodingCapability
               No value
               h245.RedundancyEncodingCapability

           h245.RedundancyEncodingDTModeElement  RedundancyEncodingDTModeElement
               No value
               h245.RedundancyEncodingDTModeElement

           h245.RedundancyEncodingElement  RedundancyEncodingElement
               No value
               h245.RedundancyEncodingElement

           h245.RequestMultiplexEntryRejectionDescriptions  RequestMultiplexEntryRejectionDescriptions
               No value
               h245.RequestMultiplexEntryRejectionDescriptions

           h245.TerminalInformation  TerminalInformation
               No value
               h245.TerminalInformation

           h245.TerminalLabel  TerminalLabel
               No value
               h245.TerminalLabel

           h245.VCCapability  VCCapability
               No value
               h245.VCCapability

           h245.VideoCapability  VideoCapability
               Unsigned 32-bit integer
               h245.VideoCapability

           h245.aal  aal
               Unsigned 32-bit integer
               h245.Cmd_aal

           h245.aal1  aal1
               No value
               h245.T_aal1

           h245.aal1ViaGateway  aal1ViaGateway
               No value
               h245.T_aal1ViaGateway

           h245.aal5  aal5
               No value
               h245.T_aal5

           h245.accept  accept
               No value
               h245.NULL

           h245.accepted  accepted
               No value
               h245.NULL

           h245.ackAndNackMessage  ackAndNackMessage
               No value
               h245.NULL

           h245.ackMessageOnly  ackMessageOnly
               No value
               h245.NULL

           h245.ackOrNackMessageOnly  ackOrNackMessageOnly
               No value
               h245.NULL

           h245.adaptationLayerType  adaptationLayerType
               Unsigned 32-bit integer
               h245.T_adaptationLayerType

           h245.adaptiveClockRecovery  adaptiveClockRecovery
               Boolean
               h245.BOOLEAN

           h245.addConnection  addConnection
               No value
               h245.AddConnectionReq

           h245.additionalDecoderBuffer  additionalDecoderBuffer
               Unsigned 32-bit integer
               h245.INTEGER_0_262143

           h245.additionalPictureMemory  additionalPictureMemory
               No value
               h245.T_additionalPictureMemory

           h245.address  address
               Unsigned 32-bit integer
               h245.T_address

           h245.advancedIntraCodingMode  advancedIntraCodingMode
               Boolean
               h245.BOOLEAN

           h245.advancedPrediction  advancedPrediction
               Boolean
               h245.BOOLEAN

           h245.al1Framed  al1Framed
               No value
               h245.T_h223_al_type_al1Framed

           h245.al1M  al1M
               No value
               h245.T_h223_al_type_al1M

           h245.al1NotFramed  al1NotFramed
               No value
               h245.T_h223_al_type_al1NotFramed

           h245.al2M  al2M
               No value
               h245.T_h223_al_type_al2M

           h245.al2WithSequenceNumbers  al2WithSequenceNumbers
               No value
               h245.T_h223_al_type_al2WithSequenceNumbers

           h245.al2WithoutSequenceNumbers  al2WithoutSequenceNumbers
               No value
               h245.T_h223_al_type_al2WithoutSequenceNumbers

           h245.al3  al3
               No value
               h245.T_h223_al_type_al3

           h245.al3M  al3M
               No value
               h245.T_h223_al_type_al3M

           h245.algorithm  algorithm
               Object Identifier
               h245.OBJECT_IDENTIFIER

           h245.algorithmOID  algorithmOID
               Object Identifier
               h245.OBJECT_IDENTIFIER

           h245.alpduInterleaving  alpduInterleaving
               Boolean
               h245.BOOLEAN

           h245.alphanumeric  alphanumeric
               String
               h245.GeneralString

           h245.alsduSplitting  alsduSplitting
               Boolean
               h245.BOOLEAN

           h245.alternateInterVLCMode  alternateInterVLCMode
               Boolean
               h245.BOOLEAN

           h245.annexA  annexA
               Boolean
               h245.BOOLEAN

           h245.annexB  annexB
               Boolean
               h245.BOOLEAN

           h245.annexD  annexD
               Boolean
               h245.BOOLEAN

           h245.annexE  annexE
               Boolean
               h245.BOOLEAN

           h245.annexF  annexF
               Boolean
               h245.BOOLEAN

           h245.annexG  annexG
               Boolean
               h245.BOOLEAN

           h245.annexH  annexH
               Boolean
               h245.BOOLEAN

           h245.antiSpamAlgorithm  antiSpamAlgorithm
               Object Identifier
               h245.OBJECT_IDENTIFIER

           h245.anyPixelAspectRatio  anyPixelAspectRatio
               Boolean
               h245.BOOLEAN

           h245.application  application
               Unsigned 32-bit integer
               h245.Application

           h245.arithmeticCoding  arithmeticCoding
               Boolean
               h245.BOOLEAN

           h245.arqType  arqType
               Unsigned 32-bit integer
               h245.ArqType

           h245.associateConference  associateConference
               Boolean
               h245.BOOLEAN

           h245.associatedAlgorithm  associatedAlgorithm
               No value
               h245.NonStandardParameter

           h245.associatedSessionID  associatedSessionID
               Unsigned 32-bit integer
               h245.INTEGER_1_255

           h245.atmABR  atmABR
               Boolean
               h245.BOOLEAN

           h245.atmCBR  atmCBR
               Boolean
               h245.BOOLEAN

           h245.atmParameters  atmParameters
               No value
               h245.ATMParameters

           h245.atmUBR  atmUBR
               Boolean
               h245.BOOLEAN

           h245.atm_AAL5_BIDIR  atm-AAL5-BIDIR
               No value
               h245.NULL

           h245.atm_AAL5_UNIDIR  atm-AAL5-UNIDIR
               No value
               h245.NULL

           h245.atm_AAL5_compressed  atm-AAL5-compressed
               No value
               h245.T_atm_AAL5_compressed

           h245.atmnrtVBR  atmnrtVBR
               Boolean
               h245.BOOLEAN

           h245.atmrtVBR  atmrtVBR
               Boolean
               h245.BOOLEAN

           h245.audioData  audioData
               Unsigned 32-bit integer
               h245.AudioCapability

           h245.audioHeader  audioHeader
               Boolean
               h245.BOOLEAN

           h245.audioHeaderPresent  audioHeaderPresent
               Boolean
               h245.BOOLEAN

           h245.audioLayer  audioLayer
               Unsigned 32-bit integer
               h245.T_audioLayer

           h245.audioLayer1  audioLayer1
               Boolean
               h245.BOOLEAN

           h245.audioLayer2  audioLayer2
               Boolean
               h245.BOOLEAN

           h245.audioLayer3  audioLayer3
               Boolean
               h245.BOOLEAN

           h245.audioMode  audioMode
               Unsigned 32-bit integer
               h245.AudioMode

           h245.audioSampling  audioSampling
               Unsigned 32-bit integer
               h245.T_audioSampling

           h245.audioSampling16k  audioSampling16k
               Boolean
               h245.BOOLEAN

           h245.audioSampling22k05  audioSampling22k05
               Boolean
               h245.BOOLEAN

           h245.audioSampling24k  audioSampling24k
               Boolean
               h245.BOOLEAN

           h245.audioSampling32k  audioSampling32k
               Boolean
               h245.BOOLEAN

           h245.audioSampling44k1  audioSampling44k1
               Boolean
               h245.BOOLEAN

           h245.audioSampling48k  audioSampling48k
               Boolean
               h245.BOOLEAN

           h245.audioTelephoneEvent  audioTelephoneEvent
               String
               h245.GeneralString

           h245.audioTelephonyEvent  audioTelephonyEvent
               No value
               h245.NoPTAudioTelephonyEventCapability

           h245.audioTone  audioTone
               No value
               h245.NoPTAudioToneCapability

           h245.audioUnit  audioUnit
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.audioUnitSize  audioUnitSize
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.audioWithAL1  audioWithAL1
               Boolean
               h245.BOOLEAN

           h245.audioWithAL1M  audioWithAL1M
               Boolean
               h245.BOOLEAN

           h245.audioWithAL2  audioWithAL2
               Boolean
               h245.BOOLEAN

           h245.audioWithAL2M  audioWithAL2M
               Boolean
               h245.BOOLEAN

           h245.audioWithAL3  audioWithAL3
               Boolean
               h245.BOOLEAN

           h245.audioWithAL3M  audioWithAL3M
               Boolean
               h245.BOOLEAN

           h245.authenticationCapability  authenticationCapability
               No value
               h245.AuthenticationCapability

           h245.authorizationParameter  authorizationParameter
               No value
               h245.AuthorizationParameters

           h245.availableBitRates  availableBitRates
               No value
               h245.T_availableBitRates

           h245.averageRate  averageRate
               Unsigned 32-bit integer
               h245.INTEGER_1_4294967295

           h245.bPictureEnhancement  bPictureEnhancement
               Unsigned 32-bit integer
               h245.SET_SIZE_1_14_OF_BEnhancementParameters

           h245.backwardMaximumSDUSize  backwardMaximumSDUSize
               Unsigned 32-bit integer
               h245.INTEGER_0_65535

           h245.baseBitRateConstrained  baseBitRateConstrained
               Boolean
               h245.BOOLEAN

           h245.basic  basic
               No value
               h245.NULL

           h245.basicString  basicString
               No value
               h245.NULL

           h245.bigCpfAdditionalPictureMemory  bigCpfAdditionalPictureMemory
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.bitRate  bitRate
               Unsigned 32-bit integer
               h245.INTEGER_1_19200

           h245.bitRateLockedToNetworkClock  bitRateLockedToNetworkClock
               Boolean
               h245.BOOLEAN

           h245.bitRateLockedToPCRClock  bitRateLockedToPCRClock
               Boolean
               h245.BOOLEAN

           h245.booleanArray  booleanArray
               Unsigned 32-bit integer
               h245.T_booleanArray

           h245.bppMaxKb  bppMaxKb
               Unsigned 32-bit integer
               h245.INTEGER_0_65535

           h245.broadcastMyLogicalChannel  broadcastMyLogicalChannel
               Unsigned 32-bit integer
               h245.LogicalChannelNumber

           h245.broadcastMyLogicalChannelResponse  broadcastMyLogicalChannelResponse
               Unsigned 32-bit integer
               h245.T_broadcastMyLogicalChannelResponse

           h245.bucketSize  bucketSize
               Unsigned 32-bit integer
               h245.INTEGER_1_4294967295

           h245.burst  burst
               Unsigned 32-bit integer
               h245.INTEGER_1_4294967295

           h245.callAssociationNumber  callAssociationNumber
               Unsigned 32-bit integer
               h245.INTEGER_0_4294967295

           h245.callInformation  callInformation
               No value
               h245.CallInformationReq

           h245.canNotPerformLoop  canNotPerformLoop
               No value
               h245.NULL

           h245.cancelBroadcastMyLogicalChannel  cancelBroadcastMyLogicalChannel
               Unsigned 32-bit integer
               h245.LogicalChannelNumber

           h245.cancelMakeMeChair  cancelMakeMeChair
               No value
               h245.NULL

           h245.cancelMakeTerminalBroadcaster  cancelMakeTerminalBroadcaster
               No value
               h245.NULL

           h245.cancelMultipointConference  cancelMultipointConference
               No value
               h245.NULL

           h245.cancelMultipointModeCommand  cancelMultipointModeCommand
               No value
               h245.NULL

           h245.cancelMultipointSecondaryStatus  cancelMultipointSecondaryStatus
               No value
               h245.NULL

           h245.cancelMultipointZeroComm  cancelMultipointZeroComm
               No value
               h245.NULL

           h245.cancelSeenByAll  cancelSeenByAll
               No value
               h245.NULL

           h245.cancelSeenByAtLeastOneOther  cancelSeenByAtLeastOneOther
               No value
               h245.NULL

           h245.cancelSendThisSource  cancelSendThisSource
               No value
               h245.NULL

           h245.capabilities  capabilities
               Unsigned 32-bit integer
               h245.SET_SIZE_1_256_OF_AlternativeCapabilitySet

           h245.capability  capability
               Unsigned 32-bit integer
               h245.Capability

           h245.capabilityDescriptorNumber  capabilityDescriptorNumber
               Unsigned 32-bit integer
               h245.CapabilityDescriptorNumber

           h245.capabilityDescriptorNumbers  capabilityDescriptorNumbers
               Unsigned 32-bit integer
               h245.SET_SIZE_1_256_OF_CapabilityDescriptorNumber

           h245.capabilityDescriptors  capabilityDescriptors
               Unsigned 32-bit integer
               h245.SET_SIZE_1_256_OF_CapabilityDescriptor

           h245.capabilityIdentifier  capabilityIdentifier
               Unsigned 32-bit integer
               h245.CapabilityIdentifier

           h245.capabilityOnMuxStream  capabilityOnMuxStream
               Unsigned 32-bit integer
               h245.SET_SIZE_1_256_OF_AlternativeCapabilitySet

           h245.capabilityTable  capabilityTable
               Unsigned 32-bit integer
               h245.SET_SIZE_1_256_OF_CapabilityTableEntry

           h245.capabilityTableEntryNumber  capabilityTableEntryNumber
               Unsigned 32-bit integer
               h245.CapabilityTableEntryNumber

           h245.capabilityTableEntryNumbers  capabilityTableEntryNumbers
               Unsigned 32-bit integer
               h245.SET_SIZE_1_65535_OF_CapabilityTableEntryNumber

           h245.cause  cause
               Unsigned 32-bit integer
               h245.MasterSlaveDeterminationRejectCause

           h245.ccir601Prog  ccir601Prog
               Boolean
               h245.BOOLEAN

           h245.ccir601Seq  ccir601Seq
               Boolean
               h245.BOOLEAN

           h245.centralizedAudio  centralizedAudio
               Boolean
               h245.BOOLEAN

           h245.centralizedConferenceMC  centralizedConferenceMC
               Boolean
               h245.BOOLEAN

           h245.centralizedControl  centralizedControl
               Boolean
               h245.BOOLEAN

           h245.centralizedData  centralizedData
               Unsigned 32-bit integer
               h245.SEQUENCE_OF_DataApplicationCapability

           h245.centralizedVideo  centralizedVideo
               Boolean
               h245.BOOLEAN

           h245.certProtectedKey  certProtectedKey
               Boolean
               h245.BOOLEAN

           h245.certSelectionCriteria  certSelectionCriteria
               Unsigned 32-bit integer
               h245.CertSelectionCriteria

           h245.certificateResponse  certificateResponse
               Byte array
               h245.OCTET_STRING_SIZE_1_65535

           h245.chairControlCapability  chairControlCapability
               Boolean
               h245.BOOLEAN

           h245.chairTokenOwnerResponse  chairTokenOwnerResponse
               No value
               h245.T_chairTokenOwnerResponse

           h245.channelTag  channelTag
               Unsigned 32-bit integer
               h245.INTEGER_0_4294967295

           h245.cif  cif
               Boolean
               h245.BOOLEAN

           h245.cif16  cif16
               No value
               h245.NULL

           h245.cif16AdditionalPictureMemory  cif16AdditionalPictureMemory
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.cif16MPI  cif16MPI
               Unsigned 32-bit integer
               h245.INTEGER_1_32

           h245.cif4  cif4
               No value
               h245.NULL

           h245.cif4AdditionalPictureMemory  cif4AdditionalPictureMemory
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.cif4MPI  cif4MPI
               Unsigned 32-bit integer
               h245.INTEGER_1_32

           h245.cifAdditionalPictureMemory  cifAdditionalPictureMemory
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.cifMPI  cifMPI
               Unsigned 32-bit integer
               h245.INTEGER_1_4

           h245.class0  class0
               No value
               h245.NULL

           h245.class1  class1
               No value
               h245.NULL

           h245.class2  class2
               No value
               h245.NULL

           h245.class3  class3
               No value
               h245.NULL

           h245.class4  class4
               No value
               h245.NULL

           h245.class5  class5
               No value
               h245.NULL

           h245.clockConversionCode  clockConversionCode
               Unsigned 32-bit integer
               h245.INTEGER_1000_1001

           h245.clockDivisor  clockDivisor
               Unsigned 32-bit integer
               h245.INTEGER_1_127

           h245.clockRecovery  clockRecovery
               Unsigned 32-bit integer
               h245.Cmd_clockRecovery

           h245.closeLogicalChannel  closeLogicalChannel
               No value
               h245.CloseLogicalChannel

           h245.closeLogicalChannelAck  closeLogicalChannelAck
               No value
               h245.CloseLogicalChannelAck

           h245.collapsing  collapsing
               Unsigned 32-bit integer
               h245.T_collapsing

           h245.collapsing_item  collapsing item
               No value
               h245.T_collapsing_item

           h245.comfortNoise  comfortNoise
               Boolean
               h245.BOOLEAN

           h245.command  command
               Unsigned 32-bit integer
               h245.CommandMessage

           h245.communicationModeCommand  communicationModeCommand
               No value
               h245.CommunicationModeCommand

           h245.communicationModeRequest  communicationModeRequest
               No value
               h245.CommunicationModeRequest

           h245.communicationModeResponse  communicationModeResponse
               Unsigned 32-bit integer
               h245.CommunicationModeResponse

           h245.communicationModeTable  communicationModeTable
               Unsigned 32-bit integer
               h245.SET_SIZE_1_256_OF_CommunicationModeTableEntry

           h245.compositionNumber  compositionNumber
               Unsigned 32-bit integer
               h245.INTEGER_0_255

           h245.conferenceCapability  conferenceCapability
               No value
               h245.ConferenceCapability

           h245.conferenceCommand  conferenceCommand
               Unsigned 32-bit integer
               h245.ConferenceCommand

           h245.conferenceID  conferenceID
               Byte array
               h245.ConferenceID

           h245.conferenceIDResponse  conferenceIDResponse
               No value
               h245.T_conferenceIDResponse

           h245.conferenceIdentifier  conferenceIdentifier
               Byte array
               h245.OCTET_STRING_SIZE_16

           h245.conferenceIndication  conferenceIndication
               Unsigned 32-bit integer
               h245.ConferenceIndication

           h245.conferenceRequest  conferenceRequest
               Unsigned 32-bit integer
               h245.ConferenceRequest

           h245.conferenceResponse  conferenceResponse
               Unsigned 32-bit integer
               h245.ConferenceResponse

           h245.connectionIdentifier  connectionIdentifier
               No value
               h245.ConnectionIdentifier

           h245.connectionsNotAvailable  connectionsNotAvailable
               No value
               h245.NULL

           h245.constrainedBitstream  constrainedBitstream
               Boolean
               h245.BOOLEAN

           h245.containedThreads  containedThreads
               Unsigned 32-bit integer
               h245.T_containedThreads

           h245.containedThreads_item  containedThreads item
               Unsigned 32-bit integer
               h245.INTEGER_0_15

           h245.controlFieldOctets  controlFieldOctets
               Unsigned 32-bit integer
               h245.T_controlFieldOctets

           h245.controlOnMuxStream  controlOnMuxStream
               Boolean
               h245.BOOLEAN

           h245.controlledLoad  controlledLoad
               No value
               h245.NULL

           h245.crc12bit  crc12bit
               No value
               h245.NULL

           h245.crc16bit  crc16bit
               No value
               h245.NULL

           h245.crc16bitCapability  crc16bitCapability
               Boolean
               h245.BOOLEAN

           h245.crc20bit  crc20bit
               No value
               h245.NULL

           h245.crc28bit  crc28bit
               No value
               h245.NULL

           h245.crc32bit  crc32bit
               No value
               h245.NULL

           h245.crc32bitCapability  crc32bitCapability
               Boolean
               h245.BOOLEAN

           h245.crc4bit  crc4bit
               No value
               h245.NULL

           h245.crc8bit  crc8bit
               No value
               h245.NULL

           h245.crc8bitCapability  crc8bitCapability
               Boolean
               h245.BOOLEAN

           h245.crcDesired  crcDesired
               No value
               h245.T_crcDesired

           h245.crcLength  crcLength
               Unsigned 32-bit integer
               h245.AL1CrcLength

           h245.crcNotUsed  crcNotUsed
               No value
               h245.NULL

           h245.currentInterval  currentInterval
               Unsigned 32-bit integer
               h245.INTEGER_0_65535

           h245.currentIntervalInformation  currentIntervalInformation
               No value
               h245.NULL

           h245.currentMaximumBitRate  currentMaximumBitRate
               Unsigned 32-bit integer
               h245.MaximumBitRate

           h245.currentPictureHeaderRepetition  currentPictureHeaderRepetition
               Boolean
               h245.BOOLEAN

           h245.custom  custom
               Unsigned 32-bit integer
               h245.SEQUENCE_SIZE_1_256_OF_RTPH263VideoRedundancyFrameMapping

           h245.customMPI  customMPI
               Unsigned 32-bit integer
               h245.INTEGER_1_2048

           h245.customPCF  customPCF
               Unsigned 32-bit integer
               h245.T_customPCF

           h245.customPCF_item  customPCF item
               No value
               h245.T_customPCF_item

           h245.customPictureClockFrequency  customPictureClockFrequency
               Unsigned 32-bit integer
               h245.SET_SIZE_1_16_OF_CustomPictureClockFrequency

           h245.customPictureFormat  customPictureFormat
               Unsigned 32-bit integer
               h245.SET_SIZE_1_16_OF_CustomPictureFormat

           h245.data  data
               Byte array
               h245.T_nsd_data

           h245.dataMode  dataMode
               No value
               h245.DataMode

           h245.dataPartitionedSlices  dataPartitionedSlices
               Boolean
               h245.BOOLEAN

           h245.dataType  dataType
               Unsigned 32-bit integer
               h245.DataType

           h245.dataTypeALCombinationNotSupported  dataTypeALCombinationNotSupported
               No value
               h245.NULL

           h245.dataTypeNotAvailable  dataTypeNotAvailable
               No value
               h245.NULL

           h245.dataTypeNotSupported  dataTypeNotSupported
               No value
               h245.NULL

           h245.dataWithAL1  dataWithAL1
               Boolean
               h245.BOOLEAN

           h245.dataWithAL1M  dataWithAL1M
               Boolean
               h245.BOOLEAN

           h245.dataWithAL2  dataWithAL2
               Boolean
               h245.BOOLEAN

           h245.dataWithAL2M  dataWithAL2M
               Boolean
               h245.BOOLEAN

           h245.dataWithAL3  dataWithAL3
               Boolean
               h245.BOOLEAN

           h245.dataWithAL3M  dataWithAL3M
               Boolean
               h245.BOOLEAN

           h245.deActivate  deActivate
               No value
               h245.NULL

           h245.deblockingFilterMode  deblockingFilterMode
               Boolean
               h245.BOOLEAN

           h245.decentralizedConferenceMC  decentralizedConferenceMC
               Boolean
               h245.BOOLEAN

           h245.decision  decision
               Unsigned 32-bit integer
               h245.T_decision

           h245.deniedBroadcastMyLogicalChannel  deniedBroadcastMyLogicalChannel
               No value
               h245.NULL

           h245.deniedChairToken  deniedChairToken
               No value
               h245.NULL

           h245.deniedMakeTerminalBroadcaster  deniedMakeTerminalBroadcaster
               No value
               h245.NULL

           h245.deniedSendThisSource  deniedSendThisSource
               No value
               h245.NULL

           h245.depFec  depFec
               Unsigned 32-bit integer
               h245.DepFECData

           h245.depFecCapability  depFecCapability
               Unsigned 32-bit integer
               h245.DepFECCapability

           h245.depFecMode  depFecMode
               Unsigned 32-bit integer
               h245.DepFECMode

           h245.descriptorCapacityExceeded  descriptorCapacityExceeded
               No value
               h245.NULL

           h245.descriptorTooComplex  descriptorTooComplex
               No value
               h245.NULL

           h245.desired  desired
               No value
               h245.NULL

           h245.destination  destination
               No value
               h245.TerminalLabel

           h245.dialingInformation  dialingInformation
               Unsigned 32-bit integer
               h245.DialingInformation

           h245.differentPort  differentPort
               No value
               h245.T_differentPort

           h245.differential  differential
               Unsigned 32-bit integer
               h245.SET_SIZE_1_65535_OF_DialingInformationNumber

           h245.digPhotoHighProg  digPhotoHighProg
               Boolean
               h245.BOOLEAN

           h245.digPhotoHighSeq  digPhotoHighSeq
               Boolean
               h245.BOOLEAN

           h245.digPhotoLow  digPhotoLow
               Boolean
               h245.BOOLEAN

           h245.digPhotoMedProg  digPhotoMedProg
               Boolean
               h245.BOOLEAN

           h245.digPhotoMedSeq  digPhotoMedSeq
               Boolean
               h245.BOOLEAN

           h245.direction  direction
               Unsigned 32-bit integer
               h245.EncryptionUpdateDirection

           h245.disconnect  disconnect
               No value
               h245.NULL

           h245.distributedAudio  distributedAudio
               Boolean
               h245.BOOLEAN

           h245.distributedControl  distributedControl
               Boolean
               h245.BOOLEAN

           h245.distributedData  distributedData
               Unsigned 32-bit integer
               h245.SEQUENCE_OF_DataApplicationCapability

           h245.distributedVideo  distributedVideo
               Boolean
               h245.BOOLEAN

           h245.distribution  distribution
               Unsigned 32-bit integer
               h245.T_distribution

           h245.doContinuousIndependentProgressions  doContinuousIndependentProgressions
               No value
               h245.NULL

           h245.doContinuousProgressions  doContinuousProgressions
               No value
               h245.NULL

           h245.doOneIndependentProgression  doOneIndependentProgression
               No value
               h245.NULL

           h245.doOneProgression  doOneProgression
               No value
               h245.NULL

           h245.domainBased  domainBased
               String
               h245.IA5String_SIZE_1_64

           h245.dropConference  dropConference
               No value
               h245.NULL

           h245.dropTerminal  dropTerminal
               No value
               h245.TerminalLabel

           h245.dscpValue  dscpValue
               Unsigned 32-bit integer
               h245.INTEGER_0_63

           h245.dsm_cc  dsm-cc
               Unsigned 32-bit integer
               h245.DataProtocolCapability

           h245.dsvdControl  dsvdControl
               No value
               h245.NULL

           h245.dtmf  dtmf
               No value
               h245.NULL

           h245.duration  duration
               Unsigned 32-bit integer
               h245.INTEGER_1_65535

           h245.dynamicPictureResizingByFour  dynamicPictureResizingByFour
               Boolean
               h245.BOOLEAN

           h245.dynamicPictureResizingSixteenthPel  dynamicPictureResizingSixteenthPel
               Boolean
               h245.BOOLEAN

           h245.dynamicRTPPayloadType  dynamicRTPPayloadType
               Unsigned 32-bit integer
               h245.INTEGER_96_127

           h245.dynamicWarpingHalfPel  dynamicWarpingHalfPel
               Boolean
               h245.BOOLEAN

           h245.dynamicWarpingSixteenthPel  dynamicWarpingSixteenthPel
               Boolean
               h245.BOOLEAN

           h245.e164Address  e164Address
               String
               h245.T_e164Address

           h245.eRM  eRM
               No value
               h245.T_eRM

           h245.elementList  elementList
               Unsigned 32-bit integer
               h245.T_elementList

           h245.elements  elements
               Unsigned 32-bit integer
               h245.SEQUENCE_OF_MultiplePayloadStreamElement

           h245.encrypted  encrypted
               Byte array
               h245.OCTET_STRING

           h245.encryptedAlphanumeric  encryptedAlphanumeric
               No value
               h245.EncryptedAlphanumeric

           h245.encryptedBasicString  encryptedBasicString
               No value
               h245.NULL

           h245.encryptedGeneralString  encryptedGeneralString
               No value
               h245.NULL

           h245.encryptedIA5String  encryptedIA5String
               No value
               h245.NULL

           h245.encryptedSignalType  encryptedSignalType
               Byte array
               h245.OCTET_STRING_SIZE_1

           h245.encryptionAlgorithmID  encryptionAlgorithmID
               No value
               h245.T_encryptionAlgorithmID

           h245.encryptionAuthenticationAndIntegrity  encryptionAuthenticationAndIntegrity
               No value
               h245.EncryptionAuthenticationAndIntegrity

           h245.encryptionCapability  encryptionCapability
               Unsigned 32-bit integer
               h245.EncryptionCapability

           h245.encryptionCommand  encryptionCommand
               Unsigned 32-bit integer
               h245.EncryptionCommand

           h245.encryptionData  encryptionData
               Unsigned 32-bit integer
               h245.EncryptionMode

           h245.encryptionIVRequest  encryptionIVRequest
               No value
               h245.NULL

           h245.encryptionMode  encryptionMode
               Unsigned 32-bit integer
               h245.EncryptionMode

           h245.encryptionSE  encryptionSE
               Byte array
               h245.OCTET_STRING

           h245.encryptionSync  encryptionSync
               No value
               h245.EncryptionSync

           h245.encryptionUpdate  encryptionUpdate
               No value
               h245.EncryptionSync

           h245.encryptionUpdateAck  encryptionUpdateAck
               No value
               h245.T_encryptionUpdateAck

           h245.encryptionUpdateCommand  encryptionUpdateCommand
               No value
               h245.T_encryptionUpdateCommand

           h245.encryptionUpdateRequest  encryptionUpdateRequest
               No value
               h245.EncryptionUpdateRequest

           h245.endSessionCommand  endSessionCommand
               Unsigned 32-bit integer
               h245.EndSessionCommand

           h245.enhanced  enhanced
               No value
               h245.T_enhanced

           h245.enhancedReferencePicSelect  enhancedReferencePicSelect
               No value
               h245.T_enhancedReferencePicSelect

           h245.enhancementLayerInfo  enhancementLayerInfo
               No value
               h245.EnhancementLayerInfo

           h245.enhancementOptions  enhancementOptions
               No value
               h245.EnhancementOptions

           h245.enterExtensionAddress  enterExtensionAddress
               No value
               h245.NULL

           h245.enterH243ConferenceID  enterH243ConferenceID
               No value
               h245.NULL

           h245.enterH243Password  enterH243Password
               No value
               h245.NULL

           h245.enterH243TerminalID  enterH243TerminalID
               No value
               h245.NULL

           h245.entryNumbers  entryNumbers
               Unsigned 32-bit integer
               h245.SET_SIZE_1_15_OF_MultiplexTableEntryNumber

           h245.equaliseDelay  equaliseDelay
               No value
               h245.NULL

           h245.errorCompensation  errorCompensation
               Boolean
               h245.BOOLEAN

           h245.errorCorrection  errorCorrection
               Unsigned 32-bit integer
               h245.Cmd_errorCorrection

           h245.errorCorrectionOnly  errorCorrectionOnly
               Boolean
               h245.BOOLEAN

           h245.escrowID  escrowID
               Object Identifier
               h245.OBJECT_IDENTIFIER

           h245.escrowValue  escrowValue
               Byte array
               h245.BIT_STRING_SIZE_1_65535

           h245.escrowentry  escrowentry
               Unsigned 32-bit integer
               h245.SEQUENCE_SIZE_1_256_OF_EscrowData

           h245.estimatedReceivedJitterExponent  estimatedReceivedJitterExponent
               Unsigned 32-bit integer
               h245.INTEGER_0_7

           h245.estimatedReceivedJitterMantissa  estimatedReceivedJitterMantissa
               Unsigned 32-bit integer
               h245.INTEGER_0_3

           h245.excessiveError  excessiveError
               No value
               h245.T_excessiveError

           h245.expirationTime  expirationTime
               Unsigned 32-bit integer
               h245.INTEGER_0_4294967295

           h245.extendedAlphanumeric  extendedAlphanumeric
               No value
               h245.NULL

           h245.extendedPAR  extendedPAR
               Unsigned 32-bit integer
               h245.T_extendedPAR

           h245.extendedPAR_item  extendedPAR item
               No value
               h245.T_extendedPAR_item

           h245.extendedVideoCapability  extendedVideoCapability
               No value
               h245.ExtendedVideoCapability

           h245.extensionAddress  extensionAddress
               Byte array
               h245.TerminalID

           h245.extensionAddressResponse  extensionAddressResponse
               No value
               h245.T_extensionAddressResponse

           h245.externalReference  externalReference
               Byte array
               h245.OCTET_STRING_SIZE_1_255

           h245.fec  fec
               Unsigned 32-bit integer
               h245.FECData

           h245.fecCapability  fecCapability
               No value
               h245.FECCapability

           h245.fecMode  fecMode
               No value
               h245.FECMode

           h245.fecScheme  fecScheme
               Object Identifier
               h245.OBJECT_IDENTIFIER

           h245.field  field
               Object Identifier
               h245.OBJECT_IDENTIFIER

           h245.fillBitRemoval  fillBitRemoval
               Boolean
               h245.BOOLEAN

           h245.finite  finite
               Unsigned 32-bit integer
               h245.INTEGER_0_16

           h245.firstGOB  firstGOB
               Unsigned 32-bit integer
               h245.INTEGER_0_17

           h245.firstMB  firstMB
               Unsigned 32-bit integer
               h245.INTEGER_1_8192

           h245.fiveChannels3_0_2_0  fiveChannels3-0-2-0
               Boolean
               h245.BOOLEAN

           h245.fiveChannels3_2  fiveChannels3-2
               Boolean
               h245.BOOLEAN

           h245.fixedPointIDCT0  fixedPointIDCT0
               Boolean
               h245.BOOLEAN

           h245.floorRequested  floorRequested
               No value
               h245.TerminalLabel

           h245.flowControlCommand  flowControlCommand
               No value
               h245.FlowControlCommand

           h245.flowControlIndication  flowControlIndication
               No value
               h245.FlowControlIndication

           h245.flowControlToZero  flowControlToZero
               Boolean
               h245.BOOLEAN

           h245.forwardLogicalChannelDependency  forwardLogicalChannelDependency
               Unsigned 32-bit integer
               h245.LogicalChannelNumber

           h245.forwardLogicalChannelNumber  forwardLogicalChannelNumber
               Unsigned 32-bit integer
               h245.OLC_fw_lcn

           h245.forwardLogicalChannelParameters  forwardLogicalChannelParameters
               No value
               h245.T_forwardLogicalChannelParameters

           h245.forwardMaximumSDUSize  forwardMaximumSDUSize
               Unsigned 32-bit integer
               h245.INTEGER_0_65535

           h245.forwardMultiplexAckParameters  forwardMultiplexAckParameters
               Unsigned 32-bit integer
               h245.T_forwardMultiplexAckParameters

           h245.fourChannels2_0_2_0  fourChannels2-0-2-0
               Boolean
               h245.BOOLEAN

           h245.fourChannels2_2  fourChannels2-2
               Boolean
               h245.BOOLEAN

           h245.fourChannels3_1  fourChannels3-1
               Boolean
               h245.BOOLEAN

           h245.frameSequence  frameSequence
               Unsigned 32-bit integer
               h245.T_frameSequence

           h245.frameSequence_item  frameSequence item
               Unsigned 32-bit integer
               h245.INTEGER_0_255

           h245.frameToThreadMapping  frameToThreadMapping
               Unsigned 32-bit integer
               h245.T_frameToThreadMapping

           h245.framed  framed
               No value
               h245.NULL

           h245.framesBetweenSyncPoints  framesBetweenSyncPoints
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.framesPerSecond  framesPerSecond
               Unsigned 32-bit integer
               h245.INTEGER_0_15

           h245.fullPictureFreeze  fullPictureFreeze
               Boolean
               h245.BOOLEAN

           h245.fullPictureSnapshot  fullPictureSnapshot
               Boolean
               h245.BOOLEAN

           h245.functionNotSupported  functionNotSupported
               No value
               h245.FunctionNotSupported

           h245.functionNotUnderstood  functionNotUnderstood
               Unsigned 32-bit integer
               h245.FunctionNotUnderstood

           h245.g3FacsMH200x100  g3FacsMH200x100
               Boolean
               h245.BOOLEAN

           h245.g3FacsMH200x200  g3FacsMH200x200
               Boolean
               h245.BOOLEAN

           h245.g4FacsMMR200x100  g4FacsMMR200x100
               Boolean
               h245.BOOLEAN

           h245.g4FacsMMR200x200  g4FacsMMR200x200
               Boolean
               h245.BOOLEAN

           h245.g711Alaw56k  g711Alaw56k
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.g711Alaw64k  g711Alaw64k
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.g711Ulaw56k  g711Ulaw56k
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.g711Ulaw64k  g711Ulaw64k
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.g722_48k  g722-48k
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.g722_56k  g722-56k
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.g722_64k  g722-64k
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.g7231  g7231
               No value
               h245.T_g7231

           h245.g7231AnnexCCapability  g7231AnnexCCapability
               No value
               h245.G7231AnnexCCapability

           h245.g7231AnnexCMode  g7231AnnexCMode
               No value
               h245.G7231AnnexCMode

           h245.g723AnnexCAudioMode  g723AnnexCAudioMode
               No value
               h245.G723AnnexCAudioMode

           h245.g728  g728
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.g729  g729
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.g729AnnexA  g729AnnexA
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.g729AnnexAwAnnexB  g729AnnexAwAnnexB
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.g729Extensions  g729Extensions
               No value
               h245.G729Extensions

           h245.g729wAnnexB  g729wAnnexB
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.gatewayAddress  gatewayAddress
               Unsigned 32-bit integer
               h245.SET_SIZE_1_256_OF_Q2931Address

           h245.generalString  generalString
               No value
               h245.NULL

           h245.genericAudioCapability  genericAudioCapability
               No value
               h245.GenericCapability

           h245.genericAudioMode  genericAudioMode
               No value
               h245.GenericCapability

           h245.genericCommand  genericCommand
               No value
               h245.GenericMessage

           h245.genericControlCapability  genericControlCapability
               No value
               h245.GenericCapability

           h245.genericDataCapability  genericDataCapability
               No value
               h245.GenericCapability

           h245.genericDataMode  genericDataMode
               No value
               h245.GenericCapability

           h245.genericH235SecurityCapability  genericH235SecurityCapability
               No value
               h245.GenericCapability

           h245.genericIndication  genericIndication
               No value
               h245.GenericMessage

           h245.genericInformation  genericInformation
               Unsigned 32-bit integer
               h245.SEQUENCE_OF_GenericInformation

           h245.genericModeParameters  genericModeParameters
               No value
               h245.GenericCapability

           h245.genericMultiplexCapability  genericMultiplexCapability
               No value
               h245.GenericCapability

           h245.genericParameter  genericParameter
               Unsigned 32-bit integer
               h245.SEQUENCE_OF_GenericParameter

           h245.genericRequest  genericRequest
               No value
               h245.GenericMessage

           h245.genericResponse  genericResponse
               No value
               h245.GenericMessage

           h245.genericTransportParameters  genericTransportParameters
               No value
               h245.GenericTransportParameters

           h245.genericUserInputCapability  genericUserInputCapability
               No value
               h245.GenericCapability

           h245.genericVideoCapability  genericVideoCapability
               No value
               h245.GenericCapability

           h245.genericVideoMode  genericVideoMode
               No value
               h245.GenericCapability

           h245.golay24_12  golay24-12
               No value
               h245.NULL

           h245.grantedBroadcastMyLogicalChannel  grantedBroadcastMyLogicalChannel
               No value
               h245.NULL

           h245.grantedChairToken  grantedChairToken
               No value
               h245.NULL

           h245.grantedMakeTerminalBroadcaster  grantedMakeTerminalBroadcaster
               No value
               h245.NULL

           h245.grantedSendThisSource  grantedSendThisSource
               No value
               h245.NULL

           h245.gsmEnhancedFullRate  gsmEnhancedFullRate
               No value
               h245.GSMAudioCapability

           h245.gsmFullRate  gsmFullRate
               No value
               h245.GSMAudioCapability

           h245.gsmHalfRate  gsmHalfRate
               No value
               h245.GSMAudioCapability

           h245.gstn  gstn
               No value
               h245.NULL

           h245.gstnOptions  gstnOptions
               Unsigned 32-bit integer
               h245.T_gstnOptions

           h245.guaranteedQOS  guaranteedQOS
               No value
               h245.NULL

           h245.h221NonStandard  h221NonStandard
               No value
               h245.H221NonStandardID

           h245.h222Capability  h222Capability
               No value
               h245.H222Capability

           h245.h222DataPartitioning  h222DataPartitioning
               Unsigned 32-bit integer
               h245.DataProtocolCapability

           h245.h222LogicalChannelParameters  h222LogicalChannelParameters
               No value
               h245.H222LogicalChannelParameters

           h245.h223AnnexA  h223AnnexA
               Boolean
               h245.BOOLEAN

           h245.h223AnnexADoubleFlag  h223AnnexADoubleFlag
               Boolean
               h245.BOOLEAN

           h245.h223AnnexB  h223AnnexB
               Boolean
               h245.BOOLEAN

           h245.h223AnnexBwithHeader  h223AnnexBwithHeader
               Boolean
               h245.BOOLEAN

           h245.h223AnnexCCapability  h223AnnexCCapability
               No value
               h245.H223AnnexCCapability

           h245.h223Capability  h223Capability
               No value
               h245.H223Capability

           h245.h223LogicalChannelParameters  h223LogicalChannelParameters
               No value
               h245.OLC_fw_h223_params

           h245.h223ModeChange  h223ModeChange
               Unsigned 32-bit integer
               h245.T_h223ModeChange

           h245.h223ModeParameters  h223ModeParameters
               No value
               h245.H223ModeParameters

           h245.h223MultiplexReconfiguration  h223MultiplexReconfiguration
               Unsigned 32-bit integer
               h245.H223MultiplexReconfiguration

           h245.h223MultiplexTableCapability  h223MultiplexTableCapability
               Unsigned 32-bit integer
               h245.T_h223MultiplexTableCapability

           h245.h223SkewIndication  h223SkewIndication
               No value
               h245.H223SkewIndication

           h245.h224  h224
               Unsigned 32-bit integer
               h245.DataProtocolCapability

           h245.h2250Capability  h2250Capability
               No value
               h245.H2250Capability

           h245.h2250LogicalChannelAckParameters  h2250LogicalChannelAckParameters
               No value
               h245.H2250LogicalChannelAckParameters

           h245.h2250LogicalChannelParameters  h2250LogicalChannelParameters
               No value
               h245.H2250LogicalChannelParameters

           h245.h2250MaximumSkewIndication  h2250MaximumSkewIndication
               No value
               h245.H2250MaximumSkewIndication

           h245.h2250ModeParameters  h2250ModeParameters
               No value
               h245.H2250ModeParameters

           h245.h233AlgorithmIdentifier  h233AlgorithmIdentifier
               Unsigned 32-bit integer
               h245.SequenceNumber

           h245.h233Encryption  h233Encryption
               No value
               h245.NULL

           h245.h233EncryptionReceiveCapability  h233EncryptionReceiveCapability
               No value
               h245.T_h233EncryptionReceiveCapability

           h245.h233EncryptionTransmitCapability  h233EncryptionTransmitCapability
               Boolean
               h245.BOOLEAN

           h245.h233IVResponseTime  h233IVResponseTime
               Unsigned 32-bit integer
               h245.INTEGER_0_255

           h245.h235Control  h235Control
               No value
               h245.NonStandardParameter

           h245.h235Key  h235Key
               Byte array
               h245.OCTET_STRING_SIZE_1_65535

           h245.h235Media  h235Media
               No value
               h245.H235Media

           h245.h235Mode  h235Mode
               No value
               h245.H235Mode

           h245.h235SecurityCapability  h235SecurityCapability
               No value
               h245.H235SecurityCapability

           h245.h261VideoCapability  h261VideoCapability
               No value
               h245.H261VideoCapability

           h245.h261VideoMode  h261VideoMode
               No value
               h245.H261VideoMode

           h245.h261aVideoPacketization  h261aVideoPacketization
               Boolean
               h245.BOOLEAN

           h245.h262VideoCapability  h262VideoCapability
               No value
               h245.H262VideoCapability

           h245.h262VideoMode  h262VideoMode
               No value
               h245.H262VideoMode

           h245.h263Options  h263Options
               No value
               h245.H263Options

           h245.h263Version3Options  h263Version3Options
               No value
               h245.H263Version3Options

           h245.h263VideoCapability  h263VideoCapability
               No value
               h245.H263VideoCapability

           h245.h263VideoCoupledModes  h263VideoCoupledModes
               Unsigned 32-bit integer
               h245.SET_SIZE_1_16_OF_H263ModeComboFlags

           h245.h263VideoMode  h263VideoMode
               No value
               h245.H263VideoMode

           h245.h263VideoUncoupledModes  h263VideoUncoupledModes
               No value
               h245.H263ModeComboFlags

           h245.h310SeparateVCStack  h310SeparateVCStack
               No value
               h245.NULL

           h245.h310SingleVCStack  h310SingleVCStack
               No value
               h245.NULL

           h245.hdlcFrameTunnelingwSAR  hdlcFrameTunnelingwSAR
               No value
               h245.NULL

           h245.hdlcFrameTunnelling  hdlcFrameTunnelling
               No value
               h245.NULL

           h245.hdlcParameters  hdlcParameters
               No value
               h245.V76HDLCParameters

           h245.hdtvProg  hdtvProg
               Boolean
               h245.BOOLEAN

           h245.hdtvSeq  hdtvSeq
               Boolean
               h245.BOOLEAN

           h245.headerFEC  headerFEC
               Unsigned 32-bit integer
               h245.AL1HeaderFEC

           h245.headerFormat  headerFormat
               Unsigned 32-bit integer
               h245.T_headerFormat

           h245.height  height
               Unsigned 32-bit integer
               h245.INTEGER_1_255

           h245.highRateMode0  highRateMode0
               Unsigned 32-bit integer
               h245.INTEGER_27_78

           h245.highRateMode1  highRateMode1
               Unsigned 32-bit integer
               h245.INTEGER_27_78

           h245.higherBitRate  higherBitRate
               Unsigned 32-bit integer
               h245.INTEGER_1_65535

           h245.highestEntryNumberProcessed  highestEntryNumberProcessed
               Unsigned 32-bit integer
               h245.CapabilityTableEntryNumber

           h245.hookflash  hookflash
               No value
               h245.NULL

           h245.hrd_B  hrd-B
               Unsigned 32-bit integer
               h245.INTEGER_0_524287

           h245.iA5String  iA5String
               No value
               h245.NULL

           h245.iP6Address  iP6Address
               No value
               h245.T_iP6Address

           h245.iPAddress  iPAddress
               No value
               h245.T_iPAddress

           h245.iPSourceRouteAddress  iPSourceRouteAddress
               No value
               h245.T_iPSourceRouteAddress

           h245.iPXAddress  iPXAddress
               No value
               h245.T_iPXAddress

           h245.identicalNumbers  identicalNumbers
               No value
               h245.NULL

           h245.improvedPBFramesMode  improvedPBFramesMode
               Boolean
               h245.BOOLEAN

           h245.independentSegmentDecoding  independentSegmentDecoding
               Boolean
               h245.BOOLEAN

           h245.indication  indication
               Unsigned 32-bit integer
               h245.IndicationMessage

           h245.infinite  infinite
               No value
               h245.NULL

           h245.infoNotAvailable  infoNotAvailable
               Unsigned 32-bit integer
               h245.INTEGER_1_65535

           h245.insufficientBandwidth  insufficientBandwidth
               No value
               h245.NULL

           h245.insufficientResources  insufficientResources
               No value
               h245.NULL

           h245.integrityCapability  integrityCapability
               No value
               h245.IntegrityCapability

           h245.interlacedFields  interlacedFields
               Boolean
               h245.BOOLEAN

           h245.internationalNumber  internationalNumber
               String
               h245.NumericString_SIZE_1_16

           h245.invalidDependentChannel  invalidDependentChannel
               No value
               h245.NULL

           h245.invalidSessionID  invalidSessionID
               No value
               h245.NULL

           h245.ip_TCP  ip-TCP
               No value
               h245.NULL

           h245.ip_UDP  ip-UDP
               No value
               h245.NULL

           h245.is11172AudioCapability  is11172AudioCapability
               No value
               h245.IS11172AudioCapability

           h245.is11172AudioMode  is11172AudioMode
               No value
               h245.IS11172AudioMode

           h245.is11172VideoCapability  is11172VideoCapability
               No value
               h245.IS11172VideoCapability

           h245.is11172VideoMode  is11172VideoMode
               No value
               h245.IS11172VideoMode

           h245.is13818AudioCapability  is13818AudioCapability
               No value
               h245.IS13818AudioCapability

           h245.is13818AudioMode  is13818AudioMode
               No value
               h245.IS13818AudioMode

           h245.isdnOptions  isdnOptions
               Unsigned 32-bit integer
               h245.T_isdnOptions

           h245.issueQuery  issueQuery
               No value
               h245.NULL

           h245.iv  iv
               Byte array
               h245.OCTET_STRING

           h245.iv16  iv16
               Byte array
               h245.IV16

           h245.iv8  iv8
               Byte array
               h245.IV8

           h245.jbig200x200Prog  jbig200x200Prog
               Boolean
               h245.BOOLEAN

           h245.jbig200x200Seq  jbig200x200Seq
               Boolean
               h245.BOOLEAN

           h245.jbig300x300Prog  jbig300x300Prog
               Boolean
               h245.BOOLEAN

           h245.jbig300x300Seq  jbig300x300Seq
               Boolean
               h245.BOOLEAN

           h245.jitterIndication  jitterIndication
               No value
               h245.JitterIndication

           h245.keyProtectionMethod  keyProtectionMethod
               No value
               h245.KeyProtectionMethod

           h245.lcse  lcse
               No value
               h245.NULL

           h245.linesPerFrame  linesPerFrame
               Unsigned 32-bit integer
               h245.INTEGER_0_16383

           h245.localAreaAddress  localAreaAddress
               Unsigned 32-bit integer
               h245.TransportAddress

           h245.localQoS  localQoS
               Boolean
               h245.BOOLEAN

           h245.localTCF  localTCF
               No value
               h245.NULL

           h245.logical  logical
               No value
               h245.NULL

           h245.logicalChannelActive  logicalChannelActive
               No value
               h245.NULL

           h245.logicalChannelInactive  logicalChannelInactive
               No value
               h245.NULL

           h245.logicalChannelLoop  logicalChannelLoop
               Unsigned 32-bit integer
               h245.LogicalChannelNumber

           h245.logicalChannelNumber  logicalChannelNumber
               Unsigned 32-bit integer
               h245.T_logicalChannelNum

           h245.logicalChannelNumber1  logicalChannelNumber1
               Unsigned 32-bit integer
               h245.LogicalChannelNumber

           h245.logicalChannelNumber2  logicalChannelNumber2
               Unsigned 32-bit integer
               h245.LogicalChannelNumber

           h245.logicalChannelRateAcknowledge  logicalChannelRateAcknowledge
               No value
               h245.LogicalChannelRateAcknowledge

           h245.logicalChannelRateReject  logicalChannelRateReject
               No value
               h245.LogicalChannelRateReject

           h245.logicalChannelRateRelease  logicalChannelRateRelease
               No value
               h245.LogicalChannelRateRelease

           h245.logicalChannelRateRequest  logicalChannelRateRequest
               No value
               h245.LogicalChannelRateRequest

           h245.logicalChannelSwitchingCapability  logicalChannelSwitchingCapability
               Boolean
               h245.BOOLEAN

           h245.longInterleaver  longInterleaver
               Boolean
               h245.BOOLEAN

           h245.longTermPictureIndex  longTermPictureIndex
               Unsigned 32-bit integer
               h245.INTEGER_0_255

           h245.loopBackTestCapability  loopBackTestCapability
               Boolean
               h245.BOOLEAN

           h245.loopbackTestProcedure  loopbackTestProcedure
               Boolean
               h245.BOOLEAN

           h245.loose  loose
               No value
               h245.NULL

           h245.lostPartialPicture  lostPartialPicture
               No value
               h245.T_lostPartialPicture

           h245.lostPicture  lostPicture
               Unsigned 32-bit integer
               h245.SEQUENCE_OF_PictureReference

           h245.lowFrequencyEnhancement  lowFrequencyEnhancement
               Boolean
               h245.BOOLEAN

           h245.lowRateMode0  lowRateMode0
               Unsigned 32-bit integer
               h245.INTEGER_23_66

           h245.lowRateMode1  lowRateMode1
               Unsigned 32-bit integer
               h245.INTEGER_23_66

           h245.lowerBitRate  lowerBitRate
               Unsigned 32-bit integer
               h245.INTEGER_1_65535

           h245.luminanceSampleRate  luminanceSampleRate
               Unsigned 32-bit integer
               h245.INTEGER_0_4294967295

           h245.mCTerminalIDResponse  mCTerminalIDResponse
               No value
               h245.T_mCTerminalIDResponse

           h245.mPI  mPI
               No value
               h245.T_mPI

           h245.mREJCapability  mREJCapability
               Boolean
               h245.BOOLEAN

           h245.mSREJ  mSREJ
               No value
               h245.NULL

           h245.maintenanceLoopAck  maintenanceLoopAck
               No value
               h245.MaintenanceLoopAck

           h245.maintenanceLoopOffCommand  maintenanceLoopOffCommand
               No value
               h245.MaintenanceLoopOffCommand

           h245.maintenanceLoopReject  maintenanceLoopReject
               No value
               h245.MaintenanceLoopReject

           h245.maintenanceLoopRequest  maintenanceLoopRequest
               No value
               h245.MaintenanceLoopRequest

           h245.makeMeChair  makeMeChair
               No value
               h245.NULL

           h245.makeMeChairResponse  makeMeChairResponse
               Unsigned 32-bit integer
               h245.T_makeMeChairResponse

           h245.makeTerminalBroadcaster  makeTerminalBroadcaster
               No value
               h245.TerminalLabel

           h245.makeTerminalBroadcasterResponse  makeTerminalBroadcasterResponse
               Unsigned 32-bit integer
               h245.T_makeTerminalBroadcasterResponse

           h245.manufacturerCode  manufacturerCode
               Unsigned 32-bit integer
               h245.T_manufacturerCode

           h245.master  master
               No value
               h245.NULL

           h245.masterActivate  masterActivate
               No value
               h245.NULL

           h245.masterSlaveConflict  masterSlaveConflict
               No value
               h245.NULL

           h245.masterSlaveDetermination  masterSlaveDetermination
               No value
               h245.MasterSlaveDetermination

           h245.masterSlaveDeterminationAck  masterSlaveDeterminationAck
               No value
               h245.MasterSlaveDeterminationAck

           h245.masterSlaveDeterminationReject  masterSlaveDeterminationReject
               No value
               h245.MasterSlaveDeterminationReject

           h245.masterSlaveDeterminationRelease  masterSlaveDeterminationRelease
               No value
               h245.MasterSlaveDeterminationRelease

           h245.masterToSlave  masterToSlave
               No value
               h245.NULL

           h245.maxAl_sduAudioFrames  maxAl-sduAudioFrames
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.maxBitRate  maxBitRate
               Unsigned 32-bit integer
               h245.INTEGER_1_19200

           h245.maxCustomPictureHeight  maxCustomPictureHeight
               Unsigned 32-bit integer
               h245.INTEGER_1_2048

           h245.maxCustomPictureWidth  maxCustomPictureWidth
               Unsigned 32-bit integer
               h245.INTEGER_1_2048

           h245.maxH223MUXPDUsize  maxH223MUXPDUsize
               Unsigned 32-bit integer
               h245.INTEGER_1_65535

           h245.maxMUXPDUSizeCapability  maxMUXPDUSizeCapability
               Boolean
               h245.BOOLEAN

           h245.maxNTUSize  maxNTUSize
               Unsigned 32-bit integer
               h245.INTEGER_0_65535

           h245.maxNumberOfAdditionalConnections  maxNumberOfAdditionalConnections
               Unsigned 32-bit integer
               h245.INTEGER_1_65535

           h245.maxPendingReplacementFor  maxPendingReplacementFor
               Unsigned 32-bit integer
               h245.INTEGER_0_255

           h245.maxPktSize  maxPktSize
               Unsigned 32-bit integer
               h245.INTEGER_1_4294967295

           h245.maxWindowSizeCapability  maxWindowSizeCapability
               Unsigned 32-bit integer
               h245.INTEGER_1_127

           h245.maximumAL1MPDUSize  maximumAL1MPDUSize
               Unsigned 32-bit integer
               h245.INTEGER_0_65535

           h245.maximumAL2MSDUSize  maximumAL2MSDUSize
               Unsigned 32-bit integer
               h245.INTEGER_0_65535

           h245.maximumAL3MSDUSize  maximumAL3MSDUSize
               Unsigned 32-bit integer
               h245.INTEGER_0_65535

           h245.maximumAl2SDUSize  maximumAl2SDUSize
               Unsigned 32-bit integer
               h245.INTEGER_0_65535

           h245.maximumAl3SDUSize  maximumAl3SDUSize
               Unsigned 32-bit integer
               h245.INTEGER_0_65535

           h245.maximumAudioDelayJitter  maximumAudioDelayJitter
               Unsigned 32-bit integer
               h245.INTEGER_0_1023

           h245.maximumBitRate  maximumBitRate
               Unsigned 32-bit integer
               h245.MaximumBitRate

           h245.maximumDelayJitter  maximumDelayJitter
               Unsigned 32-bit integer
               h245.INTEGER_0_1023

           h245.maximumElementListSize  maximumElementListSize
               Unsigned 32-bit integer
               h245.INTEGER_2_255

           h245.maximumHeaderInterval  maximumHeaderInterval
               No value
               h245.MaximumHeaderIntervalReq

           h245.maximumNestingDepth  maximumNestingDepth
               Unsigned 32-bit integer
               h245.INTEGER_1_15

           h245.maximumPayloadLength  maximumPayloadLength
               Unsigned 32-bit integer
               h245.INTEGER_1_65025

           h245.maximumSampleSize  maximumSampleSize
               Unsigned 32-bit integer
               h245.INTEGER_1_255

           h245.maximumSkew  maximumSkew
               Unsigned 32-bit integer
               h245.INTEGER_0_4095

           h245.maximumStringLength  maximumStringLength
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.maximumSubElementListSize  maximumSubElementListSize
               Unsigned 32-bit integer
               h245.INTEGER_2_255

           h245.mcCapability  mcCapability
               No value
               h245.T_mcCapability

           h245.mcLocationIndication  mcLocationIndication
               No value
               h245.MCLocationIndication

           h245.mcuNumber  mcuNumber
               Unsigned 32-bit integer
               h245.McuNumber

           h245.mediaCapability  mediaCapability
               Unsigned 32-bit integer
               h245.CapabilityTableEntryNumber

           h245.mediaChannel  mediaChannel
               Unsigned 32-bit integer
               h245.T_mediaChannel

           h245.mediaChannelCapabilities  mediaChannelCapabilities
               Unsigned 32-bit integer
               h245.SEQUENCE_SIZE_1_256_OF_MediaChannelCapability

           h245.mediaControlChannel  mediaControlChannel
               Unsigned 32-bit integer
               h245.T_mediaControlChannel

           h245.mediaControlGuaranteedDelivery  mediaControlGuaranteedDelivery
               Boolean
               h245.BOOLEAN

           h245.mediaDistributionCapability  mediaDistributionCapability
               Unsigned 32-bit integer
               h245.SEQUENCE_OF_MediaDistributionCapability

           h245.mediaGuaranteedDelivery  mediaGuaranteedDelivery
               Boolean
               h245.BOOLEAN

           h245.mediaLoop  mediaLoop
               Unsigned 32-bit integer
               h245.LogicalChannelNumber

           h245.mediaMode  mediaMode
               Unsigned 32-bit integer
               h245.T_mediaMode

           h245.mediaPacketization  mediaPacketization
               Unsigned 32-bit integer
               h245.T_mediaPacketization

           h245.mediaPacketizationCapability  mediaPacketizationCapability
               No value
               h245.MediaPacketizationCapability

           h245.mediaTransport  mediaTransport
               Unsigned 32-bit integer
               h245.MediaTransportType

           h245.mediaType  mediaType
               Unsigned 32-bit integer
               h245.T_mediaType

           h245.messageContent  messageContent
               Unsigned 32-bit integer
               h245.T_messageContent

           h245.messageContent_item  messageContent item
               No value
               h245.T_messageContent_item

           h245.messageIdentifier  messageIdentifier
               Unsigned 32-bit integer
               h245.CapabilityIdentifier

           h245.minCustomPictureHeight  minCustomPictureHeight
               Unsigned 32-bit integer
               h245.INTEGER_1_2048

           h245.minCustomPictureWidth  minCustomPictureWidth
               Unsigned 32-bit integer
               h245.INTEGER_1_2048

           h245.minPoliced  minPoliced
               Unsigned 32-bit integer
               h245.INTEGER_1_4294967295

           h245.miscellaneousCommand  miscellaneousCommand
               No value
               h245.MiscellaneousCommand

           h245.miscellaneousIndication  miscellaneousIndication
               No value
               h245.MiscellaneousIndication

           h245.mobile  mobile
               No value
               h245.NULL

           h245.mobileMultilinkFrameCapability  mobileMultilinkFrameCapability
               No value
               h245.T_mobileMultilinkFrameCapability

           h245.mobileMultilinkReconfigurationCommand  mobileMultilinkReconfigurationCommand
               No value
               h245.MobileMultilinkReconfigurationCommand

           h245.mobileMultilinkReconfigurationIndication  mobileMultilinkReconfigurationIndication
               No value
               h245.MobileMultilinkReconfigurationIndication

           h245.mobileOperationTransmitCapability  mobileOperationTransmitCapability
               No value
               h245.T_mobileOperationTransmitCapability

           h245.mode  mode
               Unsigned 32-bit integer
               h245.V76LCP_mode

           h245.modeChangeCapability  modeChangeCapability
               Boolean
               h245.BOOLEAN

           h245.modeCombos  modeCombos
               Unsigned 32-bit integer
               h245.SET_SIZE_1_16_OF_H263VideoModeCombos

           h245.modeUnavailable  modeUnavailable
               No value
               h245.NULL

           h245.modifiedQuantizationMode  modifiedQuantizationMode
               Boolean
               h245.BOOLEAN

           h245.mpuHorizMBs  mpuHorizMBs
               Unsigned 32-bit integer
               h245.INTEGER_1_128

           h245.mpuTotalNumber  mpuTotalNumber
               Unsigned 32-bit integer
               h245.INTEGER_1_65536

           h245.mpuVertMBs  mpuVertMBs
               Unsigned 32-bit integer
               h245.INTEGER_1_72

           h245.multiUniCastConference  multiUniCastConference
               Boolean
               h245.BOOLEAN

           h245.multicast  multicast
               No value
               h245.NULL

           h245.multicastAddress  multicastAddress
               Unsigned 32-bit integer
               h245.MulticastAddress

           h245.multicastCapability  multicastCapability
               Boolean
               h245.BOOLEAN

           h245.multicastChannelNotAllowed  multicastChannelNotAllowed
               No value
               h245.NULL

           h245.multichannelType  multichannelType
               Unsigned 32-bit integer
               h245.IS11172_multichannelType

           h245.multilingual  multilingual
               Boolean
               h245.BOOLEAN

           h245.multilinkIndication  multilinkIndication
               Unsigned 32-bit integer
               h245.MultilinkIndication

           h245.multilinkRequest  multilinkRequest
               Unsigned 32-bit integer
               h245.MultilinkRequest

           h245.multilinkResponse  multilinkResponse
               Unsigned 32-bit integer
               h245.MultilinkResponse

           h245.multiplePayloadStream  multiplePayloadStream
               No value
               h245.MultiplePayloadStream

           h245.multiplePayloadStreamCapability  multiplePayloadStreamCapability
               No value
               h245.MultiplePayloadStreamCapability

           h245.multiplePayloadStreamMode  multiplePayloadStreamMode
               No value
               h245.MultiplePayloadStreamMode

           h245.multiplex  multiplex
               Unsigned 32-bit integer
               h245.Cmd_multiplex

           h245.multiplexCapability  multiplexCapability
               Unsigned 32-bit integer
               h245.MultiplexCapability

           h245.multiplexEntryDescriptors  multiplexEntryDescriptors
               Unsigned 32-bit integer
               h245.SET_SIZE_1_15_OF_MultiplexEntryDescriptor

           h245.multiplexEntrySend  multiplexEntrySend
               No value
               h245.MultiplexEntrySend

           h245.multiplexEntrySendAck  multiplexEntrySendAck
               No value
               h245.MultiplexEntrySendAck

           h245.multiplexEntrySendReject  multiplexEntrySendReject
               No value
               h245.MultiplexEntrySendReject

           h245.multiplexEntrySendRelease  multiplexEntrySendRelease
               No value
               h245.MultiplexEntrySendRelease

           h245.multiplexFormat  multiplexFormat
               Unsigned 32-bit integer
               h245.MultiplexFormat

           h245.multiplexParameters  multiplexParameters
               Unsigned 32-bit integer
               h245.OLC_forw_multiplexParameters

           h245.multiplexTableEntryNumber  multiplexTableEntryNumber
               Unsigned 32-bit integer
               h245.MultiplexTableEntryNumber

           h245.multiplexedStream  multiplexedStream
               No value
               h245.MultiplexedStreamParameter

           h245.multiplexedStreamMode  multiplexedStreamMode
               No value
               h245.MultiplexedStreamParameter

           h245.multiplexedStreamModeParameters  multiplexedStreamModeParameters
               No value
               h245.MultiplexedStreamModeParameters

           h245.multipointConference  multipointConference
               No value
               h245.NULL

           h245.multipointConstraint  multipointConstraint
               No value
               h245.NULL

           h245.multipointModeCommand  multipointModeCommand
               No value
               h245.NULL

           h245.multipointSecondaryStatus  multipointSecondaryStatus
               No value
               h245.NULL

           h245.multipointVisualizationCapability  multipointVisualizationCapability
               Boolean
               h245.BOOLEAN

           h245.multipointZeroComm  multipointZeroComm
               No value
               h245.NULL

           h245.n401  n401
               Unsigned 32-bit integer
               h245.INTEGER_1_4095

           h245.n401Capability  n401Capability
               Unsigned 32-bit integer
               h245.INTEGER_1_4095

           h245.n_isdn  n-isdn
               No value
               h245.NULL

           h245.nackMessageOnly  nackMessageOnly
               No value
               h245.NULL

           h245.netBios  netBios
               Byte array
               h245.OCTET_STRING_SIZE_16

           h245.netnum  netnum
               Byte array
               h245.OCTET_STRING_SIZE_4

           h245.network  network
               IPv4 address
               h245.Ipv4_network

           h245.networkAddress  networkAddress
               Unsigned 32-bit integer
               h245.T_networkAddress

           h245.networkErrorCode  networkErrorCode
               Unsigned 32-bit integer
               h245.INTEGER_0_255

           h245.networkType  networkType
               Unsigned 32-bit integer
               h245.SET_SIZE_1_255_OF_DialingInformationNetworkType

           h245.newATMVCCommand  newATMVCCommand
               No value
               h245.NewATMVCCommand

           h245.newATMVCIndication  newATMVCIndication
               No value
               h245.NewATMVCIndication

           h245.nextPictureHeaderRepetition  nextPictureHeaderRepetition
               Boolean
               h245.BOOLEAN

           h245.nlpid  nlpid
               No value
               h245.Nlpid

           h245.nlpidData  nlpidData
               Byte array
               h245.OCTET_STRING

           h245.nlpidProtocol  nlpidProtocol
               Unsigned 32-bit integer
               h245.DataProtocolCapability

           h245.noArq  noArq
               No value
               h245.NULL

           h245.noMultiplex  noMultiplex
               No value
               h245.NULL

           h245.noRestriction  noRestriction
               No value
               h245.NULL

           h245.noSilenceSuppressionHighRate  noSilenceSuppressionHighRate
               No value
               h245.NULL

           h245.noSilenceSuppressionLowRate  noSilenceSuppressionLowRate
               No value
               h245.NULL

           h245.noSuspendResume  noSuspendResume
               No value
               h245.NULL

           h245.node  node
               Byte array
               h245.OCTET_STRING_SIZE_6

           h245.nonCollapsing  nonCollapsing
               Unsigned 32-bit integer
               h245.T_nonCollapsing

           h245.nonCollapsingRaw  nonCollapsingRaw
               Byte array
               h245.T_nonCollapsingRaw

           h245.nonCollapsing_item  nonCollapsing item
               No value
               h245.T_nonCollapsing_item

           h245.nonStandard  nonStandard
               No value
               h245.NonStandardMessage

           h245.nonStandardAddress  nonStandardAddress
               No value
               h245.NonStandardParameter

           h245.nonStandardData  nonStandardData
               No value
               h245.NonStandardParameter

           h245.nonStandardIdentifier  nonStandardIdentifier
               Unsigned 32-bit integer
               h245.NonStandardIdentifier

           h245.nonStandardParameter  nonStandardParameter
               No value
               h245.NonStandardParameter

           h245.none  none
               No value
               h245.NULL

           h245.noneProcessed  noneProcessed
               No value
               h245.NULL

           h245.normal  normal
               No value
               h245.NULL

           h245.nsap  nsap
               Byte array
               h245.OCTET_STRING_SIZE_1_20

           h245.nsapAddress  nsapAddress
               Byte array
               h245.OCTET_STRING_SIZE_1_20

           h245.nsrpSupport  nsrpSupport
               Boolean
               h245.BOOLEAN

           h245.nullClockRecovery  nullClockRecovery
               Boolean
               h245.BOOLEAN

           h245.nullData  nullData
               No value
               h245.NULL

           h245.nullErrorCorrection  nullErrorCorrection
               Boolean
               h245.BOOLEAN

           h245.numOfDLCS  numOfDLCS
               Unsigned 32-bit integer
               h245.INTEGER_2_8191

           h245.numberOfBPictures  numberOfBPictures
               Unsigned 32-bit integer
               h245.INTEGER_1_64

           h245.numberOfCodewords  numberOfCodewords
               Unsigned 32-bit integer
               h245.INTEGER_1_65536

           h245.numberOfGOBs  numberOfGOBs
               Unsigned 32-bit integer
               h245.INTEGER_1_18

           h245.numberOfMBs  numberOfMBs
               Unsigned 32-bit integer
               h245.INTEGER_1_8192

           h245.numberOfRetransmissions  numberOfRetransmissions
               Unsigned 32-bit integer
               h245.T_numberOfRetransmissions

           h245.numberOfThreads  numberOfThreads
               Unsigned 32-bit integer
               h245.INTEGER_1_16

           h245.numberOfVCs  numberOfVCs
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.object  object
               Object Identifier
               h245.T_object

           h245.octetString  octetString
               Unsigned 32-bit integer
               h245.T_octetString

           h245.offset_x  offset-x
               Signed 32-bit integer
               h245.INTEGER_M262144_262143

           h245.offset_y  offset-y
               Signed 32-bit integer
               h245.INTEGER_M262144_262143

           h245.oid  oid
               Object Identifier
               h245.OBJECT_IDENTIFIER

           h245.oneOfCapabilities  oneOfCapabilities
               Unsigned 32-bit integer
               h245.AlternativeCapabilitySet

           h245.openLogicalChannel  openLogicalChannel
               No value
               h245.OpenLogicalChannel

           h245.openLogicalChannelAck  openLogicalChannelAck
               No value
               h245.OpenLogicalChannelAck

           h245.openLogicalChannelConfirm  openLogicalChannelConfirm
               No value
               h245.OpenLogicalChannelConfirm

           h245.openLogicalChannelReject  openLogicalChannelReject
               No value
               h245.OpenLogicalChannelReject

           h245.originateCall  originateCall
               No value
               h245.NULL

           h245.paramS  paramS
               No value
               h245.Params

           h245.parameterIdentifier  parameterIdentifier
               Unsigned 32-bit integer
               h245.ParameterIdentifier

           h245.parameterValue  parameterValue
               Unsigned 32-bit integer
               h245.ParameterValue

           h245.partialPictureFreezeAndRelease  partialPictureFreezeAndRelease
               Boolean
               h245.BOOLEAN

           h245.partialPictureSnapshot  partialPictureSnapshot
               Boolean
               h245.BOOLEAN

           h245.partiallyFilledCells  partiallyFilledCells
               Boolean
               h245.BOOLEAN

           h245.password  password
               Byte array
               h245.Password

           h245.passwordResponse  passwordResponse
               No value
               h245.T_passwordResponse

           h245.payloadDescriptor  payloadDescriptor
               Unsigned 32-bit integer
               h245.T_payloadDescriptor

           h245.payloadType  payloadType
               Unsigned 32-bit integer
               h245.T_rtpPayloadType

           h245.pbFrames  pbFrames
               Boolean
               h245.BOOLEAN

           h245.pcr_pid  pcr-pid
               Unsigned 32-bit integer
               h245.INTEGER_0_8191

           h245.pdu_type  PDU Type
               Unsigned 32-bit integer
               Type of H.245 PDU

           h245.peakRate  peakRate
               Unsigned 32-bit integer
               h245.INTEGER_1_4294967295

           h245.pictureNumber  pictureNumber
               Boolean
               h245.BOOLEAN

           h245.pictureRate  pictureRate
               Unsigned 32-bit integer
               h245.INTEGER_0_15

           h245.pictureReference  pictureReference
               Unsigned 32-bit integer
               h245.PictureReference

           h245.pixelAspectCode  pixelAspectCode
               Unsigned 32-bit integer
               h245.T_pixelAspectCode

           h245.pixelAspectCode_item  pixelAspectCode item
               Unsigned 32-bit integer
               h245.INTEGER_1_14

           h245.pixelAspectInformation  pixelAspectInformation
               Unsigned 32-bit integer
               h245.T_pixelAspectInformation

           h245.pktMode  pktMode
               Unsigned 32-bit integer
               h245.T_pktMode

           h245.portNumber  portNumber
               Unsigned 32-bit integer
               h245.INTEGER_0_65535

           h245.presentationOrder  presentationOrder
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.previousPictureHeaderRepetition  previousPictureHeaderRepetition
               Boolean
               h245.BOOLEAN

           h245.primary  primary
               No value
               h245.RedundancyEncodingElement

           h245.primaryEncoding  primaryEncoding
               Unsigned 32-bit integer
               h245.CapabilityTableEntryNumber

           h245.productNumber  productNumber
               String
               h245.OCTET_STRING_SIZE_1_256

           h245.profileAndLevel  profileAndLevel
               Unsigned 32-bit integer
               h245.T_profileAndLevel

           h245.profileAndLevel_HPatHL  profileAndLevel-HPatHL
               Boolean
               h245.BOOLEAN

           h245.profileAndLevel_HPatH_14  profileAndLevel-HPatH-14
               Boolean
               h245.BOOLEAN

           h245.profileAndLevel_HPatML  profileAndLevel-HPatML
               Boolean
               h245.BOOLEAN

           h245.profileAndLevel_MPatHL  profileAndLevel-MPatHL
               Boolean
               h245.BOOLEAN

           h245.profileAndLevel_MPatH_14  profileAndLevel-MPatH-14
               Boolean
               h245.BOOLEAN

           h245.profileAndLevel_MPatLL  profileAndLevel-MPatLL
               Boolean
               h245.BOOLEAN

           h245.profileAndLevel_MPatML  profileAndLevel-MPatML
               Boolean
               h245.BOOLEAN

           h245.profileAndLevel_SNRatLL  profileAndLevel-SNRatLL
               Boolean
               h245.BOOLEAN

           h245.profileAndLevel_SNRatML  profileAndLevel-SNRatML
               Boolean
               h245.BOOLEAN

           h245.profileAndLevel_SPatML  profileAndLevel-SPatML
               Boolean
               h245.BOOLEAN

           h245.profileAndLevel_SpatialatH_14  profileAndLevel-SpatialatH-14
               Boolean
               h245.BOOLEAN

           h245.programDescriptors  programDescriptors
               Byte array
               h245.OCTET_STRING

           h245.programStream  programStream
               Boolean
               h245.BOOLEAN

           h245.progressiveRefinement  progressiveRefinement
               Boolean
               h245.BOOLEAN

           h245.progressiveRefinementAbortContinuous  progressiveRefinementAbortContinuous
               No value
               h245.NULL

           h245.progressiveRefinementAbortOne  progressiveRefinementAbortOne
               No value
               h245.NULL

           h245.progressiveRefinementStart  progressiveRefinementStart
               No value
               h245.T_progressiveRefinementStart

           h245.protectedCapability  protectedCapability
               Unsigned 32-bit integer
               h245.CapabilityTableEntryNumber

           h245.protectedChannel  protectedChannel
               Unsigned 32-bit integer
               h245.LogicalChannelNumber

           h245.protectedElement  protectedElement
               Unsigned 32-bit integer
               h245.ModeElementType

           h245.protectedPayloadType  protectedPayloadType
               Unsigned 32-bit integer
               h245.INTEGER_0_127

           h245.protectedSessionID  protectedSessionID
               Unsigned 32-bit integer
               h245.INTEGER_1_255

           h245.protocolIdentifier  protocolIdentifier
               Object Identifier
               h245.OBJECT_IDENTIFIER

           h245.q2931Address  q2931Address
               No value
               h245.Q2931Address

           h245.qOSCapabilities  qOSCapabilities
               Unsigned 32-bit integer
               h245.SEQUENCE_SIZE_1_256_OF_QOSCapability

           h245.qcif  qcif
               Boolean
               h245.BOOLEAN

           h245.qcifAdditionalPictureMemory  qcifAdditionalPictureMemory
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.qcifMPI  qcifMPI
               Unsigned 32-bit integer
               h245.INTEGER_1_4

           h245.qoSControlNotSupported  qoSControlNotSupported
               No value
               h245.NULL

           h245.qosCapability  qosCapability
               No value
               h245.QOSCapability

           h245.qosClass  qosClass
               Unsigned 32-bit integer
               h245.QOSClass

           h245.qosDescriptor  qosDescriptor
               No value
               h245.QOSDescriptor

           h245.qosMode  qosMode
               Unsigned 32-bit integer
               h245.QOSMode

           h245.qosType  qosType
               Unsigned 32-bit integer
               h245.QOSType

           h245.rangeOfBitRates  rangeOfBitRates
               No value
               h245.T_rangeOfBitRates

           h245.rcpcCodeRate  rcpcCodeRate
               Unsigned 32-bit integer
               h245.INTEGER_8_32

           h245.reason  reason
               Unsigned 32-bit integer
               h245.Clc_reason

           h245.receiveAndTransmitAudioCapability  receiveAndTransmitAudioCapability
               Unsigned 32-bit integer
               h245.AudioCapability

           h245.receiveAndTransmitDataApplicationCapability  receiveAndTransmitDataApplicationCapability
               No value
               h245.DataApplicationCapability

           h245.receiveAndTransmitMultiplexedStreamCapability  receiveAndTransmitMultiplexedStreamCapability
               No value
               h245.MultiplexedStreamCapability

           h245.receiveAndTransmitMultipointCapability  receiveAndTransmitMultipointCapability
               No value
               h245.MultipointCapability

           h245.receiveAndTransmitUserInputCapability  receiveAndTransmitUserInputCapability
               Unsigned 32-bit integer
               h245.UserInputCapability

           h245.receiveAndTransmitVideoCapability  receiveAndTransmitVideoCapability
               Unsigned 32-bit integer
               h245.VideoCapability

           h245.receiveAudioCapability  receiveAudioCapability
               Unsigned 32-bit integer
               h245.AudioCapability

           h245.receiveCompression  receiveCompression
               Unsigned 32-bit integer
               h245.CompressionType

           h245.receiveDataApplicationCapability  receiveDataApplicationCapability
               No value
               h245.DataApplicationCapability

           h245.receiveMultiplexedStreamCapability  receiveMultiplexedStreamCapability
               No value
               h245.MultiplexedStreamCapability

           h245.receiveMultipointCapability  receiveMultipointCapability
               No value
               h245.MultipointCapability

           h245.receiveRTPAudioTelephonyEventCapability  receiveRTPAudioTelephonyEventCapability
               No value
               h245.AudioTelephonyEventCapability

           h245.receiveRTPAudioToneCapability  receiveRTPAudioToneCapability
               No value
               h245.AudioToneCapability

           h245.receiveUserInputCapability  receiveUserInputCapability
               Unsigned 32-bit integer
               h245.UserInputCapability

           h245.receiveVideoCapability  receiveVideoCapability
               Unsigned 32-bit integer
               h245.VideoCapability

           h245.reconfiguration  reconfiguration
               No value
               h245.NULL

           h245.recovery  recovery
               Unsigned 32-bit integer
               h245.T_recovery

           h245.recoveryReferencePicture  recoveryReferencePicture
               Unsigned 32-bit integer
               h245.SEQUENCE_OF_PictureReference

           h245.reducedResolutionUpdate  reducedResolutionUpdate
               Boolean
               h245.BOOLEAN

           h245.redundancyEncoding  redundancyEncoding
               Boolean
               h245.BOOLEAN

           h245.redundancyEncodingCap  redundancyEncodingCap
               No value
               h245.RedundancyEncodingCapability

           h245.redundancyEncodingCapability  redundancyEncodingCapability
               Unsigned 32-bit integer
               h245.SEQUENCE_SIZE_1_256_OF_RedundancyEncodingCapability

           h245.redundancyEncodingDTMode  redundancyEncodingDTMode
               No value
               h245.RedundancyEncodingDTMode

           h245.redundancyEncodingMethod  redundancyEncodingMethod
               Unsigned 32-bit integer
               h245.RedundancyEncodingMethod

           h245.redundancyEncodingMode  redundancyEncodingMode
               No value
               h245.RedundancyEncodingMode

           h245.refPictureSelection  refPictureSelection
               No value
               h245.RefPictureSelection

           h245.referencePicSelect  referencePicSelect
               Boolean
               h245.BOOLEAN

           h245.rej  rej
               No value
               h245.NULL

           h245.rejCapability  rejCapability
               Boolean
               h245.BOOLEAN

           h245.reject  reject
               Unsigned 32-bit integer
               h245.T_reject

           h245.rejectReason  rejectReason
               Unsigned 32-bit integer
               h245.LogicalChannelRateRejectReason

           h245.rejected  rejected
               Unsigned 32-bit integer
               h245.T_rejected

           h245.rejectionDescriptions  rejectionDescriptions
               Unsigned 32-bit integer
               h245.SET_SIZE_1_15_OF_MultiplexEntryRejectionDescriptions

           h245.remoteMCRequest  remoteMCRequest
               Unsigned 32-bit integer
               h245.RemoteMCRequest

           h245.remoteMCResponse  remoteMCResponse
               Unsigned 32-bit integer
               h245.RemoteMCResponse

           h245.removeConnection  removeConnection
               No value
               h245.RemoveConnectionReq

           h245.reopen  reopen
               No value
               h245.NULL

           h245.repeatCount  repeatCount
               Unsigned 32-bit integer
               h245.ME_repeatCount

           h245.replacementFor  replacementFor
               Unsigned 32-bit integer
               h245.LogicalChannelNumber

           h245.replacementForRejected  replacementForRejected
               No value
               h245.NULL

           h245.request  request
               Unsigned 32-bit integer
               h245.RequestMessage

           h245.requestAllTerminalIDs  requestAllTerminalIDs
               No value
               h245.NULL

           h245.requestAllTerminalIDsResponse  requestAllTerminalIDsResponse
               No value
               h245.RequestAllTerminalIDsResponse

           h245.requestChairTokenOwner  requestChairTokenOwner
               No value
               h245.NULL

           h245.requestChannelClose  requestChannelClose
               No value
               h245.RequestChannelClose

           h245.requestChannelCloseAck  requestChannelCloseAck
               No value
               h245.RequestChannelCloseAck

           h245.requestChannelCloseReject  requestChannelCloseReject
               No value
               h245.RequestChannelCloseReject

           h245.requestChannelCloseRelease  requestChannelCloseRelease
               No value
               h245.RequestChannelCloseRelease

           h245.requestDenied  requestDenied
               No value
               h245.NULL

           h245.requestForFloor  requestForFloor
               No value
               h245.NULL

           h245.requestMode  requestMode
               No value
               h245.RequestMode

           h245.requestModeAck  requestModeAck
               No value
               h245.RequestModeAck

           h245.requestModeReject  requestModeReject
               No value
               h245.RequestModeReject

           h245.requestModeRelease  requestModeRelease
               No value
               h245.RequestModeRelease

           h245.requestMultiplexEntry  requestMultiplexEntry
               No value
               h245.RequestMultiplexEntry

           h245.requestMultiplexEntryAck  requestMultiplexEntryAck
               No value
               h245.RequestMultiplexEntryAck

           h245.requestMultiplexEntryReject  requestMultiplexEntryReject
               No value
               h245.RequestMultiplexEntryReject

           h245.requestMultiplexEntryRelease  requestMultiplexEntryRelease
               No value
               h245.RequestMultiplexEntryRelease

           h245.requestTerminalCertificate  requestTerminalCertificate
               No value
               h245.T_requestTerminalCertificate

           h245.requestTerminalID  requestTerminalID
               No value
               h245.TerminalLabel

           h245.requestType  requestType
               Unsigned 32-bit integer
               h245.T_requestType

           h245.requestedInterval  requestedInterval
               Unsigned 32-bit integer
               h245.INTEGER_0_65535

           h245.requestedModes  requestedModes
               Unsigned 32-bit integer
               h245.SEQUENCE_SIZE_1_256_OF_ModeDescription

           h245.required  required
               No value
               h245.NULL

           h245.reservationFailure  reservationFailure
               No value
               h245.NULL

           h245.resizingPartPicFreezeAndRelease  resizingPartPicFreezeAndRelease
               Boolean
               h245.BOOLEAN

           h245.resolution  resolution
               Unsigned 32-bit integer
               h245.H261Resolution

           h245.resourceID  resourceID
               Unsigned 32-bit integer
               h245.INTEGER_0_65535

           h245.response  response
               Unsigned 32-bit integer
               h245.ResponseMessage

           h245.responseCode  responseCode
               Unsigned 32-bit integer
               h245.T_responseCode

           h245.restriction  restriction
               Unsigned 32-bit integer
               h245.Restriction

           h245.returnedFunction  returnedFunction
               Byte array
               h245.T_returnedFunction

           h245.reverseLogicalChannelDependency  reverseLogicalChannelDependency
               Unsigned 32-bit integer
               h245.LogicalChannelNumber

           h245.reverseLogicalChannelNumber  reverseLogicalChannelNumber
               Unsigned 32-bit integer
               h245.T_reverseLogicalChannelNumber

           h245.reverseLogicalChannelParameters  reverseLogicalChannelParameters
               No value
               h245.OLC_reverseLogicalChannelParameters

           h245.reverseParameters  reverseParameters
               No value
               h245.Cmd_reverseParameters

           h245.rfc2198coding  rfc2198coding
               No value
               h245.NULL

           h245.rfc2733  rfc2733
               No value
               h245.FECC_rfc2733

           h245.rfc2733Format  rfc2733Format
               Unsigned 32-bit integer
               h245.Rfc2733Format

           h245.rfc2733Mode  rfc2733Mode
               No value
               h245.T_rfc2733Mode

           h245.rfc2733diffport  rfc2733diffport
               Unsigned 32-bit integer
               h245.MaxRedundancy

           h245.rfc2733rfc2198  rfc2733rfc2198
               Unsigned 32-bit integer
               h245.MaxRedundancy

           h245.rfc2733sameport  rfc2733sameport
               Unsigned 32-bit integer
               h245.MaxRedundancy

           h245.rfc_number  rfc-number
               Unsigned 32-bit integer
               h245.T_rfc_number

           h245.roundTripDelayRequest  roundTripDelayRequest
               No value
               h245.RoundTripDelayRequest

           h245.roundTripDelayResponse  roundTripDelayResponse
               No value
               h245.RoundTripDelayResponse

           h245.roundrobin  roundrobin
               No value
               h245.NULL

           h245.route  route
               Unsigned 32-bit integer
               h245.T_route

           h245.route_item  route item
               Byte array
               h245.OCTET_STRING_SIZE_4

           h245.routing  routing
               Unsigned 32-bit integer
               h245.T_routing

           h245.rsCodeCapability  rsCodeCapability
               Boolean
               h245.BOOLEAN

           h245.rsCodeCorrection  rsCodeCorrection
               Unsigned 32-bit integer
               h245.INTEGER_0_127

           h245.rsvpParameters  rsvpParameters
               No value
               h245.RSVPParameters

           h245.rtcpVideoControlCapability  rtcpVideoControlCapability
               Boolean
               h245.BOOLEAN

           h245.rtp  rtp
               No value
               h245.T_rtp

           h245.rtpAudioRedundancyEncoding  rtpAudioRedundancyEncoding
               No value
               h245.NULL

           h245.rtpH263VideoRedundancyEncoding  rtpH263VideoRedundancyEncoding
               No value
               h245.RTPH263VideoRedundancyEncoding

           h245.rtpPayloadIndication  rtpPayloadIndication
               No value
               h245.NULL

           h245.rtpPayloadType  rtpPayloadType
               Unsigned 32-bit integer
               h245.SEQUENCE_SIZE_1_256_OF_RTPPayloadType

           h245.rtpRedundancyEncoding  rtpRedundancyEncoding
               No value
               h245.T_rtpRedundancyEncoding

           h245.sREJ  sREJ
               No value
               h245.NULL

           h245.sREJCapability  sREJCapability
               Boolean
               h245.BOOLEAN

           h245.sRandom  sRandom
               Unsigned 32-bit integer
               h245.INTEGER_1_4294967295

           h245.samePort  samePort
               Boolean
               h245.BOOLEAN

           h245.sampleSize  sampleSize
               Unsigned 32-bit integer
               h245.INTEGER_1_255

           h245.samplesPerFrame  samplesPerFrame
               Unsigned 32-bit integer
               h245.INTEGER_1_255

           h245.samplesPerLine  samplesPerLine
               Unsigned 32-bit integer
               h245.INTEGER_0_16383

           h245.sbeNumber  sbeNumber
               Unsigned 32-bit integer
               h245.INTEGER_0_9

           h245.scale_x  scale-x
               Unsigned 32-bit integer
               h245.INTEGER_1_255

           h245.scale_y  scale-y
               Unsigned 32-bit integer
               h245.INTEGER_1_255

           h245.scope  scope
               Unsigned 32-bit integer
               h245.Scope

           h245.scrambled  scrambled
               Boolean
               h245.BOOLEAN

           h245.sebch16_5  sebch16-5
               No value
               h245.NULL

           h245.sebch16_7  sebch16-7
               No value
               h245.NULL

           h245.secondary  secondary
               Unsigned 32-bit integer
               h245.SEQUENCE_OF_RedundancyEncodingElement

           h245.secondaryEncoding  secondaryEncoding
               Unsigned 32-bit integer
               h245.SEQUENCE_SIZE_1_256_OF_CapabilityTableEntryNumber

           h245.secureChannel  secureChannel
               Boolean
               h245.BOOLEAN

           h245.secureDTMF  secureDTMF
               No value
               h245.NULL

           h245.securityDenied  securityDenied
               No value
               h245.NULL

           h245.seenByAll  seenByAll
               No value
               h245.NULL

           h245.seenByAtLeastOneOther  seenByAtLeastOneOther
               No value
               h245.NULL

           h245.segmentableFlag  segmentableFlag
               Boolean
               h245.T_h223_lc_segmentableFlag

           h245.segmentationAndReassembly  segmentationAndReassembly
               No value
               h245.NULL

           h245.semanticError  semanticError
               No value
               h245.NULL

           h245.sendBufferSize  sendBufferSize
               Unsigned 32-bit integer
               h245.T_al3_sendBufferSize

           h245.sendTerminalCapabilitySet  sendTerminalCapabilitySet
               Unsigned 32-bit integer
               h245.SendTerminalCapabilitySet

           h245.sendThisSource  sendThisSource
               No value
               h245.TerminalLabel

           h245.sendThisSourceResponse  sendThisSourceResponse
               Unsigned 32-bit integer
               h245.T_sendThisSourceResponse

           h245.separateLANStack  separateLANStack
               No value
               h245.NULL

           h245.separatePort  separatePort
               Boolean
               h245.BOOLEAN

           h245.separateStack  separateStack
               No value
               h245.NetworkAccessParameters

           h245.separateStackEstablishmentFailed  separateStackEstablishmentFailed
               No value
               h245.NULL

           h245.separateStream  separateStream
               No value
               h245.T_separateStreamBool

           h245.separateVideoBackChannel  separateVideoBackChannel
               Boolean
               h245.BOOLEAN

           h245.sequenceNumber  sequenceNumber
               Unsigned 32-bit integer
               h245.SequenceNumber

           h245.serviceClass  serviceClass
               Unsigned 32-bit integer
               h245.INTEGER_0_4095

           h245.servicePriority  servicePriority
               No value
               h245.ServicePriority

           h245.servicePrioritySignalled  servicePrioritySignalled
               Boolean
               h245.BOOLEAN

           h245.servicePriorityValue  servicePriorityValue
               No value
               h245.ServicePriorityValue

           h245.serviceSubclass  serviceSubclass
               Unsigned 32-bit integer
               h245.INTEGER_0_255

           h245.sessionDependency  sessionDependency
               Unsigned 32-bit integer
               h245.INTEGER_1_255

           h245.sessionDescription  sessionDescription
               String
               h245.BMPString_SIZE_1_128

           h245.sessionID  sessionID
               Unsigned 32-bit integer
               h245.INTEGER_0_255

           h245.sharedSecret  sharedSecret
               Boolean
               h245.BOOLEAN

           h245.shortInterleaver  shortInterleaver
               Boolean
               h245.BOOLEAN

           h245.sidMode0  sidMode0
               Unsigned 32-bit integer
               h245.INTEGER_6_17

           h245.sidMode1  sidMode1
               Unsigned 32-bit integer
               h245.INTEGER_6_17

           h245.signal  signal
               No value
               h245.T_signal

           h245.signalAddress  signalAddress
               Unsigned 32-bit integer
               h245.TransportAddress

           h245.signalType  signalType
               String
               h245.T_signalType

           h245.signalUpdate  signalUpdate
               No value
               h245.T_signalUpdate

           h245.silenceSuppression  silenceSuppression
               Boolean
               h245.BOOLEAN

           h245.silenceSuppressionHighRate  silenceSuppressionHighRate
               No value
               h245.NULL

           h245.silenceSuppressionLowRate  silenceSuppressionLowRate
               No value
               h245.NULL

           h245.simultaneousCapabilities  simultaneousCapabilities
               Unsigned 32-bit integer
               h245.SET_SIZE_1_256_OF_AlternativeCapabilitySet

           h245.singleBitRate  singleBitRate
               Unsigned 32-bit integer
               h245.INTEGER_1_65535

           h245.singleChannel  singleChannel
               Boolean
               h245.BOOLEAN

           h245.skew  skew
               Unsigned 32-bit integer
               h245.INTEGER_0_4095

           h245.skippedFrameCount  skippedFrameCount
               Unsigned 32-bit integer
               h245.INTEGER_0_15

           h245.slave  slave
               No value
               h245.NULL

           h245.slaveActivate  slaveActivate
               No value
               h245.NULL

           h245.slaveToMaster  slaveToMaster
               No value
               h245.NULL

           h245.slicesInOrder_NonRect  slicesInOrder-NonRect
               Boolean
               h245.BOOLEAN

           h245.slicesInOrder_Rect  slicesInOrder-Rect
               Boolean
               h245.BOOLEAN

           h245.slicesNoOrder_NonRect  slicesNoOrder-NonRect
               Boolean
               h245.BOOLEAN

           h245.slicesNoOrder_Rect  slicesNoOrder-Rect
               Boolean
               h245.BOOLEAN

           h245.slowCif16MPI  slowCif16MPI
               Unsigned 32-bit integer
               h245.INTEGER_1_3600

           h245.slowCif4MPI  slowCif4MPI
               Unsigned 32-bit integer
               h245.INTEGER_1_3600

           h245.slowCifMPI  slowCifMPI
               Unsigned 32-bit integer
               h245.INTEGER_1_3600

           h245.slowQcifMPI  slowQcifMPI
               Unsigned 32-bit integer
               h245.INTEGER_1_3600

           h245.slowSqcifMPI  slowSqcifMPI
               Unsigned 32-bit integer
               h245.INTEGER_1_3600

           h245.snrEnhancement  snrEnhancement
               Unsigned 32-bit integer
               h245.SET_SIZE_1_14_OF_EnhancementOptions

           h245.source  source
               No value
               h245.TerminalLabel

           h245.spareReferencePictures  spareReferencePictures
               Boolean
               h245.BOOLEAN

           h245.spatialEnhancement  spatialEnhancement
               Unsigned 32-bit integer
               h245.SET_SIZE_1_14_OF_EnhancementOptions

           h245.specificRequest  specificRequest
               No value
               h245.T_specificRequest

           h245.sqcif  sqcif
               No value
               h245.NULL

           h245.sqcifAdditionalPictureMemory  sqcifAdditionalPictureMemory
               Unsigned 32-bit integer
               h245.INTEGER_1_256

           h245.sqcifMPI  sqcifMPI
               Unsigned 32-bit integer
               h245.INTEGER_1_32

           h245.srtsClockRecovery  srtsClockRecovery
               Boolean
               h245.BOOLEAN

           h245.standard  standard
               Object Identifier
               h245.T_standardOid

           h245.standardMPI  standardMPI
               Unsigned 32-bit integer
               h245.INTEGER_1_31

           h245.start  start
               No value
               h245.NULL

           h245.status  status
               Unsigned 32-bit integer
               h245.T_status

           h245.statusDeterminationNumber  statusDeterminationNumber
               Unsigned 32-bit integer
               h245.INTEGER_0_16777215

           h245.stillImageTransmission  stillImageTransmission
               Boolean
               h245.BOOLEAN

           h245.stop  stop
               No value
               h245.NULL

           h245.streamDescriptors  streamDescriptors
               Byte array
               h245.OCTET_STRING

           h245.strict  strict
               No value
               h245.NULL

           h245.structuredDataTransfer  structuredDataTransfer
               Boolean
               h245.BOOLEAN

           h245.subAddress  subAddress
               String
               h245.IA5String_SIZE_1_40

           h245.subChannelID  subChannelID
               Unsigned 32-bit integer
               h245.INTEGER_0_8191

           h245.subElementList  subElementList
               Unsigned 32-bit integer
               h245.T_subElementList

           h245.subMessageIdentifier  subMessageIdentifier
               Unsigned 32-bit integer
               h245.T_subMessageIdentifier

           h245.subPictureNumber  subPictureNumber
               Unsigned 32-bit integer
               h245.INTEGER_0_255

           h245.subPictureRemovalParameters  subPictureRemovalParameters
               No value
               h245.T_subPictureRemovalParameters

           h245.subaddress  subaddress
               Byte array
               h245.OCTET_STRING_SIZE_1_20

           h245.substituteConferenceIDCommand  substituteConferenceIDCommand
               No value
               h245.SubstituteConferenceIDCommand

           h245.supersedes  supersedes
               Unsigned 32-bit integer
               h245.SEQUENCE_OF_ParameterIdentifier

           h245.suspendResume  suspendResume
               Unsigned 32-bit integer
               h245.T_suspendResume

           h245.suspendResumeCapabilitywAddress  suspendResumeCapabilitywAddress
               Boolean
               h245.BOOLEAN

           h245.suspendResumeCapabilitywoAddress  suspendResumeCapabilitywoAddress
               Boolean
               h245.BOOLEAN

           h245.suspendResumewAddress  suspendResumewAddress
               No value
               h245.NULL

           h245.suspendResumewoAddress  suspendResumewoAddress
               No value
               h245.NULL

           h245.switchReceiveMediaOff  switchReceiveMediaOff
               No value
               h245.NULL

           h245.switchReceiveMediaOn  switchReceiveMediaOn
               No value
               h245.NULL

           h245.synchFlag  synchFlag
               Unsigned 32-bit integer
               h245.INTEGER_0_255

           h245.synchronized  synchronized
               No value
               h245.NULL

           h245.syntaxError  syntaxError
               No value
               h245.NULL

           h245.systemLoop  systemLoop
               No value
               h245.NULL

           h245.t120  t120
               Unsigned 32-bit integer
               h245.DataProtocolCapability

           h245.t120DynamicPortCapability  t120DynamicPortCapability
               Boolean
               h245.BOOLEAN

           h245.t120SetupProcedure  t120SetupProcedure
               Unsigned 32-bit integer
               h245.T_t120SetupProcedure

           h245.t140  t140
               Unsigned 32-bit integer
               h245.DataProtocolCapability

           h245.t30fax  t30fax
               Unsigned 32-bit integer
               h245.DataProtocolCapability

           h245.t35CountryCode  t35CountryCode
               Unsigned 32-bit integer
               h245.T_t35CountryCode

           h245.t35Extension  t35Extension
               Unsigned 32-bit integer
               h245.T_t35Extension

           h245.t38FaxMaxBuffer  t38FaxMaxBuffer
               Signed 32-bit integer
               h245.INTEGER

           h245.t38FaxMaxDatagram  t38FaxMaxDatagram
               Signed 32-bit integer
               h245.INTEGER

           h245.t38FaxProfile  t38FaxProfile
               No value
               h245.T38FaxProfile

           h245.t38FaxProtocol  t38FaxProtocol
               Unsigned 32-bit integer
               h245.DataProtocolCapability

           h245.t38FaxRateManagement  t38FaxRateManagement
               Unsigned 32-bit integer
               h245.T38FaxRateManagement

           h245.t38FaxTcpOptions  t38FaxTcpOptions
               No value
               h245.T38FaxTcpOptions

           h245.t38FaxUdpEC  t38FaxUdpEC
               Unsigned 32-bit integer
               h245.T_t38FaxUdpEC

           h245.t38FaxUdpOptions  t38FaxUdpOptions
               No value
               h245.T38FaxUdpOptions

           h245.t38TCPBidirectionalMode  t38TCPBidirectionalMode
               Boolean
               h245.BOOLEAN

           h245.t38UDPFEC  t38UDPFEC
               No value
               h245.NULL

           h245.t38UDPRedundancy  t38UDPRedundancy
               No value
               h245.NULL

           h245.t38fax  t38fax
               No value
               h245.T_t38fax

           h245.t434  t434
               Unsigned 32-bit integer
               h245.DataProtocolCapability

           h245.t84  t84
               No value
               h245.T_t84

           h245.t84Profile  t84Profile
               Unsigned 32-bit integer
               h245.T84Profile

           h245.t84Protocol  t84Protocol
               Unsigned 32-bit integer
               h245.DataProtocolCapability

           h245.t84Restricted  t84Restricted
               No value
               h245.T_t84Restricted

           h245.t84Unrestricted  t84Unrestricted
               No value
               h245.NULL

           h245.tableEntryCapacityExceeded  tableEntryCapacityExceeded
               Unsigned 32-bit integer
               h245.T_tableEntryCapacityExceeded

           h245.tcp  tcp
               No value
               h245.NULL

           h245.telephonyMode  telephonyMode
               No value
               h245.NULL

           h245.temporalReference  temporalReference
               Unsigned 32-bit integer
               h245.INTEGER_0_1023

           h245.temporalSpatialTradeOffCapability  temporalSpatialTradeOffCapability
               Boolean
               h245.BOOLEAN

           h245.terminalCapabilitySet  terminalCapabilitySet
               No value
               h245.TerminalCapabilitySet

           h245.terminalCapabilitySetAck  terminalCapabilitySetAck
               No value
               h245.TerminalCapabilitySetAck

           h245.terminalCapabilitySetReject  terminalCapabilitySetReject
               No value
               h245.TerminalCapabilitySetReject

           h245.terminalCapabilitySetRelease  terminalCapabilitySetRelease
               No value
               h245.TerminalCapabilitySetRelease

           h245.terminalCertificateResponse  terminalCertificateResponse
               No value
               h245.T_terminalCertificateResponse

           h245.terminalDropReject  terminalDropReject
               No value
               h245.NULL

           h245.terminalID  terminalID
               Byte array
               h245.TerminalID

           h245.terminalIDResponse  terminalIDResponse
               No value
               h245.T_terminalIDResponse

           h245.terminalInformation  terminalInformation
               Unsigned 32-bit integer
               h245.SEQUENCE_OF_TerminalInformation

           h245.terminalJoinedConference  terminalJoinedConference
               No value
               h245.TerminalLabel

           h245.terminalLabel  terminalLabel
               No value
               h245.TerminalLabel

           h245.terminalLeftConference  terminalLeftConference
               No value
               h245.TerminalLabel

           h245.terminalListRequest  terminalListRequest
               No value
               h245.NULL

           h245.terminalListResponse  terminalListResponse
               Unsigned 32-bit integer
               h245.SET_SIZE_1_256_OF_TerminalLabel

           h245.terminalNumber  terminalNumber
               Unsigned 32-bit integer
               h245.TerminalNumber

           h245.terminalNumberAssign  terminalNumberAssign
               No value
               h245.TerminalLabel

           h245.terminalOnHold  terminalOnHold
               No value
               h245.NULL

           h245.terminalType  terminalType
               Unsigned 32-bit integer
               h245.INTEGER_0_255

           h245.terminalYouAreSeeing  terminalYouAreSeeing
               No value
               h245.TerminalLabel

           h245.terminalYouAreSeeingInSubPictureNumber  terminalYouAreSeeingInSubPictureNumber
               No value
               h245.TerminalYouAreSeeingInSubPictureNumber

           h245.threadNumber  threadNumber
               Unsigned 32-bit integer
               h245.INTEGER_0_15

           h245.threeChannels2_1  threeChannels2-1
               Boolean
               h245.BOOLEAN

           h245.threeChannels3_0  threeChannels3-0
               Boolean
               h245.BOOLEAN

           h245.timestamp  timestamp
               Unsigned 32-bit integer
               h245.INTEGER_0_4294967295

           h245.toLevel0  toLevel0
               No value
               h245.NULL

           h245.toLevel1  toLevel1
               No value
               h245.NULL

           h245.toLevel2  toLevel2
               No value
               h245.NULL

           h245.toLevel2withOptionalHeader  toLevel2withOptionalHeader
               No value
               h245.NULL

           h245.tokenRate  tokenRate
               Unsigned 32-bit integer
               h245.INTEGER_1_4294967295

           h245.transcodingJBIG  transcodingJBIG
               Boolean
               h245.BOOLEAN

           h245.transcodingMMR  transcodingMMR
               Boolean
               h245.BOOLEAN

           h245.transferMode  transferMode
               Unsigned 32-bit integer
               h245.T_transferMode

           h245.transferredTCF  transferredTCF
               No value
               h245.NULL

           h245.transmitAndReceiveCompression  transmitAndReceiveCompression
               Unsigned 32-bit integer
               h245.CompressionType

           h245.transmitAudioCapability  transmitAudioCapability
               Unsigned 32-bit integer
               h245.AudioCapability

           h245.transmitCompression  transmitCompression
               Unsigned 32-bit integer
               h245.CompressionType

           h245.transmitDataApplicationCapability  transmitDataApplicationCapability
               No value
               h245.DataApplicationCapability

           h245.transmitMultiplexedStreamCapability  transmitMultiplexedStreamCapability
               No value
               h245.MultiplexedStreamCapability

           h245.transmitMultipointCapability  transmitMultipointCapability
               No value
               h245.MultipointCapability

           h245.transmitUserInputCapability  transmitUserInputCapability
               Unsigned 32-bit integer
               h245.UserInputCapability

           h245.transmitVideoCapability  transmitVideoCapability
               Unsigned 32-bit integer
               h245.VideoCapability

           h245.transparencyParameters  transparencyParameters
               No value
               h245.TransparencyParameters

           h245.transparent  transparent
               No value
               h245.NULL

           h245.transport  transport
               Unsigned 32-bit integer
               h245.DataProtocolCapability

           h245.transportCapability  transportCapability
               No value
               h245.TransportCapability

           h245.transportStream  transportStream
               Boolean
               h245.BOOLEAN

           h245.transportWithI_frames  transportWithI-frames
               Boolean
               h245.BOOLEAN

           h245.tsapIdentifier  tsapIdentifier
               Unsigned 32-bit integer
               h245.TsapIdentifier

           h245.twoChannelDual  twoChannelDual
               No value
               h245.NULL

           h245.twoChannelStereo  twoChannelStereo
               No value
               h245.NULL

           h245.twoChannels  twoChannels
               Boolean
               h245.BOOLEAN

           h245.twoOctetAddressFieldCapability  twoOctetAddressFieldCapability
               Boolean
               h245.BOOLEAN

           h245.type  type
               Unsigned 32-bit integer
               h245.Avb_type

           h245.typeIArq  typeIArq
               No value
               h245.H223AnnexCArqParameters

           h245.typeIIArq  typeIIArq
               No value
               h245.H223AnnexCArqParameters

           h245.uIH  uIH
               Boolean
               h245.BOOLEAN

           h245.uNERM  uNERM
               No value
               h245.NULL

           h245.udp  udp
               No value
               h245.NULL

           h245.uihCapability  uihCapability
               Boolean
               h245.BOOLEAN

           h245.undefinedReason  undefinedReason
               No value
               h245.NULL

           h245.undefinedTableEntryUsed  undefinedTableEntryUsed
               No value
               h245.NULL

           h245.unframed  unframed
               No value
               h245.NULL

           h245.unicast  unicast
               No value
               h245.NULL

           h245.unicastAddress  unicastAddress
               Unsigned 32-bit integer
               h245.UnicastAddress

           h245.unknown  unknown
               No value
               h245.NULL

           h245.unknownDataType  unknownDataType
               No value
               h245.NULL

           h245.unknownFunction  unknownFunction
               No value
               h245.NULL

           h245.unlimitedMotionVectors  unlimitedMotionVectors
               Boolean
               h245.BOOLEAN

           h245.unrestrictedVector  unrestrictedVector
               Boolean
               h245.BOOLEAN

           h245.unsigned32Max  unsigned32Max
               Unsigned 32-bit integer
               h245.T_unsigned32Max

           h245.unsigned32Min  unsigned32Min
               Unsigned 32-bit integer
               h245.T_unsigned32Min

           h245.unsignedMax  unsignedMax
               Unsigned 32-bit integer
               h245.T_unsignedMax

           h245.unsignedMin  unsignedMin
               Unsigned 32-bit integer
               h245.T_unsignedMin

           h245.unspecified  unspecified
               No value
               h245.NULL

           h245.unspecifiedCause  unspecifiedCause
               No value
               h245.NULL

           h245.unsuitableReverseParameters  unsuitableReverseParameters
               No value
               h245.NULL

           h245.untilClosingFlag  untilClosingFlag
               No value
               h245.T_untilClosingFlag

           h245.user  user
               No value
               h245.NULL

           h245.userData  userData
               Unsigned 32-bit integer
               h245.DataProtocolCapability

           h245.userInput  userInput
               Unsigned 32-bit integer
               h245.UserInputIndication

           h245.userInputSupportIndication  userInputSupportIndication
               Unsigned 32-bit integer
               h245.T_userInputSupportIndication

           h245.userRejected  userRejected
               No value
               h245.NULL

           h245.uuid  uuid
               Byte array
               h245.OCTET_STRING_SIZE_16

           h245.v120  v120
               No value
               h245.NULL

           h245.v140  v140
               No value
               h245.NULL

           h245.v14buffered  v14buffered
               No value
               h245.NULL

           h245.v34DSVD  v34DSVD
               No value
               h245.NULL

           h245.v34DuplexFAX  v34DuplexFAX
               No value
               h245.NULL

           h245.v34H324  v34H324
               No value
               h245.NULL

           h245.v42bis  v42bis
               No value
               h245.V42bis

           h245.v42lapm  v42lapm
               No value
               h245.NULL

           h245.v75Capability  v75Capability
               No value
               h245.V75Capability

           h245.v75Parameters  v75Parameters
               No value
               h245.V75Parameters

           h245.v76Capability  v76Capability
               No value
               h245.V76Capability

           h245.v76LogicalChannelParameters  v76LogicalChannelParameters
               No value
               h245.V76LogicalChannelParameters

           h245.v76ModeParameters  v76ModeParameters
               Unsigned 32-bit integer
               h245.V76ModeParameters

           h245.v76wCompression  v76wCompression
               Unsigned 32-bit integer
               h245.T_v76wCompression

           h245.v8bis  v8bis
               No value
               h245.NULL

           h245.value  value
               Unsigned 32-bit integer
               h245.INTEGER_0_255

           h245.variable_delta  variable-delta
               Boolean
               h245.BOOLEAN

           h245.vbd  vbd
               No value
               h245.VBDCapability

           h245.vbvBufferSize  vbvBufferSize
               Unsigned 32-bit integer
               h245.INTEGER_0_262143

           h245.vcCapability  vcCapability
               Unsigned 32-bit integer
               h245.SET_OF_VCCapability

           h245.vendor  vendor
               Unsigned 32-bit integer
               h245.NonStandardIdentifier

           h245.vendorIdentification  vendorIdentification
               No value
               h245.VendorIdentification

           h245.version  version
               Unsigned 32-bit integer
               h245.INTEGER_0_255

           h245.versionNumber  versionNumber
               String
               h245.OCTET_STRING_SIZE_1_256

           h245.videoBackChannelSend  videoBackChannelSend
               Unsigned 32-bit integer
               h245.T_videoBackChannelSend

           h245.videoBadMBs  videoBadMBs
               No value
               h245.T_videoBadMBs

           h245.videoBadMBsCap  videoBadMBsCap
               Boolean
               h245.BOOLEAN

           h245.videoBitRate  videoBitRate
               Unsigned 32-bit integer
               h245.INTEGER_0_1073741823

           h245.videoCapability  videoCapability
               Unsigned 32-bit integer
               h245.SEQUENCE_OF_VideoCapability

           h245.videoCapabilityExtension  videoCapabilityExtension
               Unsigned 32-bit integer
               h245.SEQUENCE_OF_GenericCapability

           h245.videoCommandReject  videoCommandReject
               No value
               h245.NULL

           h245.videoData  videoData
               Unsigned 32-bit integer
               h245.VideoCapability

           h245.videoFastUpdateGOB  videoFastUpdateGOB
               No value
               h245.T_videoFastUpdateGOB

           h245.videoFastUpdateMB  videoFastUpdateMB
               No value
               h245.T_videoFastUpdateMB

           h245.videoFastUpdatePicture  videoFastUpdatePicture
               No value
               h245.NULL

           h245.videoFreezePicture  videoFreezePicture
               No value
               h245.NULL

           h245.videoIndicateCompose  videoIndicateCompose
               No value
               h245.VideoIndicateCompose

           h245.videoIndicateMixingCapability  videoIndicateMixingCapability
               Boolean
               h245.BOOLEAN

           h245.videoIndicateReadyToActivate  videoIndicateReadyToActivate
               No value
               h245.NULL

           h245.videoMode  videoMode
               Unsigned 32-bit integer
               h245.VideoMode

           h245.videoMux  videoMux
               Boolean
               h245.BOOLEAN

           h245.videoNotDecodedMBs  videoNotDecodedMBs
               No value
               h245.T_videoNotDecodedMBs

           h245.videoSegmentTagging  videoSegmentTagging
               Boolean
               h245.BOOLEAN

           h245.videoSendSyncEveryGOB  videoSendSyncEveryGOB
               No value
               h245.NULL

           h245.videoSendSyncEveryGOBCancel  videoSendSyncEveryGOBCancel
               No value
               h245.NULL

           h245.videoTemporalSpatialTradeOff  videoTemporalSpatialTradeOff
               Unsigned 32-bit integer
               h245.INTEGER_0_31

           h245.videoWithAL1  videoWithAL1
               Boolean
               h245.BOOLEAN

           h245.videoWithAL1M  videoWithAL1M
               Boolean
               h245.BOOLEAN

           h245.videoWithAL2  videoWithAL2
               Boolean
               h245.BOOLEAN

           h245.videoWithAL2M  videoWithAL2M
               Boolean
               h245.BOOLEAN

           h245.videoWithAL3  videoWithAL3
               Boolean
               h245.BOOLEAN

           h245.videoWithAL3M  videoWithAL3M
               Boolean
               h245.BOOLEAN

           h245.waitForCall  waitForCall
               No value
               h245.NULL

           h245.waitForCommunicationMode  waitForCommunicationMode
               No value
               h245.NULL

           h245.wholeMultiplex  wholeMultiplex
               No value
               h245.NULL

           h245.width  width
               Unsigned 32-bit integer
               h245.INTEGER_1_255

           h245.willTransmitLessPreferredMode  willTransmitLessPreferredMode
               No value
               h245.NULL

           h245.willTransmitMostPreferredMode  willTransmitMostPreferredMode
               No value
               h245.NULL

           h245.windowSize  windowSize
               Unsigned 32-bit integer
               h245.INTEGER_1_127

           h245.withdrawChairToken  withdrawChairToken
               No value
               h245.NULL

           h245.zeroDelay  zeroDelay
               No value
               h245.NULL

   MULTIPOINT-COMMUNICATION-SERVICE T.125 (t125)
           t125.ChannelAttributes  ChannelAttributes
               Unsigned 32-bit integer
               t125.ChannelAttributes

           t125.ChannelId  ChannelId
               Unsigned 32-bit integer
               t125.ChannelId

           t125.ConnectMCSPDU  ConnectMCSPDU
               Unsigned 32-bit integer
               t125.ConnectMCSPDU

           t125.TokenAttributes  TokenAttributes
               Unsigned 32-bit integer
               t125.TokenAttributes

           t125.TokenId  TokenId
               Unsigned 32-bit integer
               t125.TokenId

           t125.UserId  UserId
               Unsigned 32-bit integer
               t125.UserId

           t125.admitted  admitted
               Unsigned 32-bit integer
               t125.SET_OF_UserId

           t125.assigned  assigned
               No value
               t125.T_assigned

           t125.attachUserConfirm  attachUserConfirm
               No value
               t125.AttachUserConfirm

           t125.attachUserRequest  attachUserRequest
               No value
               t125.AttachUserRequest

           t125.begin  begin
               Boolean

           t125.calledConnectId  calledConnectId
               Unsigned 32-bit integer
               t125.INTEGER_0_MAX

           t125.calledDomainSelector  calledDomainSelector
               Byte array
               t125.OCTET_STRING

           t125.callingDomainSelector  callingDomainSelector
               Byte array
               t125.OCTET_STRING

           t125.channelAdmitIndication  channelAdmitIndication
               No value
               t125.ChannelAdmitIndication

           t125.channelAdmitRequest  channelAdmitRequest
               No value
               t125.ChannelAdmitRequest

           t125.channelConveneConfirm  channelConveneConfirm
               No value
               t125.ChannelConveneConfirm

           t125.channelConveneRequest  channelConveneRequest
               No value
               t125.ChannelConveneRequest

           t125.channelDisbandIndication  channelDisbandIndication
               No value
               t125.ChannelDisbandIndication

           t125.channelDisbandRequest  channelDisbandRequest
               No value
               t125.ChannelDisbandRequest

           t125.channelExpelIndication  channelExpelIndication
               No value
               t125.ChannelExpelIndication

           t125.channelExpelRequest  channelExpelRequest
               No value
               t125.ChannelExpelRequest

           t125.channelId  channelId
               Unsigned 32-bit integer
               t125.StaticChannelId

           t125.channelIds  channelIds
               Unsigned 32-bit integer
               t125.SET_OF_ChannelId

           t125.channelJoinConfirm  channelJoinConfirm
               No value
               t125.ChannelJoinConfirm

           t125.channelJoinRequest  channelJoinRequest
               No value
               t125.ChannelJoinRequest

           t125.channelLeaveRequest  channelLeaveRequest
               No value
               t125.ChannelLeaveRequest

           t125.connect_additional  connect-additional
               No value
               t125.Connect_Additional

           t125.connect_initial  connect-initial
               No value
               t125.Connect_Initial

           t125.connect_response  connect-response
               No value
               t125.Connect_Response

           t125.connect_result  connect-result
               No value
               t125.Connect_Result

           t125.dataPriority  dataPriority
               Unsigned 32-bit integer
               t125.DataPriority

           t125.detachUserIds  detachUserIds
               Unsigned 32-bit integer
               t125.SET_OF_UserId

           t125.detachUserIndication  detachUserIndication
               No value
               t125.DetachUserIndication

           t125.detachUserRequest  detachUserRequest
               No value
               t125.DetachUserRequest

           t125.diagnostic  diagnostic
               Unsigned 32-bit integer
               t125.Diagnostic

           t125.disconnectProviderUltimatum  disconnectProviderUltimatum
               No value
               t125.DisconnectProviderUltimatum

           t125.domainParameters  domainParameters
               No value
               t125.DomainParameters

           t125.end  end
               Boolean

           t125.erectDomainRequest  erectDomainRequest
               No value
               t125.ErectDomainRequest

           t125.given  given
               No value
               t125.T_given

           t125.giving  giving
               No value
               t125.T_giving

           t125.grabbed  grabbed
               No value
               t125.T_grabbed

           t125.grabber  grabber
               Unsigned 32-bit integer
               t125.UserId

           t125.heightLimit  heightLimit
               Unsigned 32-bit integer
               t125.INTEGER_0_MAX

           t125.inhibited  inhibited
               No value
               t125.T_inhibited

           t125.inhibitors  inhibitors
               Unsigned 32-bit integer
               t125.SET_OF_UserId

           t125.initialOctets  initialOctets
               Byte array
               t125.OCTET_STRING

           t125.initiator  initiator
               Unsigned 32-bit integer
               t125.UserId

           t125.joined  joined
               Boolean
               t125.BOOLEAN

           t125.manager  manager
               Unsigned 32-bit integer
               t125.UserId

           t125.maxChannelIds  maxChannelIds
               Unsigned 32-bit integer
               t125.INTEGER_0_MAX

           t125.maxHeight  maxHeight
               Unsigned 32-bit integer
               t125.INTEGER_0_MAX

           t125.maxMCSPDUsize  maxMCSPDUsize
               Unsigned 32-bit integer
               t125.INTEGER_0_MAX

           t125.maxTokenIds  maxTokenIds
               Unsigned 32-bit integer
               t125.INTEGER_0_MAX

           t125.maxUserIds  maxUserIds
               Unsigned 32-bit integer
               t125.INTEGER_0_MAX

           t125.maximumParameters  maximumParameters
               No value
               t125.DomainParameters

           t125.mergeChannels  mergeChannels
               Unsigned 32-bit integer
               t125.SET_OF_ChannelAttributes

           t125.mergeChannelsConfirm  mergeChannelsConfirm
               No value
               t125.MergeChannelsConfirm

           t125.mergeChannelsRequest  mergeChannelsRequest
               No value
               t125.MergeChannelsRequest

           t125.mergeTokens  mergeTokens
               Unsigned 32-bit integer
               t125.SET_OF_TokenAttributes

           t125.mergeTokensConfirm  mergeTokensConfirm
               No value
               t125.MergeTokensConfirm

           t125.mergeTokensRequest  mergeTokensRequest
               No value
               t125.MergeTokensRequest

           t125.minThroughput  minThroughput
               Unsigned 32-bit integer
               t125.INTEGER_0_MAX

           t125.minimumParameters  minimumParameters
               No value
               t125.DomainParameters

           t125.numPriorities  numPriorities
               Unsigned 32-bit integer
               t125.INTEGER_0_MAX

           t125.plumbDomainIndication  plumbDomainIndication
               No value
               t125.PlumbDomainIndication

           t125.private  private
               No value
               t125.T_private

           t125.protocolVersion  protocolVersion
               Unsigned 32-bit integer
               t125.INTEGER_0_MAX

           t125.purgeChannelIds  purgeChannelIds
               Unsigned 32-bit integer
               t125.SET_OF_ChannelId

           t125.purgeChannelsIndication  purgeChannelsIndication
               No value
               t125.PurgeChannelsIndication

           t125.purgeTokenIds  purgeTokenIds
               Unsigned 32-bit integer
               t125.SET_OF_TokenId

           t125.purgeTokensIndication  purgeTokensIndication
               No value
               t125.PurgeTokensIndication

           t125.reason  reason
               Unsigned 32-bit integer
               t125.Reason

           t125.recipient  recipient
               Unsigned 32-bit integer
               t125.UserId

           t125.rejectMCSPDUUltimatum  rejectMCSPDUUltimatum
               No value
               t125.RejectMCSPDUUltimatum

           t125.requested  requested
               Unsigned 32-bit integer
               t125.ChannelId

           t125.result  result
               Unsigned 32-bit integer
               t125.Result

           t125.segmentation  segmentation
               Byte array
               t125.Segmentation

           t125.sendDataIndication  sendDataIndication
               No value
               t125.SendDataIndication

           t125.sendDataRequest  sendDataRequest
               No value
               t125.SendDataRequest

           t125.static  static
               No value
               t125.T_static

           t125.subHeight  subHeight
               Unsigned 32-bit integer
               t125.INTEGER_0_MAX

           t125.subInterval  subInterval
               Unsigned 32-bit integer
               t125.INTEGER_0_MAX

           t125.targetParameters  targetParameters
               No value
               t125.DomainParameters

           t125.tokenGiveConfirm  tokenGiveConfirm
               No value
               t125.TokenGiveConfirm

           t125.tokenGiveIndication  tokenGiveIndication
               No value
               t125.TokenGiveIndication

           t125.tokenGiveRequest  tokenGiveRequest
               No value
               t125.TokenGiveRequest

           t125.tokenGiveResponse  tokenGiveResponse
               No value
               t125.TokenGiveResponse

           t125.tokenGrabConfirm  tokenGrabConfirm
               No value
               t125.TokenGrabConfirm

           t125.tokenGrabRequest  tokenGrabRequest
               No value
               t125.TokenGrabRequest

           t125.tokenId  tokenId
               Unsigned 32-bit integer
               t125.TokenId

           t125.tokenInhibitConfirm  tokenInhibitConfirm
               No value
               t125.TokenInhibitConfirm

           t125.tokenInhibitRequest  tokenInhibitRequest
               No value
               t125.TokenInhibitRequest

           t125.tokenPleaseIndication  tokenPleaseIndication
               No value
               t125.TokenPleaseIndication

           t125.tokenPleaseRequest  tokenPleaseRequest
               No value
               t125.TokenPleaseRequest

           t125.tokenReleaseConfirm  tokenReleaseConfirm
               No value
               t125.TokenReleaseConfirm

           t125.tokenReleaseRequest  tokenReleaseRequest
               No value
               t125.TokenReleaseRequest

           t125.tokenStatus  tokenStatus
               Unsigned 32-bit integer
               t125.TokenStatus

           t125.tokenTestConfirm  tokenTestConfirm
               No value
               t125.TokenTestConfirm

           t125.tokenTestRequest  tokenTestRequest
               No value
               t125.TokenTestRequest

           t125.ungivable  ungivable
               No value
               t125.T_ungivable

           t125.uniformSendDataIndication  uniformSendDataIndication
               No value
               t125.UniformSendDataIndication

           t125.uniformSendDataRequest  uniformSendDataRequest
               No value
               t125.UniformSendDataRequest

           t125.upwardFlag  upwardFlag
               Boolean
               t125.BOOLEAN

           t125.userData  userData
               Byte array
               t125.OCTET_STRING

           t125.userId  userId
               No value
               t125.T_userId

           t125.userIds  userIds
               Unsigned 32-bit integer
               t125.SET_OF_UserId

   Malformed Packet (malformed)
   Media Gateway Control Protocol (mgcp)
           mgcp.dup  Duplicate Message
               Unsigned 32-bit integer
               Duplicate Message

           mgcp.messagecount  MGCP Message Count
               Unsigned 32-bit integer
               Number of MGCP message in a packet

           mgcp.param.bearerinfo  BearerInformation (B)
               String
               Bearer Information

           mgcp.param.callid  CallId (C)
               String
               Call Id

           mgcp.param.capabilities  Capabilities (A)
               String
               Capabilities

           mgcp.param.connectionid  ConnectionIdentifier (I)
               String
               Connection Identifier

           mgcp.param.connectionmode  ConnectionMode (M)
               String
               Connection Mode

           mgcp.param.connectionparam  ConnectionParameters (P)
               String
               Connection Parameters

           mgcp.param.connectionparam.ji  Jitter (JI)
               Unsigned 32-bit integer
               Average inter-packet arrival jitter in milliseconds (P:JI)

           mgcp.param.connectionparam.la  Latency (LA)
               Unsigned 32-bit integer
               Average latency in milliseconds (P:LA)

           mgcp.param.connectionparam.or  Octets received (OR)
               Unsigned 32-bit integer
               Octets received (P:OR)

           mgcp.param.connectionparam.os  Octets sent (OS)
               Unsigned 32-bit integer
               Octets sent (P:OS)

           mgcp.param.connectionparam.pcrji  Remote Jitter (PC/RJI)
               Unsigned 32-bit integer
               Remote Jitter (P:PC/RJI)

           mgcp.param.connectionparam.pcros  Remote Octets sent (PC/ROS)
               Unsigned 32-bit integer
               Remote Octets sent (P:PC/ROS)

           mgcp.param.connectionparam.pcrpl  Remote Packets lost (PC/RPL)
               Unsigned 32-bit integer
               Remote Packets lost (P:PC/RPL)

           mgcp.param.connectionparam.pcrps  Remote Packets sent (PC/RPS)
               Unsigned 32-bit integer
               Remote Packets sent (P:PC/RPS)

           mgcp.param.connectionparam.pl  Packets lost (PL)
               Unsigned 32-bit integer
               Packets lost (P:PL)

           mgcp.param.connectionparam.pr  Packets received (PR)
               Unsigned 32-bit integer
               Packets received (P:PR)

           mgcp.param.connectionparam.ps  Packets sent (PS)
               Unsigned 32-bit integer
               Packets sent (P:PS)

           mgcp.param.connectionparam.x  Vendor Extension
               String
               Vendor Extension (P:X-*)

           mgcp.param.detectedevents  DetectedEvents (T)
               String
               Detected Events

           mgcp.param.digitmap  DigitMap (D)
               String
               Digit Map

           mgcp.param.eventstates  EventStates (ES)
               String
               Event States

           mgcp.param.extension  Extension Parameter (non-critical)
               String
               Extension Parameter

           mgcp.param.extensioncritical  Extension Parameter (critical)
               String
               Critical Extension Parameter

           mgcp.param.invalid  Invalid Parameter
               String
               Invalid Parameter

           mgcp.param.localconnectionoptions  LocalConnectionOptions (L)
               String
               Local Connection Options

           mgcp.param.localconnectionoptions.a  Codecs (a)
               String
               Codecs

           mgcp.param.localconnectionoptions.b  Bandwidth (b)
               String
               Bandwidth

           mgcp.param.localconnectionoptions.dqgi  D-QoS GateID (dq-gi)
               String
               D-QoS GateID

           mgcp.param.localconnectionoptions.dqrd  D-QoS Reserve Destination (dq-rd)
               String
               D-QoS Reserve Destination

           mgcp.param.localconnectionoptions.dqri  D-QoS Resource ID (dq-ri)
               String
               D-QoS Resource ID

           mgcp.param.localconnectionoptions.dqrr  D-QoS Resource Reservation (dq-rr)
               String
               D-QoS Resource Reservation

           mgcp.param.localconnectionoptions.e  Echo Cancellation (e)
               String
               Echo Cancellation

           mgcp.param.localconnectionoptions.esccd  Content Destination (es-ccd)
               String
               Content Destination

           mgcp.param.localconnectionoptions.escci  Content Identifier (es-cci)
               String
               Content Identifier

           mgcp.param.localconnectionoptions.fmtp  Media Format (fmtp)
               String
               Media Format

           mgcp.param.localconnectionoptions.gc  Gain Control (gc)
               Unsigned 32-bit integer
               Gain Control

           mgcp.param.localconnectionoptions.k  Encryption Key (k)
               String
               Encryption Key

           mgcp.param.localconnectionoptions.nt  Network Type (nt)
               String
               Network Type

           mgcp.param.localconnectionoptions.ofmtp  Optional Media Format (o-fmtp)
               String
               Optional Media Format

           mgcp.param.localconnectionoptions.p  Packetization period (p)
               Unsigned 32-bit integer
               Packetization period

           mgcp.param.localconnectionoptions.r  Resource Reservation (r)
               String
               Resource Reservation

           mgcp.param.localconnectionoptions.rcnf  Reservation Confirmation (r-cnf)
               String
               Reservation Confirmation

           mgcp.param.localconnectionoptions.rdir  Reservation Direction (r-dir)
               String
               Reservation Direction

           mgcp.param.localconnectionoptions.rsh  Resource Sharing (r-sh)
               String
               Resource Sharing

           mgcp.param.localconnectionoptions.s  Silence Suppression (s)
               String
               Silence Suppression

           mgcp.param.localconnectionoptions.scrtcp  RTCP ciphersuite (sc-rtcp)
               String
               RTCP ciphersuite

           mgcp.param.localconnectionoptions.scrtp  RTP ciphersuite (sc-rtp)
               String
               RTP ciphersuite

           mgcp.param.localconnectionoptions.t  Type of Service (r)
               String
               Type of Service

           mgcp.param.maxmgcpdatagram  MaxMGCPDatagram (MD)
               String
               Maximum MGCP Datagram size

           mgcp.param.notifiedentity  NotifiedEntity (N)
               String
               Notified Entity

           mgcp.param.observedevents  ObservedEvents (O)
               String
               Observed Events

           mgcp.param.packagelist  PackageList (PL)
               String
               Package List

           mgcp.param.quarantinehandling  QuarantineHandling (Q)
               String
               Quarantine Handling

           mgcp.param.reasoncode  ReasonCode (E)
               String
               Reason Code

           mgcp.param.reqevents  RequestedEvents (R)
               String
               Requested Events

           mgcp.param.reqinfo  RequestedInfo (F)
               String
               Requested Info

           mgcp.param.requestid  RequestIdentifier (X)
               String
               Request Identifier

           mgcp.param.restartdelay  RestartDelay (RD)
               String
               Restart Delay

           mgcp.param.restartmethod  RestartMethod (RM)
               String
               Restart Method

           mgcp.param.rspack  ResponseAck (K)
               String
               Response Ack

           mgcp.param.secondconnectionid  SecondConnectionID (I2)
               String
               Second Connection Identifier

           mgcp.param.secondendpointid  SecondEndpointID (Z2)
               String
               Second 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
               Duplicate Request

           mgcp.req.dup.frame  Original Request Frame
               Frame number
               Frame containing original request

           mgcp.req.endpoint  Endpoint
               String
               Endpoint referenced by the message

           mgcp.req.verb  Verb
               String
               Name of the verb

           mgcp.reqframe  Request Frame
               Frame number
               Request Frame

           mgcp.rsp  Response
               Boolean
               TRUE if MGCP response

           mgcp.rsp.dup  Duplicate Response
               Unsigned 32-bit integer
               Duplicate Response

           mgcp.rsp.dup.frame  Original Response Frame
               Frame number
               Frame containing original response

           mgcp.rsp.rspcode  Response Code
               Unsigned 32-bit integer
               Response Code

           mgcp.rsp.rspstring  Response String
               String
               Response String

           mgcp.rspframe  Response Frame
               Frame number
               Response Frame

           mgcp.time  Time from request
               Time duration
               Timedelta between Request and Response

           mgcp.transid  Transaction ID
               String
               Transaction ID of this message

           mgcp.version  Version
               String
               MGCP Version

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

           msrp.authorization  Authorization
               String
               Authorization

           msrp.byte.range  Byte Range
               String
               Byte Range

           msrp.cnt.flg  Continuation-flag
               String
               Continuation-flag

           msrp.content.description  Content-Description
               String
               Content-Description

           msrp.content.disposition  Content-Disposition
               String
               Content-Disposition

           msrp.content.id  Content-ID
               String
               Content-ID

           msrp.content.type  Content-Type
               String
               Content-Type

           msrp.data  Data
               String
               Data

           msrp.end.line  End Line
               String
               End Line

           msrp.failure.report  Failure Report
               String
               Failure Report

           msrp.from.path  From Path
               String
               From Path

           msrp.messageid  Message ID
               String
               Message ID

           msrp.method  Method
               String
               Method

           msrp.msg.hdr  Message Header
               No value
               Message Header

           msrp.request.line  Request Line
               String
               Request Line

           msrp.response.line  Response Line
               String
               Response Line

           msrp.setup  Stream setup
               String
               Stream setup, method and frame number

           msrp.setup-frame  Setup frame
               Frame number
               Frame that set up this stream

           msrp.setup-method  Setup Method
               String
               Method used to set up this stream

           msrp.status  Status
               String
               Status

           msrp.status.code  Status code
               Unsigned 16-bit integer
               Status code

           msrp.success.report  Success Report
               String
               Success Report

           msrp.to.path  To Path
               String
               To Path

           msrp.transaction.id  Transaction Id
               String
               Transaction Id

           msrp.use.path  Use-Path
               String
               Use-Path

           msrp.www.authenticate  WWW-Authenticate
               String
               WWW-Authenticate

   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  Signalling Link Selector
               Unsigned 32-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
               Japan management spare

           mtp3mg.status  Status
               Unsigned 8-bit integer
               Congestion status

           mtp3mg.test  Japan test message
               Unsigned 8-bit integer
               Japan test message type

           mtp3mg.test.h0  H0 (Message Group)
               Unsigned 8-bit integer
               Message group identifier

           mtp3mg.test.h1  H1 (Message)
               Unsigned 8-bit integer
               SLT message type

           mtp3mg.test.length  Test length
               Unsigned 8-bit integer
               Signalling link test pattern length

           mtp3mg.test.pattern  Japan test message pattern
               Unsigned 16-bit integer
               Japan test message pattern

           mtp3mg.test.spare  Japan test message spare
               Unsigned 8-bit integer
               Japan test message spare

           mtp3mg.user  User
               Unsigned 8-bit integer
               Unavailable user part

   Meta Analysis Tracing Engine (mate)
   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
               Operation

           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
               Operation

   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
               Operation

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

           netlogon.alias_rid  Alias RID
               Unsigned 32-bit integer

           netlogon.attrs  Attributes
               Unsigned 32-bit integer
               Attributes

           netlogon.audit_retention_period  Audit Retention Period
               Time duration
               Audit retention period

           netlogon.auditing_mode  Auditing Mode
               Unsigned 8-bit integer
               Auditing Mode

           netlogon.auth.data  Auth Data
               Byte array
               Auth Data

           netlogon.auth.size  Auth Size
               Unsigned 32-bit integer
               Size of AuthData in bytes

           netlogon.auth_flags  Auth Flags
               Unsigned 32-bit integer

           netlogon.authoritative  Authoritative
               Unsigned 8-bit integer

           netlogon.bad_pw_count  Bad PW Count
               Unsigned 32-bit integer
               Number of failed logins

           netlogon.bad_pw_count16  Bad PW Count
               Unsigned 16-bit integer
               Number of failed logins

           netlogon.blob  BLOB
               Byte array
               BLOB

           netlogon.blob.size  Size
               Unsigned 32-bit integer
               Size in bytes of BLOB

           netlogon.challenge  Challenge
               Byte array
               Netlogon challenge

           netlogon.cipher_current_data  Cipher Current Data
               Byte array

           netlogon.cipher_current_set_time  Cipher Current Set Time
               Date/Time stamp
               Time when current cipher was initiated

           netlogon.cipher_len  Cipher Len
               Unsigned 32-bit integer

           netlogon.cipher_maxlen  Cipher Max Len
               Unsigned 32-bit integer

           netlogon.cipher_old_data  Cipher Old Data
               Byte array

           netlogon.cipher_old_set_time  Cipher Old Set Time
               Date/Time stamp
               Time when previous cipher was initiated

           netlogon.client.site_name  Client Site Name
               String
               Client Site Name

           netlogon.code  Code
               Unsigned 32-bit integer
               Code

           netlogon.codepage  Codepage
               Unsigned 16-bit integer
               Codepage setting for this account

           netlogon.comment  Comment
               String
               Comment

           netlogon.computer_name  Computer Name
               String
               Computer Name

           netlogon.count  Count
               Unsigned 32-bit integer

           netlogon.country  Country
               Unsigned 16-bit integer
               Country setting for this account

           netlogon.credential  Credential
               Byte array
               Netlogon Credential

           netlogon.database_id  Database Id
               Unsigned 32-bit integer
               Database Id

           netlogon.db_create_time  DB Create Time
               Date/Time stamp
               Time when created

           netlogon.db_modify_time  DB Modify Time
               Date/Time stamp
               Time when last modified

           netlogon.dc.address  DC Address
               String
               DC Address

           netlogon.dc.address_type  DC Address Type
               Unsigned 32-bit integer
               DC Address Type

           netlogon.dc.flags  Domain Controller Flags
               Unsigned 32-bit integer
               Domain Controller Flags

           netlogon.dc.flags.closest  Closest
               Boolean
               If this is the closest server

           netlogon.dc.flags.dns_controller  DNS Controller
               Boolean
               If this server is a DNS Controller

           netlogon.dc.flags.dns_domain  DNS Domain
               Boolean

           netlogon.dc.flags.dns_forest  DNS Forest
               Boolean

           netlogon.dc.flags.ds  DS
               Boolean
               If this server is a DS

           netlogon.dc.flags.gc  GC
               Boolean
               If this server is a GC

           netlogon.dc.flags.good_timeserv  Good Timeserv
               Boolean
               If this is a Good TimeServer

           netlogon.dc.flags.kdc  KDC
               Boolean
               If this is a KDC

           netlogon.dc.flags.ldap  LDAP
               Boolean
               If this is an LDAP server

           netlogon.dc.flags.ndnc  NDNC
               Boolean
               If this is an NDNC server

           netlogon.dc.flags.pdc  PDC
               Boolean
               If this server is a PDC

           netlogon.dc.flags.timeserv  Timeserv
               Boolean
               If this server is a TimeServer

           netlogon.dc.flags.writable  Writable
               Boolean
               If this server can do updates to the database

           netlogon.dc.name  DC Name
               String
               DC Name

           netlogon.dc.site_name  DC Site Name
               String
               DC Site Name

           netlogon.delta_type  Delta Type
               Unsigned 16-bit integer
               Delta Type

           netlogon.dir_drive  Dir Drive
               String
               Drive letter for home directory

           netlogon.dns.forest_name  DNS Forest Name
               String
               DNS Forest Name

           netlogon.dns_domain  DNS Domain
               String
               DNS Domain Name

           netlogon.dns_host  DNS Host
               String
               DNS Host

           netlogon.dnsdomaininfo  DnsDomainInfo
               No value

           netlogon.domain  Domain
               String
               Domain

           netlogon.domain_create_time  Domain Create Time
               Date/Time stamp
               Time when this domain was created

           netlogon.domain_modify_time  Domain Modify Time
               Date/Time stamp
               Time when this domain was last modified

           netlogon.dos.rc  DOS error code
               Unsigned 32-bit integer
               DOS Error Code

           netlogon.downlevel_domain  Downlevel Domain
               String
               Downlevel Domain Name

           netlogon.dummy  Dummy
               String
               Dummy string

           netlogon.entries  Entries
               Unsigned 32-bit integer

           netlogon.event_audit_option  Event Audit Option
               Unsigned 32-bit integer
               Event audit option

           netlogon.flags  Flags
               Unsigned 32-bit integer

           netlogon.full_name  Full Name
               String
               Full Name

           netlogon.get_dcname.request.flags  Flags
               Unsigned 32-bit integer
               Flags for DSGetDCName request

           netlogon.get_dcname.request.flags.avoid_self  Avoid Self
               Boolean
               Return another DC than the one we ask

           netlogon.get_dcname.request.flags.background_only  Background Only
               Boolean
               If we want cached data, even if it may have expired

           netlogon.get_dcname.request.flags.ds_preferred  DS Preferred
               Boolean
               Whether we prefer the call to return a w2k server (if available)

           netlogon.get_dcname.request.flags.ds_required  DS Required
               Boolean
               Whether we require that the returned DC supports w2k or not

           netlogon.get_dcname.request.flags.force_rediscovery  Force Rediscovery
               Boolean
               Whether to allow the server to returned cached information or not

           netlogon.get_dcname.request.flags.gc_server_required  GC Required
               Boolean
               Whether we require that the returned DC is a Global Catalog server

           netlogon.get_dcname.request.flags.good_timeserv_preferred  Timeserv Preferred
               Boolean
               If we prefer Windows Time Servers

           netlogon.get_dcname.request.flags.ip_required  IP Required
               Boolean
               If we requre the IP of the DC in the reply

           netlogon.get_dcname.request.flags.is_dns_name  Is DNS Name
               Boolean
               If the specified domain name is a DNS name

           netlogon.get_dcname.request.flags.is_flat_name  Is Flat Name
               Boolean
               If the specified domain name is a NetBIOS name

           netlogon.get_dcname.request.flags.kdc_required  KDC Required
               Boolean
               If we require that the returned server is a KDC

           netlogon.get_dcname.request.flags.only_ldap_needed  Only LDAP Needed
               Boolean
               We just want an LDAP server, it does not have to be a DC

           netlogon.get_dcname.request.flags.pdc_required  PDC Required
               Boolean
               Whether we require the returned DC to be the PDC

           netlogon.get_dcname.request.flags.return_dns_name  Return DNS Name
               Boolean
               Only return a DNS name (or an error)

           netlogon.get_dcname.request.flags.return_flat_name  Return Flat Name
               Boolean
               Only return a NetBIOS name (or an error)

           netlogon.get_dcname.request.flags.timeserv_required  Timeserv Required
               Boolean
               If we require the returned server to be a WindowsTimeServ server

           netlogon.get_dcname.request.flags.writable_required  Writable Required
               Boolean
               If we require that the returned server is writable

           netlogon.group_desc  Group Desc
               String
               Group Description

           netlogon.group_name  Group Name
               String
               Group Name

           netlogon.group_rid  Group RID
               Unsigned 32-bit integer

           netlogon.groups.attrs.enabled  Enabled
               Boolean
               The group attributes ENABLED flag

           netlogon.groups.attrs.enabled_by_default  Enabled By Default
               Boolean
               The group attributes ENABLED_BY_DEFAULT flag

           netlogon.groups.attrs.mandatory  Mandatory
               Boolean
               The group attributes MANDATORY flag

           netlogon.handle  Handle
               String
               Logon Srv Handle

           netlogon.home_dir  Home Dir
               String
               Home Directory

           netlogon.kickoff_time  Kickoff Time
               Date/Time stamp
               Time when this user will be kicked off

           netlogon.last_logoff_time  Last Logoff Time
               Date/Time stamp
               Time for last time this user logged off

           netlogon.len  Len
               Unsigned 32-bit integer
               Length

           netlogon.level  Level
               Unsigned 32-bit integer
               Which option of the union is represented here

           netlogon.level16  Level
               Unsigned 16-bit integer
               Which option of the union is represented here

           netlogon.lm_chal_resp  LM Chal resp
               Byte array
               Challenge response for LM authentication

           netlogon.lm_owf_pwd  LM Pwd
               Byte array
               LanManager OWF Password

           netlogon.lm_owf_pwd.encrypted  Encrypted LM Pwd
               Byte array
               Encrypted LanManager OWF Password

           netlogon.lm_pwd_present  LM PWD Present
               Unsigned 8-bit integer
               Is LanManager password present for this account?

           netlogon.logoff_time  Logoff Time
               Date/Time stamp
               Time for last time this user logged off

           netlogon.logon_attempts  Logon Attempts
               Unsigned 32-bit integer
               Number of logon attempts

           netlogon.logon_count  Logon Count
               Unsigned 32-bit integer
               Number of successful logins

           netlogon.logon_count16  Logon Count
               Unsigned 16-bit integer
               Number of successful logins

           netlogon.logon_id  Logon ID
               Unsigned 64-bit integer
               Logon ID

           netlogon.logon_script  Logon Script
               String
               Logon Script

           netlogon.logon_time  Logon Time
               Date/Time stamp
               Time for last time this user logged on

           netlogon.max_audit_event_count  Max Audit Event Count
               Unsigned 32-bit integer
               Max audit event count

           netlogon.max_log_size  Max Log Size
               Unsigned 32-bit integer
               Max Size of log

           netlogon.max_size  Max Size
               Unsigned 32-bit integer
               Max Size of database

           netlogon.max_working_set_size  Max Working Set Size
               Unsigned 32-bit integer

           netlogon.min_passwd_len  Min Password Len
               Unsigned 16-bit integer
               Minimum length of password

           netlogon.min_working_set_size  Min Working Set Size
               Unsigned 32-bit integer

           netlogon.modify_count  Modify Count
               Unsigned 64-bit integer
               How many times the object has been modified

           netlogon.neg_flags  Neg Flags
               Unsigned 32-bit integer
               Negotiation Flags

           netlogon.next_reference  Next Reference
               Unsigned 32-bit integer

           netlogon.nonpaged_pool_limit  Non-Paged Pool Limit
               Unsigned 32-bit integer

           netlogon.nt_chal_resp  NT Chal resp
               Byte array
               Challenge response for NT authentication

           netlogon.nt_owf_pwd  NT Pwd
               Byte array
               NT OWF Password

           netlogon.nt_pwd_present  NT PWD Present
               Unsigned 8-bit integer
               Is NT password present for this account?

           netlogon.num_dc  Num DCs
               Unsigned 32-bit integer
               Number of domain controllers

           netlogon.num_deltas  Num Deltas
               Unsigned 32-bit integer
               Number of SAM Deltas in array

           netlogon.num_other_groups  Num Other Groups
               Unsigned 32-bit integer

           netlogon.num_rids  Num RIDs
               Unsigned 32-bit integer
               Number of RIDs

           netlogon.num_trusts  Num Trusts
               Unsigned 32-bit integer

           netlogon.oem_info  OEM Info
               String
               OEM Info

           netlogon.opnum  Operation
               Unsigned 16-bit integer
               Operation

           netlogon.pac.data  Pac Data
               Byte array
               Pac Data

           netlogon.pac.size  Pac Size
               Unsigned 32-bit integer
               Size of PacData in bytes

           netlogon.page_file_limit  Page File Limit
               Unsigned 32-bit integer

           netlogon.paged_pool_limit  Paged Pool Limit
               Unsigned 32-bit integer

           netlogon.param_ctrl  Param Ctrl
               Unsigned 32-bit integer
               Param ctrl

           netlogon.parameters  Parameters
               String
               Parameters

           netlogon.parent_index  Parent Index
               Unsigned 32-bit integer
               Parent Index

           netlogon.passwd_history_len  Passwd History Len
               Unsigned 16-bit integer
               Length of password history

           netlogon.pdc_connection_status  PDC Connection Status
               Unsigned 32-bit integer
               PDC Connection Status

           netlogon.principal  Principal
               String
               Principal

           netlogon.priv  Priv
               Unsigned 32-bit integer

           netlogon.privilege_control  Privilege Control
               Unsigned 32-bit integer

           netlogon.privilege_entries  Privilege Entries
               Unsigned 32-bit integer

           netlogon.privilege_name  Privilege Name
               String

           netlogon.profile_path  Profile Path
               String
               Profile Path

           netlogon.pwd_age  PWD Age
               Time duration
               Time since this users password was changed

           netlogon.pwd_can_change_time  PWD Can Change
               Date/Time stamp
               When this users password may be changed

           netlogon.pwd_expired  PWD Expired
               Unsigned 8-bit integer
               Whether this password has expired or not

           netlogon.pwd_last_set_time  PWD Last Set
               Date/Time stamp
               Last time this users password was changed

           netlogon.pwd_must_change_time  PWD Must Change
               Date/Time stamp
               When this users password must be changed

           netlogon.rc  Return code
               Unsigned 32-bit integer
               Netlogon return code

           netlogon.reference  Reference
               Unsigned 32-bit integer

           netlogon.reserved  Reserved
               Unsigned 32-bit integer
               Reserved

           netlogon.resourcegroupcount  ResourceGroup count
               Unsigned 32-bit integer
               Number of Resource Groups

           netlogon.restart_state  Restart State
               Unsigned 16-bit integer
               Restart State

           netlogon.rid  User RID
               Unsigned 32-bit integer

           netlogon.sec_chan_type  Sec Chan Type
               Unsigned 16-bit integer
               Secure Channel Type

           netlogon.secchan.bind.unknown1  Unknown1
               Unsigned 32-bit integer

           netlogon.secchan.bind.unknown2  Unknown2
               Unsigned 32-bit integer

           netlogon.secchan.bind_ack.unknown1  Unknown1
               Unsigned 32-bit integer

           netlogon.secchan.bind_ack.unknown2  Unknown2
               Unsigned 32-bit integer

           netlogon.secchan.bind_ack.unknown3  Unknown3
               Unsigned 32-bit integer

           netlogon.secchan.digest  Packet Digest
               Byte array
               Packet Digest

           netlogon.secchan.domain  Domain
               String

           netlogon.secchan.host  Host
               String

           netlogon.secchan.nonce  Nonce
               Byte array
               Nonce

           netlogon.secchan.seq  Sequence No
               Byte array
               Sequence No

           netlogon.secchan.sig  Signature
               Byte array
               Signature

           netlogon.secchan.verifier  Secure Channel Verifier
               No value
               Verifier

           netlogon.security_information  Security Information
               Unsigned 32-bit integer
               Security Information

           netlogon.sensitive_data  Data
               Byte array
               Sensitive Data

           netlogon.sensitive_data_flag  Sensitive Data
               Unsigned 8-bit integer
               Sensitive data flag

           netlogon.sensitive_data_len  Length
               Unsigned 32-bit integer
               Length of sensitive data

           netlogon.serial_number  Serial Number
               Unsigned 32-bit integer

           netlogon.server  Server
               String
               Server

           netlogon.site_name  Site Name
               String
               Site Name

           netlogon.sync_context  Sync Context
               Unsigned 32-bit integer
               Sync Context

           netlogon.system_flags  System Flags
               Unsigned 32-bit integer

           netlogon.tc_connection_status  TC Connection Status
               Unsigned 32-bit integer
               TC Connection Status

           netlogon.time_limit  Time Limit
               Time duration

           netlogon.timestamp  Timestamp
               Date/Time stamp

           netlogon.trust.attribs.cross_organization  Cross Organization
               Boolean

           netlogon.trust.attribs.forest_transitive  Forest Transitive
               Boolean

           netlogon.trust.attribs.non_transitive  Non Transitive
               Boolean

           netlogon.trust.attribs.quarantined_domain  Quarantined Domain
               Boolean

           netlogon.trust.attribs.treat_as_external  Treat As External
               Boolean

           netlogon.trust.attribs.uplevel_only  Uplevel Only
               Boolean

           netlogon.trust.attribs.within_forest  Within Forest
               Boolean

           netlogon.trust.flags.in_forest  In Forest
               Boolean
               Whether this domain is a member of the same forest as the servers domain

           netlogon.trust.flags.inbound  Inbound Trust
               Boolean
               Inbound trust. Whether the domain directly trusts the queried servers domain

           netlogon.trust.flags.native_mode  Native Mode
               Boolean
               Whether the domain is a w2k native mode domain or not

           netlogon.trust.flags.outbound  Outbound Trust
               Boolean
               Outbound Trust. Whether the domain is directly trusted by the servers domain

           netlogon.trust.flags.primary  Primary
               Boolean
               Whether the domain is the primary domain for the queried server or not

           netlogon.trust.flags.tree_root  Tree Root
               Boolean
               Whether the domain is the root of the tree for the queried server

           netlogon.trust_attribs  Trust Attributes
               Unsigned 32-bit integer
               Trust Attributes

           netlogon.trust_flags  Trust Flags
               Unsigned 32-bit integer
               Trust Flags

           netlogon.trust_type  Trust Type
               Unsigned 32-bit integer
               Trust Type

           netlogon.trusted_dc  Trusted DC
               String
               Trusted DC

           netlogon.unknown.char  Unknown char
               Unsigned 8-bit integer
               Unknown char. If you know what this is, contact wireshark developers.

           netlogon.unknown.long  Unknown long
               Unsigned 32-bit integer
               Unknown long. If you know what this is, contact wireshark developers.

           netlogon.unknown.short  Unknown short
               Unsigned 16-bit integer
               Unknown short. If you know what this is, contact wireshark developers.

           netlogon.unknown_string  Unknown string
               String
               Unknown string. If you know what this is, contact wireshark developers.

           netlogon.user.account_control.account_auto_locked  Account Auto Locked
               Boolean
               The user account control account_auto_locked flag

           netlogon.user.account_control.account_disabled  Account Disabled
               Boolean
               The user account control account_disabled flag

           netlogon.user.account_control.dont_expire_password  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
               User Session Key

           netlogon.validation_level  Validation Level
               Unsigned 16-bit integer
               Requested level of validation

           netlogon.werr.rc  WERR error code
               Unsigned 32-bit integer
               WERR Error Code

           netlogon.wkst.fqdn  Wkst FQDN
               String
               Workstation FQDN

           netlogon.wkst.name  Wkst Name
               String
               Workstation Name

           netlogon.wkst.os  Wkst OS
               String
               Workstation OS

           netlogon.wkst.site_name  Wkst Site Name
               String
               Workstation Site Name

           netlogon.wksts  Workstations
               String
               Workstations

   Microsoft Plug and Play service (pnp)
           pnp.opnum  Operation
               Unsigned 16-bit integer
               Operation

   Microsoft Routing and Remote Access Service (rras)
           rras.opnum  Operation
               Unsigned 16-bit integer
               Operation

   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
               Operation

           svcctl.rc  Return code
               Unsigned 32-bit integer
               SVCCTL return code

           svcctl.required_size  Required Size
               Unsigned 32-bit integer
               SVCCTL required size of buffer for data to fit

           svcctl.resume  Resume Handle
               Unsigned 32-bit integer
               SVCCTL resume handle

           svcctl.scm_rights_connect  Connect
               Boolean
               SVCCTL Rights to connect to SCM

           svcctl.scm_rights_create_service  Create Service
               Boolean
               SVCCTL Rights to create services

           svcctl.scm_rights_enumerate_service  Enumerate Service
               Boolean
               SVCCTL Rights to enumerate services

           svcctl.scm_rights_lock  Lock
               Boolean
               SVCCTL Rights to lock database

           svcctl.scm_rights_modify_boot_config  Modify Boot Config
               Boolean
               SVCCTL Rights to modify boot config

           svcctl.scm_rights_query_lock_status  Query Lock Status
               Boolean
               SVCCTL Rights to query database lock status

           svcctl.service_state  State
               Unsigned 32-bit integer
               SVCCTL service state

           svcctl.service_type  Type
               Unsigned 32-bit integer
               SVCCTL type of service

           svcctl.size  Size
               Unsigned 32-bit integer
               SVCCTL size of buffer

   Microsoft Spool Subsystem (spoolss)
           secdescbuf.len  Length
               Unsigned 32-bit integer
               Length

           secdescbuf.max_len  Max len
               Unsigned 32-bit integer
               Max len

           secdescbuf.undoc  Undocumented
               Unsigned 32-bit integer
               Undocumented

           setprinterdataex.data  Data
               Byte array
               Data

           setprinterdataex.max_len  Max len
               Unsigned 32-bit integer
               Max len

           setprinterdataex.real_len  Real len
               Unsigned 32-bit integer
               Real len

           spoolprinterinfo.devmode_ptr  Devmode pointer
               Unsigned 32-bit integer
               Devmode pointer

           spoolprinterinfo.secdesc_ptr  Secdesc pointer
               Unsigned 32-bit integer
               Secdesc pointer

           spoolss.Datatype  Datatype
               String
               Datatype

           spoolss.access_mask.job_admin  Job admin
               Boolean
               Job admin

           spoolss.access_mask.printer_admin  Printer admin
               Boolean
               Printer admin

           spoolss.access_mask.printer_use  Printer use
               Boolean
               Printer use

           spoolss.access_mask.server_admin  Server admin
               Boolean
               Server admin

           spoolss.access_mask.server_enum  Server enum
               Boolean
               Server enum

           spoolss.access_required  Access required
               Unsigned 32-bit integer
               Access required

           spoolss.architecture  Architecture name
               String
               Architecture name

           spoolss.buffer.data  Buffer data
               Byte array
               Contents of buffer

           spoolss.buffer.size  Buffer size
               Unsigned 32-bit integer
               Size of buffer

           spoolss.clientmajorversion  Client major version
               Unsigned 32-bit integer
               Client printer driver major version

           spoolss.clientminorversion  Client minor version
               Unsigned 32-bit integer
               Client printer driver minor version

           spoolss.configfile  Config file
               String
               Printer name

           spoolss.datafile  Data file
               String
               Data file

           spoolss.defaultdatatype  Default data type
               String
               Default data type

           spoolss.dependentfiles  Dependent files
               String
               Dependent files

           spoolss.devicemodectr.size  Devicemode ctr size
               Unsigned 32-bit integer
               Devicemode ctr size

           spoolss.devmode  Devicemode
               Unsigned 32-bit integer
               Devicemode

           spoolss.devmode.bits_per_pel  Bits per pel
               Unsigned 32-bit integer
               Bits per pel

           spoolss.devmode.collate  Collate
               Unsigned 16-bit integer
               Collate

           spoolss.devmode.color  Color
               Unsigned 16-bit integer
               Color

           spoolss.devmode.copies  Copies
               Unsigned 16-bit integer
               Copies

           spoolss.devmode.default_source  Default source
               Unsigned 16-bit integer
               Default source

           spoolss.devmode.display_flags  Display flags
               Unsigned 32-bit integer
               Display flags

           spoolss.devmode.display_freq  Display frequency
               Unsigned 32-bit integer
               Display frequency

           spoolss.devmode.dither_type  Dither type
               Unsigned 32-bit integer
               Dither type

           spoolss.devmode.driver_extra  Driver extra
               Byte array
               Driver extra

           spoolss.devmode.driver_extra_len  Driver extra length
               Unsigned 32-bit integer
               Driver extra length

           spoolss.devmode.driver_version  Driver version
               Unsigned 16-bit integer
               Driver version

           spoolss.devmode.duplex  Duplex
               Unsigned 16-bit integer
               Duplex

           spoolss.devmode.fields  Fields
               Unsigned 32-bit integer
               Fields

           spoolss.devmode.fields.bits_per_pel  Bits per pel
               Boolean
               Bits per pel

           spoolss.devmode.fields.collate  Collate
               Boolean
               Collate

           spoolss.devmode.fields.color  Color
               Boolean
               Color

           spoolss.devmode.fields.copies  Copies
               Boolean
               Copies

           spoolss.devmode.fields.default_source  Default source
               Boolean
               Default source

           spoolss.devmode.fields.display_flags  Display flags
               Boolean
               Display flags

           spoolss.devmode.fields.display_frequency  Display frequency
               Boolean
               Display frequency

           spoolss.devmode.fields.dither_type  Dither type
               Boolean
               Dither type

           spoolss.devmode.fields.duplex  Duplex
               Boolean
               Duplex

           spoolss.devmode.fields.form_name  Form name
               Boolean
               Form name

           spoolss.devmode.fields.icm_intent  ICM intent
               Boolean
               ICM intent

           spoolss.devmode.fields.icm_method  ICM method
               Boolean
               ICM method

           spoolss.devmode.fields.log_pixels  Log pixels
               Boolean
               Log pixels

           spoolss.devmode.fields.media_type  Media type
               Boolean
               Media type

           spoolss.devmode.fields.nup  N-up
               Boolean
               N-up

           spoolss.devmode.fields.orientation  Orientation
               Boolean
               Orientation

           spoolss.devmode.fields.panning_height  Panning height
               Boolean
               Panning height

           spoolss.devmode.fields.panning_width  Panning width
               Boolean
               Panning width

           spoolss.devmode.fields.paper_length  Paper length
               Boolean
               Paper length

           spoolss.devmode.fields.paper_size  Paper size
               Boolean
               Paper size

           spoolss.devmode.fields.paper_width  Paper width
               Boolean
               Paper width

           spoolss.devmode.fields.pels_height  Pels height
               Boolean
               Pels height

           spoolss.devmode.fields.pels_width  Pels width
               Boolean
               Pels width

           spoolss.devmode.fields.position  Position
               Boolean
               Position

           spoolss.devmode.fields.print_quality  Print quality
               Boolean
               Print quality

           spoolss.devmode.fields.scale  Scale
               Boolean
               Scale

           spoolss.devmode.fields.tt_option  TT option
               Boolean
               TT option

           spoolss.devmode.fields.y_resolution  Y resolution
               Boolean
               Y resolution

           spoolss.devmode.icm_intent  ICM intent
               Unsigned 32-bit integer
               ICM intent

           spoolss.devmode.icm_method  ICM method
               Unsigned 32-bit integer
               ICM method

           spoolss.devmode.log_pixels  Log pixels
               Unsigned 16-bit integer
               Log pixels

           spoolss.devmode.media_type  Media type
               Unsigned 32-bit integer
               Media type

           spoolss.devmode.orientation  Orientation
               Unsigned 16-bit integer
               Orientation

           spoolss.devmode.panning_height  Panning height
               Unsigned 32-bit integer
               Panning height

           spoolss.devmode.panning_width  Panning width
               Unsigned 32-bit integer
               Panning width

           spoolss.devmode.paper_length  Paper length
               Unsigned 16-bit integer
               Paper length

           spoolss.devmode.paper_size  Paper size
               Unsigned 16-bit integer
               Paper size

           spoolss.devmode.paper_width  Paper width
               Unsigned 16-bit integer
               Paper width

           spoolss.devmode.pels_height  Pels height
               Unsigned 32-bit integer
               Pels height

           spoolss.devmode.pels_width  Pels width
               Unsigned 32-bit integer
               Pels width

           spoolss.devmode.print_quality  Print quality
               Unsigned 16-bit integer
               Print quality

           spoolss.devmode.reserved1  Reserved1
               Unsigned 32-bit integer
               Reserved1

           spoolss.devmode.reserved2  Reserved2
               Unsigned 32-bit integer
               Reserved2

           spoolss.devmode.scale  Scale
               Unsigned 16-bit integer
               Scale

           spoolss.devmode.size  Size
               Unsigned 32-bit integer
               Size

           spoolss.devmode.size2  Size2
               Unsigned 16-bit integer
               Size2

           spoolss.devmode.spec_version  Spec version
               Unsigned 16-bit integer
               Spec version

           spoolss.devmode.tt_option  TT option
               Unsigned 16-bit integer
               TT option

           spoolss.devmode.y_resolution  Y resolution
               Unsigned 16-bit integer
               Y resolution

           spoolss.document  Document name
               String
               Document name

           spoolss.driverdate  Driver Date
               Date/Time stamp
               Date of driver creation

           spoolss.drivername  Driver name
               String
               Driver name

           spoolss.driverpath  Driver path
               String
               Driver path

           spoolss.driverversion  Driver version
               Unsigned 32-bit integer
               Printer name

           spoolss.elapsed_time  Elapsed time
               Unsigned 32-bit integer
               Elapsed time

           spoolss.end_time  End time
               Unsigned 32-bit integer
               End time

           spoolss.enumforms.num  Num
               Unsigned 32-bit integer
               Num

           spoolss.enumjobs.firstjob  First job
               Unsigned 32-bit integer
               Index of first job to return

           spoolss.enumjobs.level  Info level
               Unsigned 32-bit integer
               Info level

           spoolss.enumjobs.numjobs  Num jobs
               Unsigned 32-bit integer
               Number of jobs to return

           spoolss.enumprinterdata.data_needed  Data size needed
               Unsigned 32-bit integer
               Buffer size needed for printerdata data

           spoolss.enumprinterdata.data_offered  Data size offered
               Unsigned 32-bit integer
               Buffer size offered for printerdata data

           spoolss.enumprinterdata.enumindex  Enum index
               Unsigned 32-bit integer
               Index for start of enumeration

           spoolss.enumprinterdata.value_len  Value length
               Unsigned 32-bit integer
               Size of printerdata value

           spoolss.enumprinterdata.value_needed  Value size needed
               Unsigned 32-bit integer
               Buffer size needed for printerdata value

           spoolss.enumprinterdata.value_offered  Value size offered
               Unsigned 32-bit integer
               Buffer size offered for printerdata value

           spoolss.enumprinterdataex.name  Name
               String
               Name

           spoolss.enumprinterdataex.name_len  Name len
               Unsigned 32-bit integer
               Name len

           spoolss.enumprinterdataex.name_offset  Name offset
               Unsigned 32-bit integer
               Name offset

           spoolss.enumprinterdataex.num_values  Num values
               Unsigned 32-bit integer
               Number of values returned

           spoolss.enumprinterdataex.val_dword.high  DWORD value (high)
               Unsigned 16-bit integer
               DWORD value (high)

           spoolss.enumprinterdataex.val_dword.low  DWORD value (low)
               Unsigned 16-bit integer
               DWORD value (low)

           spoolss.enumprinterdataex.value_len  Value len
               Unsigned 32-bit integer
               Value len

           spoolss.enumprinterdataex.value_offset  Value offset
               Unsigned 32-bit integer
               Value offset

           spoolss.enumprinterdataex.value_type  Value type
               Unsigned 32-bit integer
               Value type

           spoolss.enumprinters.flags  Flags
               Unsigned 32-bit integer
               Flags

           spoolss.enumprinters.flags.enum_connections  Enum connections
               Boolean
               Enum connections

           spoolss.enumprinters.flags.enum_default  Enum default
               Boolean
               Enum default

           spoolss.enumprinters.flags.enum_local  Enum local
               Boolean
               Enum local

           spoolss.enumprinters.flags.enum_name  Enum name
               Boolean
               Enum name

           spoolss.enumprinters.flags.enum_network  Enum network
               Boolean
               Enum network

           spoolss.enumprinters.flags.enum_remote  Enum remote
               Boolean
               Enum remote

           spoolss.enumprinters.flags.enum_shared  Enum shared
               Boolean
               Enum shared

           spoolss.form  Data
               Unsigned 32-bit integer
               Data

           spoolss.form.flags  Flags
               Unsigned 32-bit integer
               Flags

           spoolss.form.height  Height
               Unsigned 32-bit integer
               Height

           spoolss.form.horiz  Horizontal
               Unsigned 32-bit integer
               Horizontal

           spoolss.form.left  Left margin
               Unsigned 32-bit integer
               Left

           spoolss.form.level  Level
               Unsigned 32-bit integer
               Level

           spoolss.form.name  Name
               String
               Name

           spoolss.form.top  Top
               Unsigned 32-bit integer
               Top

           spoolss.form.unknown  Unknown
               Unsigned 32-bit integer
               Unknown

           spoolss.form.vert  Vertical
               Unsigned 32-bit integer
               Vertical

           spoolss.form.width  Width
               Unsigned 32-bit integer
               Width

           spoolss.hardwareid  Hardware ID
               String
               Hardware Identification Information

           spoolss.helpfile  Help file
               String
               Help file

           spoolss.hnd  Context handle
               Byte array
               SPOOLSS policy handle

           spoolss.job.bytesprinted  Job bytes printed
               Unsigned 32-bit integer
               Job bytes printed

           spoolss.job.id  Job ID
               Unsigned 32-bit integer
               Job identification number

           spoolss.job.pagesprinted  Job pages printed
               Unsigned 32-bit integer
               Job pages printed

           spoolss.job.position  Job position
               Unsigned 32-bit integer
               Job position

           spoolss.job.priority  Job priority
               Unsigned 32-bit integer
               Job priority

           spoolss.job.size  Job size
               Unsigned 32-bit integer
               Job size

           spoolss.job.status  Job status
               Unsigned 32-bit integer
               Job status

           spoolss.job.status.blocked  Blocked
               Boolean
               Blocked

           spoolss.job.status.deleted  Deleted
               Boolean
               Deleted

           spoolss.job.status.deleting  Deleting
               Boolean
               Deleting

           spoolss.job.status.error  Error
               Boolean
               Error

           spoolss.job.status.offline  Offline
               Boolean
               Offline

           spoolss.job.status.paperout  Paperout
               Boolean
               Paperout

           spoolss.job.status.paused  Paused
               Boolean
               Paused

           spoolss.job.status.printed  Printed
               Boolean
               Printed

           spoolss.job.status.printing  Printing
               Boolean
               Printing

           spoolss.job.status.spooling  Spooling
               Boolean
               Spooling

           spoolss.job.status.user_intervention  User intervention
               Boolean
               User intervention

           spoolss.job.totalbytes  Job total bytes
               Unsigned 32-bit integer
               Job total bytes

           spoolss.job.totalpages  Job total pages
               Unsigned 32-bit integer
               Job total pages

           spoolss.keybuffer.data  Key Buffer data
               Byte array
               Contents of buffer

           spoolss.keybuffer.size  Key Buffer size
               Unsigned 32-bit integer
               Size of buffer

           spoolss.machinename  Machine name
               String
               Machine name

           spoolss.majordriverversion  Major Driver Version
               Unsigned 32-bit integer
               Driver Version High

           spoolss.mfgname  Mfgname
               String
               Manufacturer Name

           spoolss.minordriverversion  Minor Driver Version
               Unsigned 32-bit integer
               Driver Version Low

           spoolss.monitorname  Monitor name
               String
               Monitor name

           spoolss.needed  Needed
               Unsigned 32-bit integer
               Size of buffer required for request

           spoolss.notify_field  Field
               Unsigned 16-bit integer
               Field

           spoolss.notify_info.count  Count
               Unsigned 32-bit integer
               Count

           spoolss.notify_info.flags  Flags
               Unsigned 32-bit integer
               Flags

           spoolss.notify_info.version  Version
               Unsigned 32-bit integer
               Version

           spoolss.notify_info_data.buffer  Buffer
               Unsigned 32-bit integer
               Buffer

           spoolss.notify_info_data.buffer.data  Buffer data
               Byte array
               Buffer data

           spoolss.notify_info_data.buffer.len  Buffer length
               Unsigned 32-bit integer
               Buffer length

           spoolss.notify_info_data.bufsize  Buffer size
               Unsigned 32-bit integer
               Buffer size

           spoolss.notify_info_data.count  Count
               Unsigned 32-bit integer
               Count

           spoolss.notify_info_data.jobid  Job Id
               Unsigned 32-bit integer
               Job Id

           spoolss.notify_info_data.type  Type
               Unsigned 16-bit integer
               Type

           spoolss.notify_info_data.value1  Value1
               Unsigned 32-bit integer
               Value1

           spoolss.notify_info_data.value2  Value2
               Unsigned 32-bit integer
               Value2

           spoolss.notify_option.count  Count
               Unsigned 32-bit integer
               Count

           spoolss.notify_option.reserved1  Reserved1
               Unsigned 16-bit integer
               Reserved1

           spoolss.notify_option.reserved2  Reserved2
               Unsigned 32-bit integer
               Reserved2

           spoolss.notify_option.reserved3  Reserved3
               Unsigned 32-bit integer
               Reserved3

           spoolss.notify_option.type  Type
               Unsigned 16-bit integer
               Type

           spoolss.notify_option_data.count  Count
               Unsigned 32-bit integer
               Count

           spoolss.notify_options.count  Count
               Unsigned 32-bit integer
               Count

           spoolss.notify_options.flags  Flags
               Unsigned 32-bit integer
               Flags

           spoolss.notify_options.version  Version
               Unsigned 32-bit integer
               Version

           spoolss.notifyname  Notify name
               String
               Notify name

           spoolss.oemrul  OEM URL
               String
               OEM URL - Website of Vendor

           spoolss.offered  Offered
               Unsigned 32-bit integer
               Size of buffer offered in this request

           spoolss.offset  Offset
               Unsigned 32-bit integer
               Offset of data

           spoolss.opnum  Operation
               Unsigned 16-bit integer
               Operation

           spoolss.outputfile  Output file
               String
               Output File

           spoolss.padding  Padding
               Unsigned 32-bit integer
               Some padding - conveys no semantic information

           spoolss.parameters  Parameters
               String
               Parameters

           spoolss.portname  Port name
               String
               Port name

           spoolss.previousdrivernames  Previous Driver Names
               String
               Previous Driver Names

           spoolss.printer.action  Action
               Unsigned 32-bit integer
               Action

           spoolss.printer.averageppm  Average PPM
               Unsigned 32-bit integer
               Average PPM

           spoolss.printer.build_version  Build version
               Unsigned 16-bit integer
               Build version

           spoolss.printer.c_setprinter  Csetprinter
               Unsigned 32-bit integer
               Csetprinter

           spoolss.printer.changeid  Change id
               Unsigned 32-bit integer
               Change id

           spoolss.printer.cjobs  CJobs
               Unsigned 32-bit integer
               CJobs

           spoolss.printer.default_priority  Default Priority
               Unsigned 32-bit integer
               Default Priority

           spoolss.printer.flags  Flags
               Unsigned 32-bit integer
               Flags

           spoolss.printer.global_counter  Global counter
               Unsigned 32-bit integer
               Global counter

           spoolss.printer.guid  GUID
               String
               GUID

           spoolss.printer.jobs  Jobs
               Unsigned 32-bit integer
               Jobs

           spoolss.printer.major_version  Major version
               Unsigned 16-bit integer
               Major version

           spoolss.printer.printer_errors  Printer errors
               Unsigned 32-bit integer
               Printer errors

           spoolss.printer.priority  Priority
               Unsigned 32-bit integer
               Priority

           spoolss.printer.session_ctr  Session counter
               Unsigned 32-bit integer
               Sessopm counter

           spoolss.printer.total_bytes  Total bytes
               Unsigned 32-bit integer
               Total bytes

           spoolss.printer.total_jobs  Total jobs
               Unsigned 32-bit integer
               Total jobs

           spoolss.printer.total_pages  Total pages
               Unsigned 32-bit integer
               Total pages

           spoolss.printer.unknown11  Unknown 11
               Unsigned 32-bit integer
               Unknown 11

           spoolss.printer.unknown13  Unknown 13
               Unsigned 32-bit integer
               Unknown 13

           spoolss.printer.unknown14  Unknown 14
               Unsigned 32-bit integer
               Unknown 14

           spoolss.printer.unknown15  Unknown 15
               Unsigned 32-bit integer
               Unknown 15

           spoolss.printer.unknown16  Unknown 16
               Unsigned 32-bit integer
               Unknown 16

           spoolss.printer.unknown18  Unknown 18
               Unsigned 32-bit integer
               Unknown 18

           spoolss.printer.unknown20  Unknown 20
               Unsigned 32-bit integer
               Unknown 20

           spoolss.printer.unknown22  Unknown 22
               Unsigned 16-bit integer
               Unknown 22

           spoolss.printer.unknown23  Unknown 23
               Unsigned 16-bit integer
               Unknown 23

           spoolss.printer.unknown24  Unknown 24
               Unsigned 16-bit integer
               Unknown 24

           spoolss.printer.unknown25  Unknown 25
               Unsigned 16-bit integer
               Unknown 25

           spoolss.printer.unknown26  Unknown 26
               Unsigned 16-bit integer
               Unknown 26

           spoolss.printer.unknown27  Unknown 27
               Unsigned 16-bit integer
               Unknown 27

           spoolss.printer.unknown28  Unknown 28
               Unsigned 16-bit integer
               Unknown 28

           spoolss.printer.unknown29  Unknown 29
               Unsigned 16-bit integer
               Unknown 29

           spoolss.printer.unknown7  Unknown 7
               Unsigned 32-bit integer
               Unknown 7

           spoolss.printer.unknown8  Unknown 8
               Unsigned 32-bit integer
               Unknown 8

           spoolss.printer.unknown9  Unknown 9
               Unsigned 32-bit integer
               Unknown 9

           spoolss.printer_attributes  Attributes
               Unsigned 32-bit integer
               Attributes

           spoolss.printer_attributes.default  Default (9x/ME only)
               Boolean
               Default

           spoolss.printer_attributes.direct  Direct
               Boolean
               Direct

           spoolss.printer_attributes.do_complete_first  Do complete first
               Boolean
               Do complete first

           spoolss.printer_attributes.enable_bidi  Enable bidi (9x/ME only)
               Boolean
               Enable bidi

           spoolss.printer_attributes.enable_devq  Enable devq
               Boolean
               Enable evq

           spoolss.printer_attributes.hidden  Hidden
               Boolean
               Hidden

           spoolss.printer_attributes.keep_printed_jobs  Keep printed jobs
               Boolean
               Keep printed jobs

           spoolss.printer_attributes.local  Local
               Boolean
               Local

           spoolss.printer_attributes.network  Network
               Boolean
               Network

           spoolss.printer_attributes.published  Published
               Boolean
               Published

           spoolss.printer_attributes.queued  Queued
               Boolean
               Queued

           spoolss.printer_attributes.raw_only  Raw only
               Boolean
               Raw only

           spoolss.printer_attributes.shared  Shared
               Boolean
               Shared

           spoolss.printer_attributes.work_offline  Work offline (9x/ME only)
               Boolean
               Work offline

           spoolss.printer_local  Printer local
               Unsigned 32-bit integer
               Printer local

           spoolss.printer_status  Status
               Unsigned 32-bit integer
               Status

           spoolss.printercomment  Printer comment
               String
               Printer comment

           spoolss.printerdata  Data
               Unsigned 32-bit integer
               Data

           spoolss.printerdata.data  Data
               Byte array
               Printer data

           spoolss.printerdata.data.dword  DWORD data
               Unsigned 32-bit integer
               DWORD data

           spoolss.printerdata.data.sz  String data
               String
               String data

           spoolss.printerdata.key  Key
               String
               Printer data key

           spoolss.printerdata.size  Size
               Unsigned 32-bit integer
               Printer data size

           spoolss.printerdata.type  Type
               Unsigned 32-bit integer
               Printer data type

           spoolss.printerdata.val_sz  SZ value
               String
               SZ value

           spoolss.printerdata.value  Value
               String
               Printer data value

           spoolss.printerdesc  Printer description
               String
               Printer description

           spoolss.printerlocation  Printer location
               String
               Printer location

           spoolss.printername  Printer name
               String
               Printer name

           spoolss.printprocessor  Print processor
               String
               Print processor

           spoolss.provider  Provider
               String
               Provider of Driver

           spoolss.rc  Return code
               Unsigned 32-bit integer
               SPOOLSS return code

           spoolss.replyopenprinter.unk0  Unknown 0
               Unsigned 32-bit integer
               Unknown 0

           spoolss.replyopenprinter.unk1  Unknown 1
               Unsigned 32-bit integer
               Unknown 1

           spoolss.returned  Returned
               Unsigned 32-bit integer
               Number of items returned

           spoolss.rffpcnex.flags  RFFPCNEX flags
               Unsigned 32-bit integer
               RFFPCNEX flags

           spoolss.rffpcnex.flags.add_driver  Add driver
               Boolean
               Add driver

           spoolss.rffpcnex.flags.add_form  Add form
               Boolean
               Add form

           spoolss.rffpcnex.flags.add_job  Add job
               Boolean
               Add job

           spoolss.rffpcnex.flags.add_port  Add port
               Boolean
               Add port

           spoolss.rffpcnex.flags.add_printer  Add printer
               Boolean
               Add printer

           spoolss.rffpcnex.flags.add_processor  Add processor
               Boolean
               Add processor

           spoolss.rffpcnex.flags.configure_port  Configure port
               Boolean
               Configure port

           spoolss.rffpcnex.flags.delete_driver  Delete driver
               Boolean
               Delete driver

           spoolss.rffpcnex.flags.delete_form  Delete form
               Boolean
               Delete form

           spoolss.rffpcnex.flags.delete_job  Delete job
               Boolean
               Delete job

           spoolss.rffpcnex.flags.delete_port  Delete port
               Boolean
               Delete port

           spoolss.rffpcnex.flags.delete_printer  Delete printer
               Boolean
               Delete printer

           spoolss.rffpcnex.flags.delete_processor  Delete processor
               Boolean
               Delete processor

           spoolss.rffpcnex.flags.failed_connection_printer  Failed printer connection
               Boolean
               Failed printer connection

           spoolss.rffpcnex.flags.set_driver  Set driver
               Boolean
               Set driver

           spoolss.rffpcnex.flags.set_form  Set form
               Boolean
               Set form

           spoolss.rffpcnex.flags.set_job  Set job
               Boolean
               Set job

           spoolss.rffpcnex.flags.set_printer  Set printer
               Boolean
               Set printer

           spoolss.rffpcnex.flags.timeout  Timeout
               Boolean
               Timeout

           spoolss.rffpcnex.flags.write_job  Write job
               Boolean
               Write job

           spoolss.rffpcnex.options  Options
               Unsigned 32-bit integer
               RFFPCNEX options

           spoolss.routerreplyprinter.changeid  Change id
               Unsigned 32-bit integer
               Change id

           spoolss.routerreplyprinter.condition  Condition
               Unsigned 32-bit integer
               Condition

           spoolss.routerreplyprinter.unknown1  Unknown1
               Unsigned 32-bit integer
               Unknown1

           spoolss.rrpcn.changehigh  Change high
               Unsigned 32-bit integer
               Change high

           spoolss.rrpcn.changelow  Change low
               Unsigned 32-bit integer
               Change low

           spoolss.rrpcn.unk0  Unknown 0
               Unsigned 32-bit integer
               Unknown 0

           spoolss.rrpcn.unk1  Unknown 1
               Unsigned 32-bit integer
               Unknown 1

           spoolss.servermajorversion  Server major version
               Unsigned 32-bit integer
               Server printer driver major version

           spoolss.serverminorversion  Server minor version
               Unsigned 32-bit integer
               Server printer driver minor version

           spoolss.servername  Server name
               String
               Server name

           spoolss.setjob.cmd  Set job command
               Unsigned 32-bit integer
               Printer data name

           spoolss.setpfile  Separator file
               String
               Separator file

           spoolss.setprinter_cmd  Command
               Unsigned 32-bit integer
               Command

           spoolss.sharename  Share name
               String
               Share name

           spoolss.start_time  Start time
               Unsigned 32-bit integer
               Start time

           spoolss.textstatus  Text status
               String
               Text status

           spoolss.time.day  Day
               Unsigned 32-bit integer
               Day

           spoolss.time.dow  Day of week
               Unsigned 32-bit integer
               Day of week

           spoolss.time.hour  Hour
               Unsigned 32-bit integer
               Hour

           spoolss.time.minute  Minute
               Unsigned 32-bit integer
               Minute

           spoolss.time.month  Month
               Unsigned 32-bit integer
               Month

           spoolss.time.msec  Millisecond
               Unsigned 32-bit integer
               Millisecond

           spoolss.time.second  Second
               Unsigned 32-bit integer
               Second

           spoolss.time.year  Year
               Unsigned 32-bit integer
               Year

           spoolss.userlevel.build  Build
               Unsigned 32-bit integer
               Build

           spoolss.userlevel.client  Client
               String
               Client

           spoolss.userlevel.major  Major
               Unsigned 32-bit integer
               Major

           spoolss.userlevel.minor  Minor
               Unsigned 32-bit integer
               Minor

           spoolss.userlevel.processor  Processor
               Unsigned 32-bit integer
               Processor

           spoolss.userlevel.size  Size
               Unsigned 32-bit integer
               Size

           spoolss.userlevel.user  User
               String
               User

           spoolss.username  User name
               String
               User name

           spoolss.writeprinter.numwritten  Num written
               Unsigned 32-bit integer
               Number of bytes written

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

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

           browser.election.desire  Election Desire
               Unsigned 8-bit integer
               Election Desire

           browser.election.desire.backup  Backup
               Boolean
               Is this a backup server

           browser.election.desire.domain_master  Domain Master
               Boolean
               Is this a domain master

           browser.election.desire.master  Master
               Boolean
               Is this a master server

           browser.election.desire.nt  NT
               Boolean
               Is this a NT server

           browser.election.desire.standby  Standby
               Boolean
               Is this a standby server?

           browser.election.desire.wins  WINS
               Boolean
               Is this a WINS server

           browser.election.os  Election OS
               Unsigned 8-bit integer
               Election OS

           browser.election.os.nts  NT Server
               Boolean
               Is this a NT Server?

           browser.election.os.ntw  NT Workstation
               Boolean
               Is this a NT Workstation?

           browser.election.os.wfw  WfW
               Boolean
               Is this a WfW host?

           browser.election.revision  Election Revision
               Unsigned 16-bit integer
               Election Revision

           browser.election.version  Election Version
               Unsigned 8-bit integer
               Election Version

           browser.mb_server  Master Browser Server Name
               String
               BROWSE Master Browser Server Name

           browser.os_major  OS Major Version
               Unsigned 8-bit integer
               Operating System Major Version

           browser.os_minor  OS Minor Version
               Unsigned 8-bit integer
               Operating System Minor Version

           browser.period  Update Periodicity
               Unsigned 32-bit integer
               Update Periodicity in ms

           browser.proto_major  Browser Protocol Major Version
               Unsigned 8-bit integer
               Browser Protocol Major Version

           browser.proto_minor  Browser Protocol Minor Version
               Unsigned 8-bit integer
               Browser Protocol Minor Version

           browser.reset_cmd  ResetBrowserState Command
               Unsigned 8-bit integer
               ResetBrowserState Command

           browser.reset_cmd.demote  Demote LMB
               Boolean
               Demote LMB

           browser.reset_cmd.flush  Flush Browse List
               Boolean
               Flush Browse List

           browser.reset_cmd.stop_lmb  Stop Being LMB
               Boolean
               Stop Being LMB

           browser.response_computer_name  Response Computer Name
               NULL terminated string
               Response Computer Name

           browser.server  Server Name
               String
               BROWSE Server Name

           browser.server_type  Server Type
               Unsigned 32-bit integer
               Server Type Flags

           browser.server_type.apple  Apple
               Boolean
               Is This An Apple Server ?

           browser.server_type.backup_controller  Backup Controller
               Boolean
               Is This A Backup Domain Controller?

           browser.server_type.browser.backup  Backup Browser
               Boolean
               Is This A Backup Browser?

           browser.server_type.browser.domain_master  Domain Master Browser
               Boolean
               Is This A Domain Master Browser?

           browser.server_type.browser.master  Master Browser
               Boolean
               Is This A Master Browser?

           browser.server_type.browser.potential  Potential Browser
               Boolean
               Is This A Potential Browser?

           browser.server_type.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
               Domain GUID

           smb_netlogon.domain_dns_name  Domain DNS Name
               String
               SMB NETLOGON Domain DNS Name

           smb_netlogon.domain_name  Domain Name
               String
               SMB NETLOGON Domain Name

           smb_netlogon.domain_sid_size  Domain SID Size
               Unsigned 32-bit integer
               SMB NETLOGON Domain SID Size

           smb_netlogon.flags.autolock  Autolock
               Boolean
               SMB NETLOGON Account Autolock

           smb_netlogon.flags.enabled  Enabled
               Boolean
               SMB NETLOGON Is This Account Enabled

           smb_netlogon.flags.expire  Expire
               Boolean
               SMB NETLOGON Will Account Expire

           smb_netlogon.flags.homedir  Homedir
               Boolean
               SMB NETLOGON Homedir Required

           smb_netlogon.flags.interdomain  Interdomain Trust
               Boolean
               SMB NETLOGON Inter-domain Trust Account

           smb_netlogon.flags.mns  MNS User
               Boolean
               SMB NETLOGON MNS User Account

           smb_netlogon.flags.normal  Normal User
               Boolean
               SMB NETLOGON Normal User Account

           smb_netlogon.flags.password  Password
               Boolean
               SMB NETLOGON Password Required

           smb_netlogon.flags.server  Server Trust
               Boolean
               SMB NETLOGON Server Trust Account

           smb_netlogon.flags.temp_dup  Temp Duplicate User
               Boolean
               SMB NETLOGON Temp Duplicate User Account

           smb_netlogon.flags.workstation  Workstation Trust
               Boolean
               SMB NETLOGON Workstation Trust Account

           smb_netlogon.forest_dns_name  Forest DNS Name
               String
               SMB NETLOGON Forest DNS Name

           smb_netlogon.large_serial  Large Serial Number
               Unsigned 64-bit integer
               SMB NETLOGON Large Serial Number

           smb_netlogon.lm_token  LM Token
               Unsigned 16-bit integer
               SMB NETLOGON LM Token

           smb_netlogon.lmnt_token  LMNT Token
               Unsigned 16-bit integer
               SMB NETLOGON LMNT Token

           smb_netlogon.low_serial  Low Serial Number
               Unsigned 32-bit integer
               SMB NETLOGON Low Serial Number

           smb_netlogon.mailslot_name  Mailslot Name
               String
               SMB NETLOGON Mailslot Name

           smb_netlogon.major_version  Workstation Major Version
               Unsigned 8-bit integer
               SMB NETLOGON Workstation Major Version

           smb_netlogon.minor_version  Workstation Minor Version
               Unsigned 8-bit integer
               SMB NETLOGON Workstation Minor Version

           smb_netlogon.nt_date_time  NT Date/Time
               Date/Time stamp
               SMB NETLOGON NT Date/Time

           smb_netlogon.nt_version  NT Version
               Unsigned 32-bit integer
               SMB NETLOGON NT Version

           smb_netlogon.os_version  Workstation OS Version
               Unsigned 8-bit integer
               SMB NETLOGON Workstation OS Version

           smb_netlogon.pdc_name  PDC Name
               String
               SMB NETLOGON PDC Name

           smb_netlogon.pulse  Pulse
               Unsigned 32-bit integer
               SMB NETLOGON Pulse

           smb_netlogon.random  Random
               Unsigned 32-bit integer
               SMB NETLOGON Random

           smb_netlogon.request_count  Request Count
               Unsigned 16-bit integer
               SMB NETLOGON Request Count

           smb_netlogon.script_name  Script Name
               String
               SMB NETLOGON Script Name

           smb_netlogon.server_dns_name  Server DNS Name
               String
               SMB NETLOGON Server DNS Name

           smb_netlogon.server_ip  Server IP
               IPv4 address
               Server IP Address

           smb_netlogon.server_name  Server Name
               String
               SMB NETLOGON Server Name

           smb_netlogon.server_site_name  Server Site Name
               String
               SMB NETLOGON Server Site Name

           smb_netlogon.unicode_computer_name  Unicode Computer Name
               String
               SMB NETLOGON Unicode Computer Name

           smb_netlogon.unicode_pdc_name  Unicode PDC Name
               String
               SMB NETLOGON Unicode PDC Name

           smb_netlogon.unknown  Unknown
               Unsigned 8-bit integer
               Unknown

           smb_netlogon.update  Update Type
               Unsigned 16-bit integer
               SMB NETLOGON Update Type

           smb_netlogon.user_name  User Name
               String
               SMB NETLOGON User Name

   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.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
               Per-Node Authentication Method

           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
               Access Technology Type

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

           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
               Extension

           mip.flags  Flags
               Unsigned 8-bit integer

           mip.g  GRE
               Boolean
               MN wants GRE encapsulation

           mip.haaddr  Home Agent
               IPv4 address
               Home agent IP Address.

           mip.homeaddr  Home Address
               IPv4 address
               Mobile Node's home address.

           mip.ident  Identification
               Byte array
               MN Identification.

           mip.life  Lifetime
               Unsigned 16-bit integer
               Mobile IP Lifetime.

           mip.m  Minimal Encapsulation
               Boolean
               MN wants Minimal encapsulation

           mip.nai  NAI
               String
               NAI

           mip.nattt.nexthdr  NATTT NextHeader
               Unsigned 8-bit integer
               NAT Traversal Tunnel Next Header.

           mip.nattt.reserved  Reserved
               Unsigned 16-bit integer

           mip.rev.a  Home Agent
               Boolean
               Revocation sent by Home Agent

           mip.rev.fda  Foreign Domain Address
               IPv4 address
               Revocation Foreign Domain IP Address

           mip.rev.hda  Home Domain Address
               IPv4 address
               Revocation Home Domain IP Address

           mip.rev.i  Inform
               Boolean
               Inform Mobile Node

           mip.rev.reserved  Reserved
               Unsigned 8-bit integer

           mip.rev.reserved2  Reserved
               Unsigned 16-bit integer

           mip.revid  Revocation Identifier
               Unsigned 32-bit integer
               Revocation Identifier of Initiating Agent

           mip.s  Simultaneous Bindings
               Boolean
               Simultaneous Bindings Allowed

           mip.t  Reverse Tunneling
               Boolean
               Reverse tunneling requested

           mip.type  Message Type
               Unsigned 8-bit integer
               Mobile IP Message type.

           mip.v  Van Jacobson
               Boolean
               Van Jacobson

           mip.x  Reserved
               Boolean
               Reserved

   Mobile IPv6 / Network Mobility (mipv6)
           fmip6.fback.k_flag  Key Management Compatibility (K) flag
               Boolean
               Key Management Compatibility (K) flag

           fmip6.fback.lifetime  Lifetime
               Unsigned 16-bit integer
               Lifetime

           fmip6.fback.seqnr  Sequence number
               Unsigned 16-bit integer
               Sequence number

           fmip6.fback.status  Status
               Unsigned 8-bit integer
               Fast Binding Acknowledgement status

           fmip6.fbu.a_flag  Acknowledge (A) flag
               Boolean
               Acknowledge (A) flag

           fmip6.fbu.h_flag  Home Registration (H) flag
               Boolean
               Home Registration (H) flag

           fmip6.fbu.k_flag  Key Management Compatibility (K) flag
               Boolean
               Key Management Compatibility (K) flag

           fmip6.fbu.l_flag  Link-Local Compatibility (L) flag
               Boolean
               Home Registration (H) flag

           fmip6.fbu.lifetime  Lifetime
               Unsigned 16-bit integer
               Lifetime

           fmip6.fbu.seqnr  Sequence number
               Unsigned 16-bit integer
               Sequence number

           mip6.acoa.acoa  Alternate care-of address
               IPv6 address
               Alternate Care-of address

           mip6.ba.k_flag  Key Management Compatibility (K) flag
               Boolean
               Key Management Compatibility (K) flag

           mip6.ba.lifetime  Lifetime
               Unsigned 16-bit integer
               Lifetime

           mip6.ba.seqnr  Sequence number
               Unsigned 16-bit integer
               Sequence number

           mip6.ba.status  Status
               Unsigned 8-bit integer
               Binding Acknowledgement status

           mip6.bad.auth  Authenticator
               Byte array
               Authenticator

           mip6.be.haddr  Home Address
               IPv6 address
               Home Address

           mip6.be.status  Status
               Unsigned 8-bit integer
               Binding Error status

           mip6.bra.interval  Refresh interval
               Unsigned 16-bit integer
               Refresh interval

           mip6.bu.a_flag  Acknowledge (A) flag
               Boolean
               Acknowledge (A) flag

           mip6.bu.h_flag  Home Registration (H) flag
               Boolean
               Home Registration (H) flag

           mip6.bu.k_flag  Key Management Compatibility (K) flag
               Boolean
               Key Management Compatibility (K) flag

           mip6.bu.l_flag  Link-Local Compatibility (L) flag
               Boolean
               Home Registration (H) flag

           mip6.bu.lifetime  Lifetime
               Unsigned 16-bit integer
               Lifetime

           mip6.bu.m_flag  MAP Registration Compatibility (M) flag
               Boolean
               MAP Registration Compatibility (M) flag

           mip6.bu.p_flag  Proxy Registration (P) flag
               Boolean
               Proxy Registration (P) flag

           mip6.bu.seqnr  Sequence number
               Unsigned 16-bit integer
               Sequence number

           mip6.cot.cookie  Care-of Init Cookie
               Unsigned 64-bit integer
               Care-of Init Cookie

           mip6.cot.nindex  Care-of Nonce Index
               Unsigned 16-bit integer
               Care-of Nonce Index

           mip6.cot.token  Care-of Keygen Token
               Unsigned 64-bit integer
               Care-of Keygen Token

           mip6.coti.cookie  Care-of Init Cookie
               Unsigned 64-bit integer
               Care-of Init Cookie

           mip6.csum  Checksum
               Unsigned 16-bit integer
               Header Checksum

           mip6.hlen  Header length
               Unsigned 8-bit integer
               Header length

           mip6.hot.cookie  Home Init Cookie
               Unsigned 64-bit integer
               Home Init Cookie

           mip6.hot.nindex  Home Nonce Index
               Unsigned 16-bit integer
               Home Nonce Index

           mip6.hot.token  Home Keygen Token
               Unsigned 64-bit integer
               Home Keygen Token

           mip6.hoti.cookie  Home Init Cookie
               Unsigned 64-bit integer
               Home Init Cookie

           mip6.lla.optcode  Option-Code
               Unsigned 8-bit integer
               Option-Code

           mip6.mhtype  Mobility Header Type
               Unsigned 8-bit integer
               Mobility Header Type

           mip6.mnid.subtype  Subtype
               Unsigned 8-bit integer
               Subtype

           mip6.ni.cni  Care-of nonce index
               Unsigned 16-bit integer
               Care-of nonce index

           mip6.ni.hni  Home nonce index
               Unsigned 16-bit integer
               Home nonce index

           mip6.proto  Payload protocol
               Unsigned 8-bit integer
               Payload protocol

           mip6.reserved  Reserved
               Unsigned 8-bit integer
               Reserved

           nemo.ba.r_flag  Mobile Router (R) flag
               Boolean
               Mobile Router (R) flag

           nemo.bu.r_flag  Mobile Router (R) flag
               Boolean
               Mobile Router (R) flag

           nemo.mnp.mnp  Mobile Network Prefix
               IPv6 address
               Mobile Network Prefix

           nemo.mnp.pfl  Mobile Network Prefix Length
               Unsigned 8-bit integer
               Mobile Network Prefix Length

           pmip6.timestamp  Timestamp
               Byte array
               Timestamp

           proxy.ba.p_flag  Proxy Registration (P) flag
               Boolean
               Proxy Registration (P) flag

   Modbus/TCP (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
               Checksum

           netsync.cmd.anonymous.collection  Collection
               String
               Collection

           netsync.cmd.anonymous.role  Role
               Unsigned 8-bit integer
               Role

           netsync.cmd.auth.collection  Collection
               String
               Collection

           netsync.cmd.auth.id  ID
               Byte array
               ID

           netsync.cmd.auth.nonce1  Nonce 1
               Byte array
               Nonce 1

           netsync.cmd.auth.nonce2  Nonce 2
               Byte array
               Nonce 2

           netsync.cmd.auth.role  Role
               Unsigned 8-bit integer
               Role

           netsync.cmd.auth.sig  Signature
               Byte array
               Signature

           netsync.cmd.confirm.signature  Signature
               Byte array
               Signature

           netsync.cmd.data.compressed  Compressed
               Unsigned 8-bit integer
               Compressed

           netsync.cmd.data.id  ID
               Byte array
               ID

           netsync.cmd.data.payload  Payload
               Byte array
               Payload

           netsync.cmd.data.type  Type
               Unsigned 8-bit integer
               Type

           netsync.cmd.delta.base_id  Base ID
               Byte array
               Base ID

           netsync.cmd.delta.compressed  Compressed
               Unsigned 8-bit integer
               Compressed

           netsync.cmd.delta.ident_id  Ident ID
               Byte array
               Ident ID

           netsync.cmd.delta.payload  Payload
               Byte array
               Payload

           netsync.cmd.delta.type  Type
               Unsigned 8-bit integer
               Type

           netsync.cmd.done.level  Level
               Unsigned 32-bit integer
               Level

           netsync.cmd.done.type  Type
               Unsigned 8-bit integer
               Type

           netsync.cmd.error.msg  Message
               String
               Message

           netsync.cmd.hello.key  Key
               Byte array
               Key

           netsync.cmd.hello.keyname  Key Name
               String
               Key Name

           netsync.cmd.nonce  Nonce
               Byte array
               Nonce

           netsync.cmd.nonexistent.id  ID
               Byte array
               ID

           netsync.cmd.nonexistent.type  Type
               Unsigned 8-bit integer
               Type

           netsync.cmd.refine.tree_node  Tree Node
               Byte array
               Tree Node

           netsync.cmd.send_data.id  ID
               Byte array
               ID

           netsync.cmd.send_data.type  Type
               Unsigned 8-bit integer
               Type

           netsync.cmd.send_delta.base_id  Base ID
               Byte array
               Base ID

           netsync.cmd.send_delta.ident_id  Ident ID
               Byte array
               Ident ID

           netsync.cmd.send_delta.type  Type
               Unsigned 8-bit integer
               Type

           netsync.command  Command
               Unsigned 8-bit integer
               Command

           netsync.data  Data
               Byte array
               Data

           netsync.size  Size
               Unsigned 32-bit integer
               Size

           netsync.version  Version
               Unsigned 8-bit integer
               Version

   Mount Service (mount)
           mount.dump.directory  Directory
               String
               Directory

           mount.dump.entry  Mount List Entry
               No value
               Mount List Entry

           mount.dump.hostname  Hostname
               String
               Hostname

           mount.export.directory  Directory
               String
               Directory

           mount.export.entry  Export List Entry
               No value
               Export List Entry

           mount.export.group  Group
               String
               Group

           mount.export.groups  Groups
               No value
               Groups

           mount.export.has_options  Has options
               Unsigned 32-bit integer
               Has options

           mount.export.options  Options
               String
               Options

           mount.flavor  Flavor
               Unsigned 32-bit integer
               Flavor

           mount.flavors  Flavors
               Unsigned 32-bit integer
               Flavors

           mount.path  Path
               String
               Path

           mount.pathconf.link_max  Maximum number of links to a file
               Unsigned 32-bit integer
               Maximum number of links allowed to a file

           mount.pathconf.mask  Reply error/status bits
               Unsigned 16-bit integer
               Bit mask with error and status bits

           mount.pathconf.mask.chown_restricted  CHOWN_RESTRICTED
               Boolean

           mount.pathconf.mask.error_all  ERROR_ALL
               Boolean

           mount.pathconf.mask.error_link_max  ERROR_LINK_MAX
               Boolean

           mount.pathconf.mask.error_max_canon  ERROR_MAX_CANON
               Boolean

           mount.pathconf.mask.error_max_input  ERROR_MAX_INPUT
               Boolean

           mount.pathconf.mask.error_name_max  ERROR_NAME_MAX
               Boolean

           mount.pathconf.mask.error_path_max  ERROR_PATH_MAX
               Boolean

           mount.pathconf.mask.error_pipe_buf  ERROR_PIPE_BUF
               Boolean

           mount.pathconf.mask.error_vdisable  ERROR_VDISABLE
               Boolean

           mount.pathconf.mask.no_trunc  NO_TRUNC
               Boolean

           mount.pathconf.max_canon  Maximum terminal input line length
               Unsigned 16-bit integer
               Max tty input line length

           mount.pathconf.max_input  Terminal input buffer size
               Unsigned 16-bit integer
               Terminal input buffer size

           mount.pathconf.name_max  Maximum file name length
               Unsigned 16-bit integer
               Maximum file name length

           mount.pathconf.path_max  Maximum path name length
               Unsigned 16-bit integer
               Maximum path name length

           mount.pathconf.pipe_buf  Pipe buffer size
               Unsigned 16-bit integer
               Maximum amount of data that can be written atomically to a pipe

           mount.pathconf.vdisable_char  VDISABLE character
               Unsigned 8-bit integer
               Character value to disable a terminal special character

           mount.procedure_sgi_v1  SGI V1 procedure
               Unsigned 32-bit integer
               SGI V1 Procedure

           mount.procedure_v1  V1 Procedure
               Unsigned 32-bit integer
               V1 Procedure

           mount.procedure_v2  V2 Procedure
               Unsigned 32-bit integer
               V2 Procedure

           mount.procedure_v3  V3 Procedure
               Unsigned 32-bit integer
               V3 Procedure

           mount.status  Status
               Unsigned 32-bit integer
               Status

           mount.statvfs.f_basetype  Type
               String
               File system type

           mount.statvfs.f_bavail  Blocks Available
               Unsigned 32-bit integer
               Available fragment sized blocks

           mount.statvfs.f_bfree  Blocks Free
               Unsigned 32-bit integer
               Free fragment sized blocks

           mount.statvfs.f_blocks  Blocks
               Unsigned 32-bit integer
               Total fragment sized blocks

           mount.statvfs.f_bsize  Block size
               Unsigned 32-bit integer
               File system block size

           mount.statvfs.f_favail  Files Available
               Unsigned 32-bit integer
               Available files/inodes

           mount.statvfs.f_ffree  Files Free
               Unsigned 32-bit integer
               Free files/inodes

           mount.statvfs.f_files  Files
               Unsigned 32-bit integer
               Total files/inodes

           mount.statvfs.f_flag  Flags
               Unsigned 32-bit integer
               Flags bit-mask

           mount.statvfs.f_flag.st_grpid  ST_GRPID
               Boolean

           mount.statvfs.f_flag.st_local  ST_LOCAL
               Boolean

           mount.statvfs.f_flag.st_nodev  ST_NODEV
               Boolean

           mount.statvfs.f_flag.st_nosuid  ST_NOSUID
               Boolean

           mount.statvfs.f_flag.st_notrunc  ST_NOTRUNC
               Boolean

           mount.statvfs.f_flag.st_rdonly  ST_RDONLY
               Boolean

           mount.statvfs.f_frsize  Fragment size
               Unsigned 32-bit integer
               File system fragment size

           mount.statvfs.f_fsid  File system ID
               Unsigned 32-bit integer
               File system identifier

           mount.statvfs.f_fstr  File system specific string
               Byte array
               File system specific string

           mount.statvfs.f_namemax  Maximum file name length
               Unsigned 32-bit integer
               Maximum file name length

   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
               mpeg_audio.OCTET_STRING_SIZE_30

           mpeg-audio.artist  artist
               String
               mpeg_audio.OCTET_STRING_SIZE_30

           mpeg-audio.bitrate  bitrate
               Unsigned 32-bit integer
               mpeg_audio.INTEGER_0_15

           mpeg-audio.channel_mode  channel-mode
               Unsigned 32-bit integer
               mpeg_audio.T_channel_mode

           mpeg-audio.comment  comment
               String
               mpeg_audio.OCTET_STRING_SIZE_28

           mpeg-audio.copyright  copyright
               Boolean
               mpeg_audio.BOOLEAN

           mpeg-audio.emphasis  emphasis
               Unsigned 32-bit integer
               mpeg_audio.T_emphasis

           mpeg-audio.frequency  frequency
               Unsigned 32-bit integer
               mpeg_audio.INTEGER_0_3

           mpeg-audio.genre  genre
               Unsigned 32-bit integer
               mpeg_audio.T_genre

           mpeg-audio.layer  layer
               Unsigned 32-bit integer
               mpeg_audio.T_layer

           mpeg-audio.mode_extension  mode-extension
               Unsigned 32-bit integer
               mpeg_audio.INTEGER_0_3

           mpeg-audio.must_be_zero  must-be-zero
               Unsigned 32-bit integer
               mpeg_audio.INTEGER_0_255

           mpeg-audio.original  original
               Boolean
               mpeg_audio.BOOLEAN

           mpeg-audio.padding  padding
               Boolean
               mpeg_audio.BOOLEAN

           mpeg-audio.private  private
               Boolean
               mpeg_audio.BOOLEAN

           mpeg-audio.protection  protection
               Unsigned 32-bit integer
               mpeg_audio.T_protection

           mpeg-audio.sync  sync
               Byte array
               mpeg_audio.BIT_STRING_SIZE_11

           mpeg-audio.tag  tag
               String
               mpeg_audio.OCTET_STRING_SIZE_3

           mpeg-audio.title  title
               String
               mpeg_audio.OCTET_STRING_SIZE_30

           mpeg-audio.track  track
               Unsigned 32-bit integer
               mpeg_audio.INTEGER_0_255

           mpeg-audio.version  version
               Unsigned 32-bit integer
               mpeg_audio.T_version

           mpeg-audio.year  year
               String
               mpeg_audio.OCTET_STRING_SIZE_4

           mpeg.audio.data  Data
               Byte array

           mpeg.audio.padbytes  Padding
               Byte array

   MultiProtocol Label Switching Header (mpls)
           mpls.1st_nibble  MPLS 1st nibble
               Unsigned 8-bit integer
               MPLS 1st nibble

           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
               BIP16

           mpls.oam.defect_location  Defect Location (AS)
               Unsigned 32-bit integer
               Defect Location

           mpls.oam.defect_type  Defect Type
               Unsigned 16-bit integer
               Defect Type

           mpls.oam.frequency  Frequency
               Unsigned 8-bit integer
               Frequency of probe injection

           mpls.oam.function_type  Function Type
               Unsigned 8-bit integer
               Function Type codepoint

           mpls.oam.ttsi  Trail Termination Source Identifier
               Unsigned 32-bit integer
               Trail Termination Source Identifier

           mpls.ttl  MPLS TTL
               Unsigned 8-bit integer

           pwach.channel_type  PW Associated Channel Type
               Unsigned 16-bit integer
               PW Associated Channel Type

           pwach.res  Reserved
               Unsigned 8-bit integer
               Reserved

           pwach.ver  PW Associated Channel Version
               Unsigned 8-bit integer
               PW Associated Channel Version

           pwmcw.flags  Generic/Preferred PW MPLS Control Word Flags
               Unsigned 8-bit integer
               Generic/Preferred PW MPLS Control Word Flags

           pwmcw.length  Generic/Preferred PW MPLS Control Word Length
               Unsigned 8-bit integer
               Generic/Preferred PW MPLS Control Word Length

           pwmcw.sequence_number  Generic/Preferred PW MPLS Control Word Sequence Number
               Unsigned 16-bit integer
               Generic/Preferred PW MPLS Control Word Sequence Number

   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

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

           mysql.caps  Caps
               Unsigned 16-bit integer
               MySQL Capabilities

           mysql.caps.cd  Connect With Database
               Boolean

           mysql.caps.cp  Can use compression protocol
               Boolean

           mysql.caps.cu  Speaks 4.1 protocol (new flag)
               Boolean

           mysql.caps.fr  Found Rows
               Boolean

           mysql.caps.ia  Interactive Client
               Boolean

           mysql.caps.ii  Ignore sigpipes
               Boolean

           mysql.caps.is  Ignore Spaces before '('
               Boolean

           mysql.caps.lf  Long Column Flags
               Boolean

           mysql.caps.li  Can Use LOAD DATA LOCAL
               Boolean

           mysql.caps.lp  Long Password
               Boolean

           mysql.caps.mr  Supports multiple results
               Boolean

           mysql.caps.ms  Supports multiple statements
               Boolean

           mysql.caps.ns  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
               EOF

           mysql.error.message  Error message
               String
               Error string in case of MySQL error message

           mysql.error_code  Error Code
               Unsigned 16-bit integer
               Error Code

           mysql.exec_flags  Flags (unused)
               Unsigned 8-bit integer
               Flags (unused)

           mysql.exec_iter  Iterations (unused)
               Unsigned 32-bit integer
               Iterations (unused)

           mysql.extcaps  Ext. Caps
               Unsigned 16-bit integer
               MySQL Extended Capabilities

           mysql.extra  Extra data
               Unsigned 64-bit integer
               Extra data

           mysql.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.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
               String
               Field: type

           mysql.insert_id  Last INSERT ID
               Unsigned 64-bit integer
               Last INSERT ID

           mysql.max_packet  MAX Packet
               Unsigned 24-bit integer
               MySQL Max packet

           mysql.message  Message
               NULL terminated string
               Message

           mysql.num_fields  Number of fields
               Unsigned 64-bit integer
               Number of fields

           mysql.num_rows  Rows to fetch
               Unsigned 32-bit integer
               Rows to fetch

           mysql.opcode  Command
               Unsigned 8-bit integer
               Command

           mysql.option  Option
               Unsigned 16-bit integer
               Option

           mysql.packet_length  Packet Length
               Unsigned 24-bit integer
               Packet Length

           mysql.packet_number  Packet Number
               Unsigned 8-bit integer
               Packet Number

           mysql.param  Parameter
               Unsigned 16-bit integer
               Parameter

           mysql.parameter  Parameter
               String
               Parameter

           mysql.passwd  Password
               String
               Password

           mysql.payload  Payload
               String
               Additional Payload

           mysql.protocol  Protocol
               Unsigned 8-bit integer
               Protocol Version

           mysql.query  Statement
               String
               Statement

           mysql.refresh  Refresh Option
               Unsigned 8-bit integer
               Refresh Option

           mysql.response_code  Response Code
               Unsigned 8-bit integer
               Response Code

           mysql.rfsh.grants  reload permissions
               Boolean

           mysql.rfsh.hosts  flush hosts
               Boolean

           mysql.rfsh.log  flush logfiles
               Boolean

           mysql.rfsh.master  flush master status
               Boolean

           mysql.rfsh.slave  flush slave status
               Boolean

           mysql.rfsh.status  reset statistics
               Boolean

           mysql.rfsh.tables  flush tables
               Boolean

           mysql.rfsh.threads  empty thread cache
               Boolean

           mysql.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
               Salt

           mysql.salt2  Salt
               NULL terminated string
               Salt

           mysql.schema  Schema
               String
               Login Schema

           mysql.sqlstate  SQL state
               String

           mysql.stat.ac  AUTO_COMMIT
               Boolean

           mysql.stat.bi  Bad index used
               Boolean

           mysql.stat.bs  No backslash escapes
               Boolean

           mysql.stat.cr  Cursor exists
               Boolean

           mysql.stat.dr  database dropped
               Boolean

           mysql.stat.it  In transaction
               Boolean

           mysql.stat.lr  Last row sebd
               Boolean

           mysql.stat.mr  More results
               Boolean

           mysql.stat.mu  Multi query - more resultsets
               Boolean

           mysql.stat.ni  No index used
               Boolean

           mysql.status  Status
               Unsigned 16-bit integer
               MySQL Status

           mysql.stmt_id  Statement ID
               Unsigned 32-bit integer
               Statement ID

           mysql.thd_id  Thread ID
               Unsigned 32-bit integer
               Thread ID

           mysql.thread_id  Thread ID
               Unsigned 32-bit integer
               MySQL Thread ID

           mysql.unused  Unused
               String
               Unused

           mysql.user  Username
               NULL terminated string
               Login Username

           mysql.version  Version
               NULL terminated string
               MySQL Version

           mysql.warnings  Warnings
               Unsigned 16-bit integer
               Warnings

   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.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.dst.prot.addr  Destination Protocol Address
               IPv4 address

           nhrp.dst.prot.len  Destination Protocol Len
               Unsigned 16-bit integer

           nhrp.err.offset  Error Offset
               Unsigned 16-bit integer

           nhrp.err.pkt  Errored Packet
               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

   NFSACL (nfsacl)
           nfsacl.acl  ACL
               No value
               ACL

           nfsacl.aclcnt  ACL count
               Unsigned 32-bit integer
               ACL count

           nfsacl.aclent  ACL Entry
               No value
               ACL

           nfsacl.aclent.perm  Permissions
               Unsigned 32-bit integer
               Permissions

           nfsacl.aclent.type  Type
               Unsigned 32-bit integer
               Type

           nfsacl.aclent.uid  UID
               Unsigned 32-bit integer
               UID

           nfsacl.create  create
               Boolean
               Create?

           nfsacl.dfaclcnt  Default ACL count
               Unsigned 32-bit integer
               Default ACL count

           nfsacl.procedure_v1  V1 Procedure
               Unsigned 32-bit integer
               V1 Procedure

           nfsacl.procedure_v2  V2 Procedure
               Unsigned 32-bit integer
               V2 Procedure

           nfsacl.procedure_v3  V3 Procedure
               Unsigned 32-bit integer
               V3 Procedure

   NFSAUTH (nfsauth)
           nfsauth.procedure_v1  V1 Procedure
               Unsigned 32-bit integer
               V1 Procedure

   NIS+ (nisplus)
           nisplus.access.mask  access mask
               No value
               NIS Access Mask

           nisplus.aticks  aticks
               Unsigned 32-bit integer

           nisplus.attr  Attribute
               No value
               Attribute

           nisplus.attr.name  name
               String
               Attribute Name

           nisplus.attr.val  val
               Byte array
               Attribute Value

           nisplus.attributes  Attributes
               No value
               List Of Attributes

           nisplus.callback.status  status
               Boolean
               Status Of Callback Thread

           nisplus.checkpoint.dticks  dticks
               Unsigned 32-bit integer
               Database Ticks

           nisplus.checkpoint.status  status
               Unsigned 32-bit integer
               Checkpoint Status

           nisplus.checkpoint.zticks  zticks
               Unsigned 32-bit integer
               Service Ticks

           nisplus.cookie  cookie
               Byte array
               Cookie

           nisplus.cticks  cticks
               Unsigned 32-bit integer

           nisplus.ctime  ctime
               Date/Time stamp
               Time Of Creation

           nisplus.directory  directory
               No value
               NIS Directory Object

           nisplus.directory.mask  mask
               No value
               NIS Directory Create/Destroy Rights

           nisplus.directory.mask.group_create  GROUP CREATE
               Boolean
               Group Create Flag

           nisplus.directory.mask.group_destroy  GROUP DESTROY
               Boolean
               Group Destroy Flag

           nisplus.directory.mask.group_modify  GROUP MODIFY
               Boolean
               Group Modify Flag

           nisplus.directory.mask.group_read  GROUP READ
               Boolean
               Group Read Flag

           nisplus.directory.mask.nobody_create  NOBODY CREATE
               Boolean
               Nobody Create Flag

           nisplus.directory.mask.nobody_destroy  NOBODY DESTROY
               Boolean
               Nobody Destroy Flag

           nisplus.directory.mask.nobody_modify  NOBODY MODIFY
               Boolean
               Nobody Modify Flag

           nisplus.directory.mask.nobody_read  NOBODY READ
               Boolean
               Nobody Read Flag

           nisplus.directory.mask.owner_create  OWNER CREATE
               Boolean
               Owner Create Flag

           nisplus.directory.mask.owner_destroy  OWNER DESTROY
               Boolean
               Owner Destroy Flag

           nisplus.directory.mask.owner_modify  OWNER MODIFY
               Boolean
               Owner Modify Flag

           nisplus.directory.mask.owner_read  OWNER READ
               Boolean
               Owner Read Flag

           nisplus.directory.mask.world_create  WORLD CREATE
               Boolean
               World Create Flag

           nisplus.directory.mask.world_destroy  WORLD DESTROY
               Boolean
               World Destroy Flag

           nisplus.directory.mask.world_modify  WORLD MODIFY
               Boolean
               World Modify Flag

           nisplus.directory.mask.world_read  WORLD READ
               Boolean
               World Read Flag

           nisplus.directory.mask_list  mask list
               No value
               List Of Directory Create/Destroy Rights

           nisplus.directory.name  directory name
               String
               Name Of Directory Being Served

           nisplus.directory.ttl  ttl
               Unsigned 32-bit integer
               Time To Live

           nisplus.directory.type  type
               Unsigned 32-bit integer
               NIS Type Of Name Service

           nisplus.dticks  dticks
               Unsigned 32-bit integer

           nisplus.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.flags.asn  ASN.1
               Boolean
               Is This Entry ASN.1 Encoded Flag

           nisplus.entry.flags.binary  BINARY
               Boolean
               Is This Entry BINARY Flag

           nisplus.entry.flags.encrypted  ENCRYPTED
               Boolean
               Is This Entry ENCRYPTED Flag

           nisplus.entry.flags.modified  MODIFIED
               Boolean
               Is This Entry MODIFIED Flag

           nisplus.entry.flags.xdr  XDR
               Boolean
               Is This Entry XDR Encoded Flag

           nisplus.entry.type  type
               String
               Entry Type

           nisplus.entry.val  val
               String
               Entry Value

           nisplus.fd.dir.data  data
               Byte array
               Directory Data In XDR Format

           nisplus.fd.dirname  dirname
               String
               Directory Name

           nisplus.fd.requester  requester
               String
               Host Principal Name For Signature

           nisplus.fd.sig  signature
               Byte array
               Signature Of The Source

           nisplus.group  Group
               No value
               Group Object

           nisplus.group.flags  flags
               Unsigned 32-bit integer
               Group Object Flags

           nisplus.group.name  group name
               String
               Name Of Group Member

           nisplus.grps  Groups
               No value
               List Of Groups

           nisplus.ib.bufsize  bufsize
               Unsigned 32-bit integer
               Optional First/NextBufSize

           nisplus.ib.flags  flags
               Unsigned 32-bit integer
               Information Base Flags

           nisplus.key.data  key data
               Byte array
               Encryption Key

           nisplus.key.type  type
               Unsigned 32-bit integer
               Type Of Key

           nisplus.link  link
               No value
               NIS Link Object

           nisplus.log.entries  log entries
               No value
               Log Entries

           nisplus.log.entry  log entry
               No value
               Log Entry

           nisplus.log.entry.type  type
               Unsigned 32-bit integer
               Type Of Entry In Transaction Log

           nisplus.log.principal  principal
               String
               Principal Making The Change

           nisplus.log.time  time
               Date/Time stamp
               Time Of Log Entry

           nisplus.mtime  mtime
               Date/Time stamp
               Time Last Modified

           nisplus.object  NIS Object
               No value
               NIS Object

           nisplus.object.domain  domain
               String
               NIS Administrator For This Object

           nisplus.object.group  group
               String
               NIS Name Of Access Group

           nisplus.object.name  name
               String
               NIS Name For This Object

           nisplus.object.oid  Object Identity Verifier
               No value
               NIS Object Identity Verifier

           nisplus.object.owner  owner
               String
               NIS Name Of Object Owner

           nisplus.object.private  private
               Byte array
               NIS Private Object

           nisplus.object.ttl  ttl
               Unsigned 32-bit integer
               NIS Time To Live For This Object

           nisplus.object.type  type
               Unsigned 32-bit integer
               NIS Type Of Object

           nisplus.ping.dir  directory
               String
               Directory That Had The Change

           nisplus.ping.time  time
               Date/Time stamp
               Timestamp Of The Transaction

           nisplus.procedure_v3  V3 Procedure
               Unsigned 32-bit integer
               V3 Procedure

           nisplus.server  server
               No value
               NIS Server For This Directory

           nisplus.server.name  name
               String
               Name Of NIS Server

           nisplus.servers  nis servers
               No value
               NIS Servers For This Directory

           nisplus.status  status
               Unsigned 32-bit integer
               NIS Status Code

           nisplus.table  table
               No value
               Table Object

           nisplus.table.col  column
               No value
               Table Column

           nisplus.table.col.flags  flags
               No value
               Flags For This Column

           nisplus.table.col.name  column name
               String
               Column Name

           nisplus.table.cols  columns
               No value
               Table Columns

           nisplus.table.flags.asn  asn
               Boolean
               Is This Column ASN.1 Encoded

           nisplus.table.flags.binary  binary
               Boolean
               Is This Column BINARY

           nisplus.table.flags.casesensitive  casesensitive
               Boolean
               Is This Column CASESENSITIVE

           nisplus.table.flags.encrypted  encrypted
               Boolean
               Is This Column ENCRYPTED

           nisplus.table.flags.modified  modified
               Boolean
               Is This Column MODIFIED

           nisplus.table.flags.searchable  searchable
               Boolean
               Is This Column SEARCHABLE

           nisplus.table.flags.xdr  xdr
               Boolean
               Is This Column XDR Encoded

           nisplus.table.maxcol  max columns
               Unsigned 16-bit integer
               Maximum Number Of Columns For Table

           nisplus.table.path  path
               String
               Table Path

           nisplus.table.separator  separator
               Unsigned 8-bit integer
               Separator Character

           nisplus.table.type  type
               String
               Table Type

           nisplus.tag  tag
               No value
               Tag

           nisplus.tag.type  type
               Unsigned 32-bit integer
               Type Of Statistics Tag

           nisplus.tag.value  value
               String
               Value Of Statistics Tag

           nisplus.taglist  taglist
               No value
               List Of Tags

           nisplus.zticks  zticks
               Unsigned 32-bit integer

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

   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.blob.length  Length
               Unsigned 16-bit integer

           ntlmssp.blob.maxlen  Maxlen
               Unsigned 16-bit integer

           ntlmssp.blob.offset  Offset
               Unsigned 32-bit integer

           ntlmssp.challenge.addresslist  Address List
               No value

           ntlmssp.challenge.addresslist.domaindns  Domain DNS Name
               String

           ntlmssp.challenge.addresslist.domainnb  Domain NetBIOS Name
               String

           ntlmssp.challenge.addresslist.item.content  Target item Content
               String

           ntlmssp.challenge.addresslist.item.length  Target item Length
               Unsigned 16-bit integer

           ntlmssp.challenge.addresslist.length  Length
               Unsigned 16-bit integer

           ntlmssp.challenge.addresslist.maxlen  Maxlen
               Unsigned 16-bit integer

           ntlmssp.challenge.addresslist.offset  Offset
               Unsigned 32-bit integer

           ntlmssp.challenge.addresslist.serverdns  Server DNS Name
               String

           ntlmssp.challenge.addresslist.servernb  Server NetBIOS Name
               String

           ntlmssp.challenge.addresslist.terminator  List Terminator
               No value

           ntlmssp.challenge.domain  Domain
               String

           ntlmssp.decrypted_payload  NTLM Decrypted Payload
               Byte array

           ntlmssp.identifier  NTLMSSP identifier
               String
               NTLMSSP Identifier

           ntlmssp.messagetype  NTLM Message Type
               Unsigned 32-bit integer

           ntlmssp.negotiate.callingworkstation  Calling workstation name
               String

           ntlmssp.negotiate.callingworkstation.buffer  Calling workstation name buffer
               Unsigned 32-bit integer

           ntlmssp.negotiate.callingworkstation.maxlen  Calling workstation name max length
               Unsigned 16-bit integer

           ntlmssp.negotiate.callingworkstation.strlen  Calling workstation name length
               Unsigned 16-bit integer

           ntlmssp.negotiate.domain  Calling workstation domain
               String

           ntlmssp.negotiate.domain.buffer  Calling workstation domain buffer
               Unsigned 32-bit integer

           ntlmssp.negotiate.domain.maxlen  Calling workstation domain max length
               Unsigned 16-bit integer

           ntlmssp.negotiate.domain.strlen  Calling workstation domain length
               Unsigned 16-bit integer

           ntlmssp.negotiate00000008  Request 0x00000008
               Boolean

           ntlmssp.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 NTLM2 key
               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.ntlmchallenge  NTLM Challenge
               Byte array

           ntlmssp.ntlmv2response  NTLMv2 Response
               Byte array

           ntlmssp.ntlmv2response.chal  Client challenge
               Byte array

           ntlmssp.ntlmv2response.client_time  Client Time
               Date/Time stamp

           ntlmssp.ntlmv2response.header  Header
               Unsigned 32-bit integer

           ntlmssp.ntlmv2response.hmac  HMAC
               Byte array

           ntlmssp.ntlmv2response.name  Name
               String

           ntlmssp.ntlmv2response.name.len  Name len
               Unsigned 32-bit integer

           ntlmssp.ntlmv2response.name.type  Name type
               Unsigned 32-bit integer

           ntlmssp.ntlmv2response.reserved  Reserved
               Unsigned 32-bit integer

           ntlmssp.ntlmv2response.time  Time
               Date/Time stamp

           ntlmssp.ntlmv2response.unknown  Unknown
               Unsigned 32-bit integer

           ntlmssp.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 Verifier

           ntlmssp.verf.body  Verifier Body
               Byte array

           ntlmssp.verf.crc32  Verifier CRC32
               Unsigned 32-bit integer

           ntlmssp.verf.sequence  Verifier Sequence Number
               Unsigned 32-bit integer

           ntlmssp.verf.unknown1  Unknown 1
               Unsigned 32-bit integer

           ntlmssp.verf.vers  Version Number
               Unsigned 32-bit integer

   Name Binding Protocol (nbp)
           nbp.count  Count
               Unsigned 8-bit integer
               Count

           nbp.enum  Enumerator
               Unsigned 8-bit integer
               Enumerator

           nbp.info  Info
               Unsigned 8-bit integer
               Info

           nbp.net  Network
               Unsigned 16-bit integer
               Network

           nbp.node  Node
               Unsigned 8-bit integer
               Node

           nbp.object  Object
               String
               Object

           nbp.op  Operation
               Unsigned 8-bit integer
               Operation

           nbp.port  Port
               Unsigned 8-bit integer
               Port

           nbp.tid  Transaction ID
               Unsigned 8-bit integer
               Transaction ID

           nbp.type  Type
               String
               Type

           nbp.zone  Zone
               String
               Zone

   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

           netbios.fragment.error  Defragmentation error
               Frame number
               Defragmentation error due to illegal fragments

           netbios.fragment.multipletails  Multiple tail fragments found
               Boolean
               Several tails were found when defragmenting the packet

           netbios.fragment.overlap  Fragment overlap
               Boolean
               Fragment overlaps with other fragments

           netbios.fragment.overlap.conflict  Conflicting data in fragment overlap
               Boolean
               Overlapping fragments contained conflicting data

           netbios.fragment.toolongfragment  Fragment too long
               Boolean
               Fragment contained data past end of packet

           netbios.fragments  NetBIOS Fragments
               No value
               NetBIOS Fragments

           netbios.hdr_len  Header Length
               Unsigned 16-bit integer

           netbios.largest_frame  Largest Frame
               Unsigned 8-bit integer

           netbios.local_session  Local Session No.
               Unsigned 8-bit integer

           netbios.max_data_recv_size  Maximum data receive size
               Unsigned 16-bit integer

           netbios.name_type  Name type
               Unsigned 16-bit integer

           netbios.nb_name  NetBIOS Name
               String

           netbios.nb_name_type  NetBIOS Name Type
               Unsigned 8-bit integer

           netbios.num_data_bytes_accepted  Number of data bytes accepted
               Unsigned 16-bit integer

           netbios.recv_cont_req  RECEIVE_CONTINUE requested
               Boolean

           netbios.remote_session  Remote Session No.
               Unsigned 8-bit integer

           netbios.resp_corrl  Response Correlator
               Unsigned 16-bit integer

           netbios.send_no_ack  Handle SEND.NO.ACK
               Boolean

           netbios.status  Status
               Unsigned 8-bit integer

           netbios.status_buffer_len  Length of status buffer
               Unsigned 16-bit integer

           netbios.termination_indicator  Termination indicator
               Unsigned 16-bit integer

           netbios.version  NetBIOS Version
               Boolean

           netbios.xmit_corrl  Transmit Correlator
               Unsigned 16-bit integer

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

           nbns.flags.recavail  Recursion available
               Boolean
               Can the server do recursive queries?

           nbns.flags.recdesired  Recursion desired
               Boolean
               Do query recursively?

           nbns.flags.response  Response
               Boolean
               Is the message a response?

           nbns.flags.truncated  Truncated
               Boolean
               Is the message truncated?

           nbns.id  Transaction ID
               Unsigned 16-bit integer
               Identification of transaction

   NetBIOS Session Service (nbss)
           nbss.flags  Flags
               Unsigned 8-bit integer
               NBSS message flags

           nbss.type  Message Type
               Unsigned 8-bit integer
               NBSS message type

   NetBIOS over IPX (nbipx)
   NetScape Certificate Extensions (ns_cert_exts)
           ns_cert_exts.BaseUrl  BaseUrl
               String
               ns_cert_exts.BaseUrl

           ns_cert_exts.CaPolicyUrl  CaPolicyUrl
               String
               ns_cert_exts.CaPolicyUrl

           ns_cert_exts.CaRevocationUrl  CaRevocationUrl
               String
               ns_cert_exts.CaRevocationUrl

           ns_cert_exts.CertRenewalUrl  CertRenewalUrl
               String
               ns_cert_exts.CertRenewalUrl

           ns_cert_exts.CertType  CertType
               Byte array
               ns_cert_exts.CertType

           ns_cert_exts.Comment  Comment
               String
               ns_cert_exts.Comment

           ns_cert_exts.RevocationUrl  RevocationUrl
               String
               ns_cert_exts.RevocationUrl

           ns_cert_exts.SslServerName  SslServerName
               String
               ns_cert_exts.SslServerName

           ns_cert_exts.ca  ca
               Boolean

           ns_cert_exts.client  client
               Boolean

           ns_cert_exts.server  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.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
               IP Address

           ndmp.addr.ipc  IPC
               Byte array
               IPC identifier

           ndmp.addr.loop_id  Loop ID
               Unsigned 32-bit integer
               FCAL Loop ID

           ndmp.addr.tcp_port  TCP Port
               Unsigned 32-bit integer
               TCP Port

           ndmp.addr_type  Addr Type
               Unsigned 32-bit integer
               Address Type

           ndmp.addr_types  Addr Types
               No value
               List Of Address Types

           ndmp.auth.challenge  Challenge
               Byte array
               Authentication Challenge

           ndmp.auth.digest  Digest
               Byte array
               Authentication Digest

           ndmp.auth.id  ID
               String
               ID of client authenticating

           ndmp.auth.password  Password
               String
               Password of client authenticating

           ndmp.auth.types  Auth types
               No value
               Auth types

           ndmp.auth_type  Auth Type
               Unsigned 32-bit integer
               Authentication Type

           ndmp.bu.destination_dir  Destination Dir
               String
               Destination directory to restore backup to

           ndmp.bu.new_name  New Name
               String
               New Name

           ndmp.bu.operation  Operation
               Unsigned 32-bit integer
               BU Operation

           ndmp.bu.original_path  Original Path
               String
               Original path where backup was created

           ndmp.bu.other_name  Other Name
               String
               Other Name

           ndmp.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
               Butype Info

           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.connected  Connected
               Unsigned 32-bit integer
               Status of connection

           ndmp.connected.reason  Reason
               String
               Textual description of the connection status

           ndmp.count  Count
               Unsigned 32-bit integer
               Number of bytes/objects/operations

           ndmp.data  Data
               Byte array
               Data written/read

           ndmp.data.bytes_processed  Bytes Processed
               Unsigned 64-bit integer
               Number of bytes processed

           ndmp.data.est_bytes_remain  Est Bytes Remain
               Unsigned 64-bit integer
               Estimated number of bytes remaining

           ndmp.data.est_time_remain  Est Time Remain
               Time duration
               Estimated time remaining

           ndmp.data.halted  Halted Reason
               Unsigned 32-bit integer
               Data halted reason

           ndmp.data.state  State
               Unsigned 32-bit integer
               Data state

           ndmp.data.written  Data Written
               Unsigned 64-bit integer
               Number of data bytes written

           ndmp.dirs  Dirs
               No value
               List of directories

           ndmp.error  Error
               Unsigned 32-bit integer
               Error code for this NDMP PDU

           ndmp.execute_cdb.cdb_len  CDB length
               Unsigned 32-bit integer
               Length of CDB

           ndmp.execute_cdb.datain  Data in
               Byte array
               Data transferred from the SCSI device

           ndmp.execute_cdb.datain_len  Data in length
               Unsigned 32-bit integer
               Expected length of data bytes to read

           ndmp.execute_cdb.dataout  Data out
               Byte array
               Data to be transferred to the SCSI device

           ndmp.execute_cdb.dataout_len  Data out length
               Unsigned 32-bit integer
               Number of bytes transferred to the device

           ndmp.execute_cdb.flags.data_in  DATA_IN
               Boolean
               DATA_IN

           ndmp.execute_cdb.flags.data_out  DATA_OUT
               Boolean
               DATA_OUT

           ndmp.execute_cdb.sns_len  Sense data length
               Unsigned 32-bit integer
               Length of sense data

           ndmp.execute_cdb.status  Status
               Unsigned 8-bit integer
               SCSI status

           ndmp.execute_cdb.timeout  Timeout
               Unsigned 32-bit integer
               Reselect timeout, in milliseconds

           ndmp.file  File
               String
               Name of File

           ndmp.file.atime  atime
               Date/Time stamp
               Timestamp for atime for this file

           ndmp.file.ctime  ctime
               Date/Time stamp
               Timestamp for ctime for this file

           ndmp.file.fattr  Fattr
               Unsigned 32-bit integer
               Mode for UNIX, fattr for NT

           ndmp.file.fh_info  FH Info
               Unsigned 64-bit integer
               FH Info used for direct access

           ndmp.file.fs_type  File FS Type
               Unsigned 32-bit integer
               Type of file permissions (UNIX or NT)

           ndmp.file.group  Group
               Unsigned 32-bit integer
               GID for UNIX, NA for NT

           ndmp.file.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
               Fragment Length

           ndmp.fs.avail_size  Avail Size
               Unsigned 64-bit integer
               Total available size on FS

           ndmp.fs.env  Env variables
               No value
               Environment variables for FS

           ndmp.fs.env.name  Name
               String
               Name for this env-variable

           ndmp.fs.env.value  Value
               String
               Value for this env-variable

           ndmp.fs.info  FS Info
               No value
               FS Info

           ndmp.fs.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 Header

           ndmp.hostid  HostID
               String
               HostID

           ndmp.hostname  Hostname
               String
               Hostname

           ndmp.lastfrag  Last Fragment
               Boolean
               Last Fragment

           ndmp.log.message  Message
               String
               Log entry

           ndmp.log.message.id  Message ID
               Unsigned 32-bit integer
               ID of this log entry

           ndmp.log.type  Type
               Unsigned 32-bit integer
               Type of log entry

           ndmp.mover.mode  Mode
               Unsigned 32-bit integer
               Mover Mode

           ndmp.mover.pause  Pause
               Unsigned 32-bit integer
               Reason why the mover paused

           ndmp.mover.state  State
               Unsigned 32-bit integer
               State of the selected mover

           ndmp.msg  Message
               Unsigned 32-bit integer
               Type of NDMP PDU

           ndmp.msg_type  Type
               Unsigned 32-bit integer
               Is this a Request or Response?

           ndmp.nlist  Nlist
               No value
               List of names

           ndmp.nodes  Nodes
               No value
               List of nodes

           ndmp.os.type  OS Type
               String
               OS Type

           ndmp.os.version  OS Version
               String
               OS Version

           ndmp.record.num  Record Num
               Unsigned 32-bit integer
               Number of records

           ndmp.record.size  Record Size
               Unsigned 32-bit integer
               Record size in bytes

           ndmp.reply_sequence  Reply Sequence
               Unsigned 32-bit integer
               Reply Sequence number for NDMP PDU

           ndmp.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
               SCSI Info

           ndmp.scsi.lun  LUN
               Unsigned 32-bit integer
               Target LUN

           ndmp.scsi.model  Model
               String
               Model of the SCSI device

           ndmp.seek.position  Seek Position
               Unsigned 64-bit integer
               Current seek position on device

           ndmp.sequence  Sequence
               Unsigned 32-bit integer
               Sequence number for NDMP PDU

           ndmp.server.product  Product
               String
               Name of product

           ndmp.server.revision  Revision
               String
               Revision of this product

           ndmp.server.vendor  Vendor
               String
               Name of vendor

           ndmp.tape.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
               Tape Capabilities

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

           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
               block_no

           ndmp.tape.status.block_size  block_size
               Unsigned 32-bit integer
               block_size

           ndmp.tape.status.file_num  file_num
               Unsigned 32-bit integer
               file_num

           ndmp.tape.status.partition  partition
               Unsigned 32-bit integer
               partition

           ndmp.tape.status.soft_errors  soft_errors
               Unsigned 32-bit integer
               soft_errors

           ndmp.tape.status.space_remain  space_remain
               Unsigned 64-bit integer
               space_remain

           ndmp.tape.status.total_space  total_space
               Unsigned 64-bit integer
               total_space

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

   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_location  cb_location
               Unsigned 32-bit integer

           nfs.cb_program  cb_program
               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.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
               device ID

           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  EXCHANGE_ID flags
               Unsigned 32-bit integer

           nfs.exchange_id.state_protect  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.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.pinode  pseudo inode
               Unsigned 32-bit integer

           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.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  Implementer Domain name
               String

           nfs.nii_name4  Implementation name
               String

           nfs.notificationbitmap  notification bitmap
               Unsigned 32-bit integer
               notification bitmap

           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.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
               layout pattern offset

           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.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.reclaim4  reclaim
               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.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.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
               block

           nlm.cookie  cookie
               Byte array
               cookie

           nlm.exclusive  exclusive
               Boolean
               exclusive

           nlm.holder  holder
               No value
               holder

           nlm.lock  lock
               No value
               lock

           nlm.lock.caller_name  caller_name
               String
               caller_name

           nlm.lock.l_len  l_len
               Unsigned 64-bit integer
               l_len

           nlm.lock.l_offset  l_offset
               Unsigned 64-bit integer
               l_offset

           nlm.lock.owner  owner
               Byte array
               owner

           nlm.lock.svid  svid
               Unsigned 32-bit integer
               svid

           nlm.msg_in  Request MSG in
               Unsigned 32-bit integer
               The RES packet is a response to the MSG in this packet

           nlm.procedure_v1  V1 Procedure
               Unsigned 32-bit integer
               V1 Procedure

           nlm.procedure_v2  V2 Procedure
               Unsigned 32-bit integer
               V2 Procedure

           nlm.procedure_v3  V3 Procedure
               Unsigned 32-bit integer
               V3 Procedure

           nlm.procedure_v4  V4 Procedure
               Unsigned 32-bit integer
               V4 Procedure

           nlm.reclaim  reclaim
               Boolean
               reclaim

           nlm.res_in  Reply RES in
               Unsigned 32-bit integer
               The response to this MSG packet is in this packet

           nlm.sequence  sequence
               Signed 32-bit integer
               sequence

           nlm.share  share
               No value
               share

           nlm.share.access  access
               Unsigned 32-bit integer
               access

           nlm.share.mode  mode
               Unsigned 32-bit integer
               mode

           nlm.share.name  name
               String
               name

           nlm.stat  stat
               Unsigned 32-bit integer
               stat

           nlm.state  state
               Unsigned 32-bit integer
               STATD state

           nlm.test_stat  test_stat
               No value
               test_stat

           nlm.test_stat.stat  stat
               Unsigned 32-bit integer
               stat

           nlm.time  Time from request
               Time duration
               Time between Request and Reply for async NLM calls

   Network News Transfer Protocol (nntp)
           nntp.request  Request
               Boolean
               TRUE if NNTP request

           nntp.response  Response
               Boolean
               TRUE if NNTP response

   Network Service Over IP (nsip)
           nsip.bvci  BVCI
               Unsigned 16-bit integer
               BSSGP Virtual Connection Identifier

           nsip.cause  Cause
               Unsigned 8-bit integer

           nsip.control_bits.c  Confirm change flow
               Boolean

           nsip.control_bits.r  Request change flow
               Boolean

           nsip.end_flag  End flag
               Boolean

           nsip.ip4_elements  IP4 elements
               No value
               List of IP4 elements

           nsip.ip6_elements  IP6 elements
               No value
               List of IP6 elements

           nsip.ip_address  IP Address
               IPv4 address

           nsip.ip_address_type  IP Address Type
               Unsigned 8-bit integer

           nsip.ip_element.data_weight  Data Weight
               Unsigned 8-bit integer

           nsip.ip_element.ip_address  IP Address
               IPv4 address

           nsip.ip_element.signalling_weight  Signalling Weight
               Unsigned 8-bit integer

           nsip.ip_element.udp_port  UDP Port
               Unsigned 16-bit integer

           nsip.max_num_ns_vc  Maximum number of NS-VCs
               Unsigned 16-bit integer

           nsip.ns_vci  NS-VCI
               Unsigned 16-bit integer
               Network Service Virtual Link Identifier

           nsip.nsei  NSEI
               Unsigned 16-bit integer
               Network Service Entity Identifier

           nsip.num_ip4_endpoints  Number of IP4 endpoints
               Unsigned 16-bit integer

           nsip.num_ip6_endpoints  Number of IP6 endpoints
               Unsigned 16-bit integer

           nsip.pdu_type  PDU type
               Unsigned 8-bit integer
               PDU type information element

           nsip.reset_flag  Reset flag
               Boolean

           nsip.transaction_id  Transaction ID
               Unsigned 8-bit integer

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

           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
               Monitor ID Name

           stat.my_id  My ID
               No value
               My_ID structure

           stat.my_id.hostname  Hostname
               String
               My_ID Host to callback

           stat.my_id.proc  Procedure
               Unsigned 32-bit integer
               My_ID Procedure to callback

           stat.my_id.prog  Program
               Unsigned 32-bit integer
               My_ID Program to callback

           stat.my_id.vers  Version
               Unsigned 32-bit integer
               My_ID Version of callback

           stat.name  Name
               String
               Name

           stat.priv  Priv
               Byte array
               Private client supplied opaque data

           stat.procedure_v1  V1 Procedure
               Unsigned 32-bit integer
               V1 Procedure

           stat.stat_chge  Status Change
               No value
               Status Change structure

           stat.stat_res  Status Result
               No value
               Status Result

           stat.stat_res.res  Result
               Unsigned 32-bit integer
               Result

           stat.stat_res.state  State
               Unsigned 32-bit integer
               State

           stat.state  State
               Unsigned 32-bit integer
               State of local NSM

   Network Time Protocol (ntp)
           ntp.ext  Extension
               No value
               Extension

           ntp.ext.associd  Association ID
               Unsigned 32-bit integer
               Association ID

           ntp.ext.flags  Flags
               Unsigned 8-bit integer
               Flags (Response/Error/Version)

           ntp.ext.flags.error  Error bit
               Unsigned 8-bit integer
               Error bit

           ntp.ext.flags.r  Response bit
               Unsigned 8-bit integer
               Response bit

           ntp.ext.flags.vn  Version
               Unsigned 8-bit integer
               Version

           ntp.ext.fstamp  File Timestamp
               Unsigned 32-bit integer
               File Timestamp

           ntp.ext.len  Extension length
               Unsigned 16-bit integer
               Extension length

           ntp.ext.op  Opcode
               Unsigned 8-bit integer
               Opcode

           ntp.ext.sig  Signature
               Byte array
               Signature

           ntp.ext.siglen  Signature length
               Unsigned 32-bit integer
               Signature length

           ntp.ext.tstamp  Timestamp
               Unsigned 32-bit integer
               Timestamp

           ntp.ext.val  Value
               Byte array
               Value

           ntp.ext.vallen  Value length
               Unsigned 32-bit integer
               Value length

           ntp.flags  Flags
               Unsigned 8-bit integer
               Flags (Leap/Version/Mode)

           ntp.flags.li  Leap Indicator
               Unsigned 8-bit integer
               Leap Indicator

           ntp.flags.mode  Mode
               Unsigned 8-bit integer
               Mode

           ntp.flags.vn  Version number
               Unsigned 8-bit integer
               Version number

           ntp.keyid  Key ID
               Byte array
               Key ID

           ntp.mac  Message Authentication Code
               Byte array
               Message Authentication Code

           ntp.org  Originate Time Stamp
               Byte array
               Originate Time Stamp

           ntp.ppoll  Peer Polling Interval
               Unsigned 8-bit integer
               Peer Polling Interval

           ntp.precision  Peer Clock Precision
               Signed 8-bit integer
               Peer Clock Precision

           ntp.rec  Receive Time Stamp
               Byte array
               Receive Time Stamp

           ntp.refid  Reference Clock ID
               Byte array
               Reference Clock ID

           ntp.reftime  Reference Clock Update Time
               Byte array
               Reference Clock Update Time

           ntp.rootdelay  Root Delay
               Double-precision floating point
               Root Delay

           ntp.rootdispersion  Root Dispersion
               Double-precision floating point
               Root Dispersion

           ntp.stratum  Peer Clock Stratum
               Unsigned 8-bit integer
               Peer Clock Stratum

           ntp.xmt  Transmit Time Stamp
               Byte array
               Transmit Time Stamp

           ntpctrl.flags2  Flags 2
               Unsigned 8-bit integer
               Flags (Response/Error/More/Opcode)

           ntpctrl.flags2.error  Error bit
               Unsigned 8-bit integer
               Error bit

           ntpctrl.flags2.more  More bit
               Unsigned 8-bit integer
               More bit

           ntpctrl.flags2.opcode  Opcode
               Unsigned 8-bit integer
               Opcode

           ntpctrl.flags2.r  Response bit
               Unsigned 8-bit integer
               Response bit

           ntppriv.auth  Auth bit
               Unsigned 8-bit integer
               Auth bit

           ntppriv.auth_seq  Auth, sequence
               Unsigned 8-bit integer
               Auth bit, sequence number

           ntppriv.flags.more  More bit
               Unsigned 8-bit integer
               More bit

           ntppriv.flags.r  Response bit
               Unsigned 8-bit integer
               Response bit

           ntppriv.impl  Implementation
               Unsigned 8-bit integer
               Implementation

           ntppriv.reqcode  Request code
               Unsigned 8-bit integer
               Request code

           ntppriv.seq  Sequence number
               Unsigned 8-bit integer
               Sequence number

   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.128eea0  128-EEA0
               Boolean

           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  Type of identity
               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.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
               ESM message container contents

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

           nas_eps.emm.service_type  Service type
               Unsigned 8-bit integer

           nas_eps.emm.short_mac  Short MAC value
               Byte array

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

           nas_eps.esm.pdn_ipv6  PDN IPv6
               IPv6 address
               PDN IPv6

           nas_eps.esm.pdn_ipv6_len  IPv6 Prefix Length
               Unsigned 8-bit integer
               IPv6 Prefix Length

           nas_eps.esm.proc_trans_id  Procedure transaction identity
               Unsigned 8-bit integer

           nas_eps.esm_request_type  Request type
               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.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
               Address Bytes

           ndps.addr_len  Address Length
               Unsigned 32-bit integer
               Address Length

           ndps.admin_submit_flag  Admin Submit Flag?
               Boolean
               Admin Submit Flag?

           ndps.answer_time  Answer Time
               Unsigned 32-bit integer
               Answer Time

           ndps.archive_size  Archive File Size
               Unsigned 32-bit integer
               Archive File Size

           ndps.archive_type  Archive Type
               Unsigned 32-bit integer
               Archive Type

           ndps.asn1_type  ASN.1 Type
               Unsigned 16-bit integer
               ASN.1 Type

           ndps.attribue_value  Value
               Unsigned 32-bit integer
               Value

           ndps.attribute_set  Attribute Set
               Byte array
               Attribute Set

           ndps.attribute_time  Time
               Date/Time stamp
               Time

           ndps.auth_null  Auth Null
               Byte array
               Auth Null

           ndps.banner_count  Number of Banners
               Unsigned 32-bit integer
               Number of Banners

           ndps.banner_name  Banner Name
               String
               Banner Name

           ndps.banner_type  Banner Type
               Unsigned 32-bit integer
               Banner Type

           ndps.broker_name  Broker Name
               String
               Broker Name

           ndps.certified  Certified
               Byte array
               Certified

           ndps.connection  Connection
               Unsigned 16-bit integer
               Connection

           ndps.context  Context
               Byte array
               Context

           ndps.context_len  Context Length
               Unsigned 32-bit integer
               Context Length

           ndps.cred_type  Credential Type
               Unsigned 32-bit integer
               Credential Type

           ndps.data  [Data]
               No value
               [Data]

           ndps.delivery_add_count  Number of Delivery Addresses
               Unsigned 32-bit integer
               Number of Delivery Addresses

           ndps.delivery_flag  Delivery Address Data?
               Boolean
               Delivery Address Data?

           ndps.delivery_method_count  Number of Delivery Methods
               Unsigned 32-bit integer
               Number of Delivery Methods

           ndps.delivery_method_type  Delivery Method Type
               Unsigned 32-bit integer
               Delivery Method Type

           ndps.doc_content  Document Content
               Unsigned 32-bit integer
               Document Content

           ndps.doc_name  Document Name
               String
               Document Name

           ndps.error_val  Return Status
               Unsigned 32-bit integer
               Return Status

           ndps.ext_err_string  Extended Error String
               String
               Extended Error String

           ndps.ext_error  Extended Error Code
               Unsigned 32-bit integer
               Extended Error Code

           ndps.file_name  File Name
               String
               File Name

           ndps.file_time_stamp  File Time Stamp
               Unsigned 32-bit integer
               File Time Stamp

           ndps.font_file_count  Number of Font Files
               Unsigned 32-bit integer
               Number of Font Files

           ndps.font_file_name  Font File Name
               String
               Font File Name

           ndps.font_name  Font Name
               String
               Font Name

           ndps.font_type  Font Type
               Unsigned 32-bit integer
               Font Type

           ndps.font_type_count  Number of Font Types
               Unsigned 32-bit integer
               Number of Font Types

           ndps.font_type_name  Font Type Name
               String
               Font Type Name

           ndps.fragment  NDPS Fragment
               Frame number
               NDPS Fragment

           ndps.fragments  NDPS Fragments
               No value
               NDPS Fragments

           ndps.get_status_flags  Get Status Flag
               Unsigned 32-bit integer
               Get Status Flag

           ndps.guid  GUID
               Byte array
               GUID

           ndps.inc_across_feed  Increment Across Feed
               Byte array
               Increment Across Feed

           ndps.included_doc  Included Document
               Byte array
               Included Document

           ndps.included_doc_len  Included Document Length
               Unsigned 32-bit integer
               Included Document Length

           ndps.inf_file_name  INF File Name
               String
               INF File Name

           ndps.info_boolean  Boolean Value
               Boolean
               Boolean Value

           ndps.info_bytes  Byte Value
               Byte array
               Byte Value

           ndps.info_int  Integer Value
               Unsigned 8-bit integer
               Integer Value

           ndps.info_int16  16 Bit Integer Value
               Unsigned 16-bit integer
               16 Bit Integer Value

           ndps.info_int32  32 Bit Integer Value
               Unsigned 32-bit integer
               32 Bit Integer Value

           ndps.info_string  String Value
               String
               String Value

           ndps.interrupt_job_type  Interrupt Job Identifier
               Unsigned 32-bit integer
               Interrupt Job Identifier

           ndps.interval  Interval
               Unsigned 32-bit integer
               Interval

           ndps.ip  IP Address
               IPv4 address
               IP Address

           ndps.item_bytes  Item Ptr
               Byte array
               Item Ptr

           ndps.item_ptr  Item Pointer
               Byte array
               Item Pointer

           ndps.language_flag  Language Data?
               Boolean
               Language Data?

           ndps.last_packet_flag  Last Packet Flag
               Unsigned 32-bit integer
               Last Packet Flag

           ndps.level  Level
               Unsigned 32-bit integer
               Level

           ndps.local_id  Local ID
               Unsigned 32-bit integer
               Local ID

           ndps.lower_range  Lower Range
               Unsigned 32-bit integer
               Lower Range

           ndps.lower_range_n64  Lower Range
               Byte array
               Lower Range

           ndps.message  Message
               String
               Message

           ndps.method_flag  Method Data?
               Boolean
               Method Data?

           ndps.method_name  Method Name
               String
               Method Name

           ndps.method_ver  Method Version
               String
               Method Version

           ndps.n64  Value
               Byte array
               Value

           ndps.ndps_abort  Abort?
               Boolean
               Abort?

           ndps.ndps_address  Address
               Unsigned 32-bit integer
               Address

           ndps.ndps_address_type  Address Type
               Unsigned 32-bit integer
               Address Type

           ndps.ndps_attrib_boolean  Value?
               Boolean
               Value?

           ndps.ndps_attrib_type  Value Syntax
               Unsigned 32-bit integer
               Value Syntax

           ndps.ndps_attrs_arg  List Attribute Operation
               Unsigned 32-bit integer
               List Attribute Operation

           ndps.ndps_bind_security  Bind Security Options
               Unsigned 32-bit integer
               Bind Security Options

           ndps.ndps_bind_security_count  Number of Bind Security Options
               Unsigned 32-bit integer
               Number of Bind Security Options

           ndps.ndps_car_name_or_oid  Cardinal Name or OID
               Unsigned 32-bit integer
               Cardinal Name or OID

           ndps.ndps_car_or_oid  Cardinal or OID
               Unsigned 32-bit integer
               Cardinal or OID

           ndps.ndps_card_enum_time  Cardinal, Enum, or Time
               Unsigned 32-bit integer
               Cardinal, Enum, or Time

           ndps.ndps_client_server_type  Client/Server Type
               Unsigned 32-bit integer
               Client/Server Type

           ndps.ndps_colorant_set  Colorant Set
               Unsigned 32-bit integer
               Colorant Set

           ndps.ndps_continuation_option  Continuation Option
               Byte array
               Continuation Option

           ndps.ndps_count_limit  Count Limit
               Unsigned 32-bit integer
               Count Limit

           ndps.ndps_criterion_type  Criterion Type
               Unsigned 32-bit integer
               Criterion Type

           ndps.ndps_data_item_type  Item Type
               Unsigned 32-bit integer
               Item Type

           ndps.ndps_delivery_add_type  Delivery Address Type
               Unsigned 32-bit integer
               Delivery Address Type

           ndps.ndps_dim_falg  Dimension Flag
               Unsigned 32-bit integer
               Dimension Flag

           ndps.ndps_dim_value  Dimension Value Type
               Unsigned 32-bit integer
               Dimension Value Type

           ndps.ndps_direction  Direction
               Unsigned 32-bit integer
               Direction

           ndps.ndps_doc_content  Document Content
               Unsigned 32-bit integer
               Document Content

           ndps.ndps_doc_num  Document Number
               Unsigned 32-bit integer
               Document Number

           ndps.ndps_ds_info_type  DS Info Type
               Unsigned 32-bit integer
               DS Info Type

           ndps.ndps_edge_value  Edge Value
               Unsigned 32-bit integer
               Edge Value

           ndps.ndps_event_object_identifier  Event Object Type
               Unsigned 32-bit integer
               Event Object Type

           ndps.ndps_event_type  Event Type
               Unsigned 32-bit integer
               Event Type

           ndps.ndps_filter  Filter Type
               Unsigned 32-bit integer
               Filter Type

           ndps.ndps_filter_item  Filter Item Operation
               Unsigned 32-bit integer
               Filter Item Operation

           ndps.ndps_force  Force?
               Boolean
               Force?

           ndps.ndps_get_resman_session_type  Session Type
               Unsigned 32-bit integer
               Session Type

           ndps.ndps_get_session_type  Session Type
               Unsigned 32-bit integer
               Session Type

           ndps.ndps_identifier_type  Identifier Type
               Unsigned 32-bit integer
               Identifier Type

           ndps.ndps_ignored_type  Ignored Type
               Unsigned 32-bit integer
               Ignored Type

           ndps.ndps_integer_or_oid  Integer or OID
               Unsigned 32-bit integer
               Integer or OID

           ndps.ndps_integer_type_flag  Integer Type Flag
               Unsigned 32-bit integer
               Integer Type Flag

           ndps.ndps_integer_type_value  Integer Type Value
               Unsigned 32-bit integer
               Integer Type Value

           ndps.ndps_item_count  Number of Items
               Unsigned 32-bit integer
               Number of Items

           ndps.ndps_lang_id  Language ID
               Unsigned 32-bit integer
               Language ID

           ndps.ndps_language_count  Number of Languages
               Unsigned 32-bit integer
               Number of Languages

           ndps.ndps_len  Length
               Unsigned 16-bit integer
               Length

           ndps.ndps_lib_error  Library Error
               Unsigned 32-bit integer
               Library Error

           ndps.ndps_limit_enc  Limit Encountered
               Unsigned 32-bit integer
               Limit Encountered

           ndps.ndps_list_local_server_type  Server Type
               Unsigned 32-bit integer
               Server Type

           ndps.ndps_list_profiles_choice_type  List Profiles Choice Type
               Unsigned 32-bit integer
               List Profiles Choice Type

           ndps.ndps_list_profiles_result_type  List Profiles Result Type
               Unsigned 32-bit integer
               List Profiles Result Type

           ndps.ndps_list_profiles_type  List Profiles Type
               Unsigned 32-bit integer
               List Profiles Type

           ndps.ndps_list_services_type  Services Type
               Unsigned 32-bit integer
               Services Type

           ndps.ndps_loc_object_name  Local Object Name
               String
               Local Object Name

           ndps.ndps_location_value  Location Value Type
               Unsigned 32-bit integer
               Location Value Type

           ndps.ndps_long_edge_feeds  Long Edge Feeds?
               Boolean
               Long Edge Feeds?

           ndps.ndps_max_items  Maximum Items in List
               Unsigned 32-bit integer
               Maximum Items in List

           ndps.ndps_media_type  Media Type
               Unsigned 32-bit integer
               Media Type

           ndps.ndps_medium_size  Medium Size
               Unsigned 32-bit integer
               Medium Size

           ndps.ndps_nameorid  Name or ID Type
               Unsigned 32-bit integer
               Name or ID Type

           ndps.ndps_num_resources  Number of Resources
               Unsigned 32-bit integer
               Number of Resources

           ndps.ndps_num_services  Number of Services
               Unsigned 32-bit integer
               Number of Services

           ndps.ndps_numbers_up  Numbers Up
               Unsigned 32-bit integer
               Numbers Up

           ndps.ndps_object_name  Object Name
               String
               Object Name

           ndps.ndps_object_op  Operation
               Unsigned 32-bit integer
               Operation

           ndps.ndps_operator  Operator Type
               Unsigned 32-bit integer
               Operator Type

           ndps.ndps_other_error  Other Error
               Unsigned 32-bit integer
               Other Error

           ndps.ndps_other_error_2  Other Error 2
               Unsigned 32-bit integer
               Other Error 2

           ndps.ndps_page_flag  Page Flag
               Unsigned 32-bit integer
               Page Flag

           ndps.ndps_page_order  Page Order
               Unsigned 32-bit integer
               Page Order

           ndps.ndps_page_orientation  Page Orientation
               Unsigned 32-bit integer
               Page Orientation

           ndps.ndps_page_size  Page Size
               Unsigned 32-bit integer
               Page Size

           ndps.ndps_persistence  Persistence
               Unsigned 32-bit integer
               Persistence

           ndps.ndps_printer_name  Printer Name
               String
               Printer Name

           ndps.ndps_profile_id  Profile ID
               Unsigned 32-bit integer
               Profile ID

           ndps.ndps_qual  Qualifier
               Unsigned 32-bit integer
               Qualifier

           ndps.ndps_qual_name_type  Qualified Name Type
               Unsigned 32-bit integer
               Qualified Name Type

           ndps.ndps_qual_name_type2  Qualified Name Type
               Unsigned 32-bit integer
               Qualified Name Type

           ndps.ndps_realization  Realization Type
               Unsigned 32-bit integer
               Realization Type

           ndps.ndps_resource_type  Resource Type
               Unsigned 32-bit integer
               Resource Type

           ndps.ndps_ret_restrict  Retrieve Restrictions
               Unsigned 32-bit integer
               Retrieve Restrictions

           ndps.ndps_server_type  NDPS Server Type
               Unsigned 32-bit integer
               NDPS Server Type

           ndps.ndps_service_enabled  Service Enabled?
               Boolean
               Service Enabled?

           ndps.ndps_service_type  NDPS Service Type
               Unsigned 32-bit integer
               NDPS Service Type

           ndps.ndps_session  Session Handle
               Unsigned 32-bit integer
               Session Handle

           ndps.ndps_session_type  Session Type
               Unsigned 32-bit integer
               Session Type

           ndps.ndps_state_severity  State Severity
               Unsigned 32-bit integer
               State Severity

           ndps.ndps_status_flags  Status Flag
               Unsigned 32-bit integer
               Status Flag

           ndps.ndps_substring_match  Substring Match
               Unsigned 32-bit integer
               Substring Match

           ndps.ndps_time_limit  Time Limit
               Unsigned 32-bit integer
               Time Limit

           ndps.ndps_training  Training
               Unsigned 32-bit integer
               Training

           ndps.ndps_xdimension  X Dimension
               Unsigned 32-bit integer
               X Dimension

           ndps.ndps_xydim_value  XY Dimension Value Type
               Unsigned 32-bit integer
               XY Dimension Value Type

           ndps.ndps_ydimension  Y Dimension
               Unsigned 32-bit integer
               Y Dimension

           ndps.net  IPX Network
               IPX network or server name
               Scope

           ndps.node  Node
               6-byte Hardware (MAC) Address
               Node

           ndps.notify_lease_exp_time  Notify Lease Expiration Time
               Unsigned 32-bit integer
               Notify Lease Expiration Time

           ndps.notify_printer_uri  Notify Printer URI
               String
               Notify Printer URI

           ndps.notify_seq_number  Notify Sequence Number
               Unsigned 32-bit integer
               Notify Sequence Number

           ndps.notify_time_interval  Notify Time Interval
               Unsigned 32-bit integer
               Notify Time Interval

           ndps.num_address_items  Number of Address Items
               Unsigned 32-bit integer
               Number of Address Items

           ndps.num_areas  Number of Areas
               Unsigned 32-bit integer
               Number of Areas

           ndps.num_argss  Number of Arguments
               Unsigned 32-bit integer
               Number of Arguments

           ndps.num_attributes  Number of Attributes
               Unsigned 32-bit integer
               Number of Attributes

           ndps.num_categories  Number of Categories
               Unsigned 32-bit integer
               Number of Categories

           ndps.num_colorants  Number of Colorants
               Unsigned 32-bit integer
               Number of Colorants

           ndps.num_destinations  Number of Destinations
               Unsigned 32-bit integer
               Number of Destinations

           ndps.num_doc_types  Number of Document Types
               Unsigned 32-bit integer
               Number of Document Types

           ndps.num_events  Number of Events
               Unsigned 32-bit integer
               Number of Events

           ndps.num_ignored_attributes  Number of Ignored Attributes
               Unsigned 32-bit integer
               Number of Ignored Attributes

           ndps.num_job_categories  Number of Job Categories
               Unsigned 32-bit integer
               Number of Job Categories

           ndps.num_jobs  Number of Jobs
               Unsigned 32-bit integer
               Number of Jobs

           ndps.num_locations  Number of Locations
               Unsigned 32-bit integer
               Number of Locations

           ndps.num_names  Number of Names
               Unsigned 32-bit integer
               Number of Names

           ndps.num_objects  Number of Objects
               Unsigned 32-bit integer
               Number of Objects

           ndps.num_options  Number of Options
               Unsigned 32-bit integer
               Number of Options

           ndps.num_page_informations  Number of Page Information Items
               Unsigned 32-bit integer
               Number of Page Information Items

           ndps.num_page_selects  Number of Page Select Items
               Unsigned 32-bit integer
               Number of Page Select Items

           ndps.num_passwords  Number of Passwords
               Unsigned 32-bit integer
               Number of Passwords

           ndps.num_results  Number of Results
               Unsigned 32-bit integer
               Number of Results

           ndps.num_servers  Number of Servers
               Unsigned 32-bit integer
               Number of Servers

           ndps.num_transfer_methods  Number of Transfer Methods
               Unsigned 32-bit integer
               Number of Transfer Methods

           ndps.num_values  Number of Values
               Unsigned 32-bit integer
               Number of Values

           ndps.num_win31_keys  Number of Windows 3.1 Keys
               Unsigned 32-bit integer
               Number of Windows 3.1 Keys

           ndps.num_win95_keys  Number of Windows 95 Keys
               Unsigned 32-bit integer
               Number of Windows 95 Keys

           ndps.num_windows_keys  Number of Windows Keys
               Unsigned 32-bit integer
               Number of Windows Keys

           ndps.object  Object ID
               Unsigned 32-bit integer
               Object ID

           ndps.objectid_def10  Object ID Definition
               No value
               Object ID Definition

           ndps.objectid_def11  Object ID Definition
               No value
               Object ID Definition

           ndps.objectid_def12  Object ID Definition
               No value
               Object ID Definition

           ndps.objectid_def13  Object ID Definition
               No value
               Object ID Definition

           ndps.objectid_def14  Object ID Definition
               No value
               Object ID Definition

           ndps.objectid_def15  Object ID Definition
               No value
               Object ID Definition

           ndps.objectid_def16  Object ID Definition
               No value
               Object ID Definition

           ndps.objectid_def7  Object ID Definition
               No value
               Object ID Definition

           ndps.objectid_def8  Object ID Definition
               No value
               Object ID Definition

           ndps.objectid_def9  Object ID Definition
               No value
               Object ID Definition

           ndps.octet_string  Octet String
               Byte array
               Octet String

           ndps.oid  Object ID
               Byte array
               Object ID

           ndps.os_count  Number of OSes
               Unsigned 32-bit integer
               Number of OSes

           ndps.os_type  OS Type
               Unsigned 32-bit integer
               OS Type

           ndps.pa_name  Printer Name
               String
               Printer Name

           ndps.packet_count  Packet Count
               Unsigned 32-bit integer
               Packet Count

           ndps.packet_type  Packet Type
               Unsigned 32-bit integer
               Packet Type

           ndps.password  Password
               Byte array
               Password

           ndps.pause_job_type  Pause Job Identifier
               Unsigned 32-bit integer
               Pause Job Identifier

           ndps.port  IP Port
               Unsigned 16-bit integer
               IP Port

           ndps.print_arg  Print Type
               Unsigned 32-bit integer
               Print Type

           ndps.print_def_name  Printer Definition Name
               String
               Printer Definition Name

           ndps.print_dir_name  Printer Directory Name
               String
               Printer Directory Name

           ndps.print_file_name  Printer File Name
               String
               Printer File Name

           ndps.print_security  Printer Security
               Unsigned 32-bit integer
               Printer Security

           ndps.printer_def_count  Number of Printer Definitions
               Unsigned 32-bit integer
               Number of Printer Definitions

           ndps.printer_id  Printer ID
               Byte array
               Printer ID

           ndps.printer_type_count  Number of Printer Types
               Unsigned 32-bit integer
               Number of Printer Types

           ndps.prn_manuf  Printer Manufacturer
               String
               Printer Manufacturer

           ndps.prn_type  Printer Type
               String
               Printer Type

           ndps.rbuffer  Connection
               Unsigned 32-bit integer
               Connection

           ndps.record_length  Record Length
               Unsigned 16-bit integer
               Record Length

           ndps.record_mark  Record Mark
               Unsigned 16-bit integer
               Record Mark

           ndps.ref_doc_name  Referenced Document Name
               String
               Referenced Document Name

           ndps.registry_name  Registry Name
               String
               Registry Name

           ndps.reqframe  Request Frame
               Frame number
               Request Frame

           ndps.res_type  Resource Type
               Unsigned 32-bit integer
               Resource Type

           ndps.resubmit_op_type  Resubmit Operation Type
               Unsigned 32-bit integer
               Resubmit Operation Type

           ndps.ret_code  Return Code
               Unsigned 32-bit integer
               Return Code

           ndps.rpc_acc  RPC Accept or Deny
               Unsigned 32-bit integer
               RPC Accept or Deny

           ndps.rpc_acc_prob  Access Problem
               Unsigned 32-bit integer
               Access Problem

           ndps.rpc_acc_res  RPC Accept Results
               Unsigned 32-bit integer
               RPC Accept Results

           ndps.rpc_acc_stat  RPC Accept Status
               Unsigned 32-bit integer
               RPC Accept Status

           ndps.rpc_attr_prob  Attribute Problem
               Unsigned 32-bit integer
               Attribute Problem

           ndps.rpc_doc_acc_prob  Document Access Problem
               Unsigned 32-bit integer
               Document Access Problem

           ndps.rpc_obj_id_type  Object ID Type
               Unsigned 32-bit integer
               Object ID Type

           ndps.rpc_oid_struct_size  OID Struct Size
               Unsigned 16-bit integer
               OID Struct Size

           ndps.rpc_print_prob  Printer Problem
               Unsigned 32-bit integer
               Printer Problem

           ndps.rpc_prob_type  Problem Type
               Unsigned 32-bit integer
               Problem Type

           ndps.rpc_rej_stat  RPC Reject Status
               Unsigned 32-bit integer
               RPC Reject Status

           ndps.rpc_sec_prob  Security Problem
               Unsigned 32-bit integer
               Security Problem

           ndps.rpc_sel_prob  Selection Problem
               Unsigned 32-bit integer
               Selection Problem

           ndps.rpc_serv_prob  Service Problem
               Unsigned 32-bit integer
               Service Problem

           ndps.rpc_update_prob  Update Problem
               Unsigned 32-bit integer
               Update Problem

           ndps.rpc_version  RPC Version
               Unsigned 32-bit integer
               RPC Version

           ndps.sbuffer  Server
               Unsigned 32-bit integer
               Server

           ndps.scope  Scope
               Unsigned 32-bit integer
               Scope

           ndps.segment.error  Desegmentation error
               Frame number
               Desegmentation error due to illegal segments

           ndps.segment.multipletails  Multiple tail segments found
               Boolean
               Several tails were found when desegmenting the packet

           ndps.segment.overlap  Segment overlap
               Boolean
               Segment overlaps with other segments

           ndps.segment.overlap.conflict  Conflicting data in segment overlap
               Boolean
               Overlapping segments contained conflicting data

           ndps.segment.toolongsegment  Segment too long
               Boolean
               Segment contained data past end of packet

           ndps.server_name  Server Name
               String
               Server Name

           ndps.shutdown_type  Shutdown Type
               Unsigned 32-bit integer
               Shutdown Type

           ndps.size_inc_in_feed  Size Increment in Feed
               Byte array
               Size Increment in Feed

           ndps.socket  IPX Socket
               Unsigned 16-bit integer
               IPX Socket

           ndps.sub_complete  Submission Complete?
               Boolean
               Submission Complete?

           ndps.supplier_flag  Supplier Data?
               Boolean
               Supplier Data?

           ndps.supplier_name  Supplier Name
               String
               Supplier Name

           ndps.time  Time
               Unsigned 32-bit integer
               Time

           ndps.tree  Tree
               String
               Tree

           ndps.upper_range  Upper Range
               Unsigned 32-bit integer
               Upper Range

           ndps.upper_range_n64  Upper Range
               Byte array
               Upper Range

           ndps.user_name  Trustee Name
               String
               Trustee Name

           ndps.vendor_dir  Vendor Directory
               String
               Vendor Directory

           ndps.windows_key  Windows Key
               String
               Windows Key

           ndps.xdimension_n64  X Dimension
               Byte array
               X Dimension

           ndps.xid  Exchange ID
               Unsigned 32-bit integer
               Exchange ID

           ndps.xmax_n64  Maximum X Dimension
               Byte array
               Maximum X Dimension

           ndps.xmin_n64  Minimum X Dimension
               Byte array
               Minimum X Dimension

           ndps.ymax_n64  Maximum Y Dimension
               Byte array
               Maximum Y Dimension

           ndps.ymin_n64  Minimum Y Dimension
               Byte array
               Minimum Y Dimension

           spx.ndps_error  NDPS Error
               Unsigned 32-bit integer
               NDPS Error

           spx.ndps_func_broker  Broker Program
               Unsigned 32-bit integer
               Broker Program

           spx.ndps_func_delivery  Delivery Program
               Unsigned 32-bit integer
               Delivery Program

           spx.ndps_func_notify  Notify Program
               Unsigned 32-bit integer
               Notify Program

           spx.ndps_func_print  Print Program
               Unsigned 32-bit integer
               Print Program

           spx.ndps_func_registry  Registry Program
               Unsigned 32-bit integer
               Registry Program

           spx.ndps_func_resman  ResMan Program
               Unsigned 32-bit integer
               ResMan Program

           spx.ndps_program  NDPS Program Number
               Unsigned 32-bit integer
               NDPS Program Number

           spx.ndps_version  Program Version
               Unsigned 32-bit integer
               Program Version

   Novell Modular Authentication Service (nmas)
           nmas.attribute  Attribute Type
               Unsigned 32-bit integer
               Attribute Type

           nmas.buf_size  Reply Buffer Size
               Unsigned 32-bit integer
               Reply Buffer Size

           nmas.clearance  Requested Clearance
               String
               Requested Clearance

           nmas.cqueue_bytes  Client Queue Number of Bytes
               Unsigned 32-bit integer
               Client Queue Number of Bytes

           nmas.cred_type  Credential Type
               Unsigned 32-bit integer
               Credential Type

           nmas.data  Data
               Byte array
               Data

           nmas.enc_cred  Encrypted Credential
               Byte array
               Encrypted Credential

           nmas.enc_data  Encrypted Data
               Byte array
               Encrypted Data

           nmas.encrypt_error  Payload Error
               Unsigned 32-bit integer
               Payload/Encryption Return Code

           nmas.frag_handle  Fragment Handle
               Unsigned 32-bit integer
               Fragment Handle

           nmas.func  Function
               Unsigned 8-bit integer
               Function

           nmas.length  Length
               Unsigned 32-bit integer
               Length

           nmas.login_seq  Requested Login Sequence
               String
               Requested Login Sequence

           nmas.login_state  Login State
               Unsigned 32-bit integer
               Login State

           nmas.lsm_verb  Login Store Message Verb
               Unsigned 8-bit integer
               Login Store Message Verb

           nmas.msg_verb  Message Verb
               Unsigned 8-bit integer
               Message Verb

           nmas.msg_version  Message Version
               Unsigned 32-bit integer
               Message Version

           nmas.num_creds  Number of Credentials
               Unsigned 32-bit integer
               Number of Credentials

           nmas.opaque  Opaque Data
               Byte array
               Opaque Data

           nmas.ping_flags  Flags
               Unsigned 32-bit integer
               Flags

           nmas.ping_version  Ping Version
               Unsigned 32-bit integer
               Ping Version

           nmas.return_code  Return Code
               Unsigned 32-bit integer
               Return Code

           nmas.session_ident  Session Identifier
               Unsigned 32-bit integer
               Session Identifier

           nmas.squeue_bytes  Server Queue Number of Bytes
               Unsigned 32-bit integer
               Server Queue Number of Bytes

           nmas.subfunc  Subfunction
               Unsigned 8-bit integer
               Subfunction

           nmas.subverb  Sub Verb
               Unsigned 32-bit integer
               Sub Verb

           nmas.tree  Tree
               String
               Tree

           nmas.user  User
               String
               User

           nmas.version  NMAS Protocol Version
               Unsigned 32-bit integer
               NMAS Protocol Version

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

           sss.context  Context
               Unsigned 32-bit integer
               Context

           sss.enc_cred  Encrypted Credential
               Byte array
               Encrypted Credential

           sss.enc_data  Encrypted Data
               Byte array
               Encrypted Data

           sss.flags  Flags
               Unsigned 32-bit integer
               Flags

           sss.frag_handle  Fragment Handle
               Unsigned 32-bit integer
               Fragment Handle

           sss.length  Length
               Unsigned 32-bit integer
               Length

           sss.ping_version  Ping Version
               Unsigned 32-bit integer
               Ping Version

           sss.return_code  Return Code
               Unsigned 32-bit integer
               Return Code

           sss.secret  Secret ID
               String
               Secret ID

           sss.user  User
               String
               User

           sss.verb  Verb
               Unsigned 32-bit integer
               Verb

           sss.version  SecretStore Protocol Version
               Unsigned 32-bit integer
               SecretStore Protocol Version

   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
               Command

           oicq.data  Data
               String
               Data

           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
               Sequence

           oicq.version  Version
               Unsigned 16-bit integer
               Version-zz

   OMA UserPlane Location Protocol (ulp)
           ulp.CellMeasuredResults  CellMeasuredResults
               No value
               ulp.CellMeasuredResults

           ulp.MeasuredResults  MeasuredResults
               No value
               ulp.MeasuredResults

           ulp.NMRelement  NMRelement
               No value
               ulp.NMRelement

           ulp.SatelliteInfoElement  SatelliteInfoElement
               No value
               ulp.SatelliteInfoElement

           ulp.TimeslotISCP  TimeslotISCP
               Unsigned 32-bit integer
               ulp.TimeslotISCP

           ulp.ULP_PDU  ULP-PDU
               No value
               ulp.ULP_PDU

           ulp.aFLT  aFLT
               Boolean
               ulp.BOOLEAN

           ulp.aRFCN  aRFCN
               Unsigned 32-bit integer
               ulp.INTEGER_0_1023

           ulp.acquisitionAssistanceRequested  acquisitionAssistanceRequested
               Boolean
               ulp.BOOLEAN

           ulp.agpsSETBased  agpsSETBased
               Boolean
               ulp.BOOLEAN

           ulp.agpsSETassisted  agpsSETassisted
               Boolean
               ulp.BOOLEAN

           ulp.almanacRequested  almanacRequested
               Boolean
               ulp.BOOLEAN

           ulp.altUncertainty  altUncertainty
               Unsigned 32-bit integer
               ulp.INTEGER_0_127

           ulp.altitude  altitude
               Unsigned 32-bit integer
               ulp.INTEGER_0_32767

           ulp.altitudeDirection  altitudeDirection
               Unsigned 32-bit integer
               ulp.T_altitudeDirection

           ulp.altitudeInfo  altitudeInfo
               No value
               ulp.AltitudeInfo

           ulp.autonomousGPS  autonomousGPS
               Boolean
               ulp.BOOLEAN

           ulp.bSIC  bSIC
               Unsigned 32-bit integer
               ulp.INTEGER_0_63

           ulp.bearing  bearing
               Byte array
               ulp.BIT_STRING_SIZE_9

           ulp.cdmaCell  cdmaCell
               No value
               ulp.CdmaCellInformation

           ulp.cellIdentity  cellIdentity
               Unsigned 32-bit integer
               ulp.INTEGER_0_268435455

           ulp.cellInfo  cellInfo
               Unsigned 32-bit integer
               ulp.CellInfo

           ulp.cellMeasuredResultsList  cellMeasuredResultsList
               Unsigned 32-bit integer
               ulp.CellMeasuredResultsList

           ulp.cellParametersID  cellParametersID
               Unsigned 32-bit integer
               ulp.CellParametersID

           ulp.clientName  clientName
               Byte array
               ulp.OCTET_STRING_SIZE_1_maxClientLength

           ulp.clientNameType  clientNameType
               Unsigned 32-bit integer
               ulp.FormatIndicator

           ulp.confidence  confidence
               Unsigned 32-bit integer
               ulp.INTEGER_0_100

           ulp.cpich_Ec_N0  cpich-Ec-N0
               Unsigned 32-bit integer
               ulp.CPICH_Ec_N0

           ulp.cpich_RSCP  cpich-RSCP
               Unsigned 32-bit integer
               ulp.CPICH_RSCP

           ulp.delay  delay
               Unsigned 32-bit integer
               ulp.INTEGER_0_7

           ulp.dgpsCorrectionsRequested  dgpsCorrectionsRequested
               Boolean
               ulp.BOOLEAN

           ulp.eCID  eCID
               Boolean
               ulp.BOOLEAN

           ulp.eOTD  eOTD
               Boolean
               ulp.BOOLEAN

           ulp.encodingType  encodingType
               Unsigned 32-bit integer
               ulp.EncodingType

           ulp.fQDN  fQDN
               String
               ulp.FQDN

           ulp.fdd  fdd
               No value
               ulp.FrequencyInfoFDD

           ulp.frequencyInfo  frequencyInfo
               No value
               ulp.FrequencyInfo

           ulp.gpsToe  gpsToe
               Unsigned 32-bit integer
               ulp.INTEGER_0_167

           ulp.gpsWeek  gpsWeek
               Unsigned 32-bit integer
               ulp.INTEGER_0_1023

           ulp.gsmCell  gsmCell
               No value
               ulp.GsmCellInformation

           ulp.horacc  horacc
               Unsigned 32-bit integer
               ulp.INTEGER_0_127

           ulp.horandveruncert  horandveruncert
               No value
               ulp.Horandveruncert

           ulp.horandvervel  horandvervel
               No value
               ulp.Horandvervel

           ulp.horspeed  horspeed
               Byte array
               ulp.BIT_STRING_SIZE_16

           ulp.horuncertspeed  horuncertspeed
               Byte array
               ulp.BIT_STRING_SIZE_8

           ulp.horvel  horvel
               No value
               ulp.Horvel

           ulp.horveluncert  horveluncert
               No value
               ulp.Horveluncert

           ulp.iODE  iODE
               Unsigned 32-bit integer
               ulp.INTEGER_0_255

           ulp.iPAddress  iPAddress
               Unsigned 32-bit integer
               ulp.IPAddress

           ulp.imsi  imsi
               Byte array
               ulp.T_imsi

           ulp.ionosphericModelRequested  ionosphericModelRequested
               Boolean
               ulp.BOOLEAN

           ulp.ipv4Address  ipv4Address
               IPv4 address
               ulp.OCTET_STRING_SIZE_4

           ulp.ipv6Address  ipv6Address
               IPv6 address
               ulp.OCTET_STRING_SIZE_16

           ulp.keyIdentity  keyIdentity
               Byte array
               ulp.KeyIdentity

           ulp.keyIdentity2  keyIdentity2
               Byte array
               ulp.KeyIdentity2

           ulp.keyIdentity3  keyIdentity3
               Byte array
               ulp.KeyIdentity3

           ulp.keyIdentity4  keyIdentity4
               Byte array
               ulp.KeyIdentity4

           ulp.latitude  latitude
               Unsigned 32-bit integer
               ulp.INTEGER_0_8388607

           ulp.latitudeSign  latitudeSign
               Unsigned 32-bit integer
               ulp.T_latitudeSign

           ulp.length  length
               Unsigned 32-bit integer
               ulp.INTEGER_0_65535

           ulp.locationId  locationId
               No value
               ulp.LocationId

           ulp.longKey  longKey
               Byte array
               ulp.BIT_STRING_SIZE_256

           ulp.longitude  longitude
               Signed 32-bit integer
               ulp.INTEGER_M8388608_8388607

           ulp.mAC  mAC
               Byte array
               ulp.MAC

           ulp.maj  maj
               Unsigned 32-bit integer
               ulp.INTEGER_0_255

           ulp.maxLocAge  maxLocAge
               Unsigned 32-bit integer
               ulp.INTEGER_0_65535

           ulp.mdn  mdn
               Byte array
               ulp.OCTET_STRING_SIZE_8

           ulp.measuredResultsList  measuredResultsList
               Unsigned 32-bit integer
               ulp.MeasuredResultsList

           ulp.message  message
               Unsigned 32-bit integer
               ulp.UlpMessage

           ulp.min  min
               Unsigned 32-bit integer
               ulp.INTEGER_0_255

           ulp.modeSpecificInfo  modeSpecificInfo
               Unsigned 32-bit integer
               ulp.FrequencySpecificInfo

           ulp.msSUPLAUTHREQ  msSUPLAUTHREQ
               No value
               ulp.SUPLAUTHREQ

           ulp.msSUPLAUTHRESP  msSUPLAUTHRESP
               No value
               ulp.SUPLAUTHRESP

           ulp.msSUPLEND  msSUPLEND
               No value
               ulp.SUPLEND

           ulp.msSUPLINIT  msSUPLINIT
               No value
               ulp.SUPLINIT

           ulp.msSUPLPOS  msSUPLPOS
               No value
               ulp.SUPLPOS

           ulp.msSUPLPOSINIT  msSUPLPOSINIT
               No value
               ulp.SUPLPOSINIT

           ulp.msSUPLRESPONSE  msSUPLRESPONSE
               No value
               ulp.SUPLRESPONSE

           ulp.msSUPLSTART  msSUPLSTART
               No value
               ulp.SUPLSTART

           ulp.msisdn  msisdn
               Byte array
               ulp.T_msisdn

           ulp.nMR  nMR
               Unsigned 32-bit integer
               ulp.NMR

           ulp.nSAT  nSAT
               Unsigned 32-bit integer
               ulp.INTEGER_0_31

           ulp.nai  nai
               String
               ulp.IA5String_SIZE_1_1000

           ulp.navigationModelData  navigationModelData
               No value
               ulp.NavigationModel

           ulp.navigationModelRequested  navigationModelRequested
               Boolean
               ulp.BOOLEAN

           ulp.notification  notification
               No value
               ulp.Notification

           ulp.notificationType  notificationType
               Unsigned 32-bit integer
               ulp.NotificationType

           ulp.oTDOA  oTDOA
               Boolean
               ulp.BOOLEAN

           ulp.orientationMajorAxis  orientationMajorAxis
               Unsigned 32-bit integer
               ulp.INTEGER_0_180

           ulp.pathloss  pathloss
               Unsigned 32-bit integer
               ulp.Pathloss

           ulp.posMethod  posMethod
               Unsigned 32-bit integer
               ulp.PosMethod

           ulp.posPayLoad  posPayLoad
               Unsigned 32-bit integer
               ulp.PosPayLoad

           ulp.posProtocol  posProtocol
               No value
               ulp.PosProtocol

           ulp.posTechnology  posTechnology
               No value
               ulp.PosTechnology

           ulp.position  position
               No value
               ulp.Position

           ulp.positionEstimate  positionEstimate
               No value
               ulp.PositionEstimate

           ulp.prefMethod  prefMethod
               Unsigned 32-bit integer
               ulp.PrefMethod

           ulp.primaryCCPCH_RSCP  primaryCCPCH-RSCP
               Unsigned 32-bit integer
               ulp.PrimaryCCPCH_RSCP

           ulp.primaryCPICH_Info  primaryCPICH-Info
               No value
               ulp.PrimaryCPICH_Info

           ulp.primaryScramblingCode  primaryScramblingCode
               Unsigned 32-bit integer
               ulp.INTEGER_0_511

           ulp.proposedTGSN  proposedTGSN
               Unsigned 32-bit integer
               ulp.TGSN

           ulp.qoP  qoP
               No value
               ulp.QoP

           ulp.reBASELONG  reBASELONG
               Unsigned 32-bit integer
               ulp.INTEGER_0_8388607

           ulp.realTimeIntegrityRequested  realTimeIntegrityRequested
               Boolean
               ulp.BOOLEAN

           ulp.refBASEID  refBASEID
               Unsigned 32-bit integer
               ulp.INTEGER_0_65535

           ulp.refBASELAT  refBASELAT
               Unsigned 32-bit integer
               ulp.INTEGER_0_4194303

           ulp.refCI  refCI
               Unsigned 32-bit integer
               ulp.INTEGER_0_65535

           ulp.refLAC  refLAC
               Unsigned 32-bit integer
               ulp.INTEGER_0_65535

           ulp.refMCC  refMCC
               Unsigned 32-bit integer
               ulp.INTEGER_0_999

           ulp.refMNC  refMNC
               Unsigned 32-bit integer
               ulp.INTEGER_0_999

           ulp.refNID  refNID
               Unsigned 32-bit integer
               ulp.INTEGER_0_65535

           ulp.refREFPN  refREFPN
               Unsigned 32-bit integer
               ulp.INTEGER_0_511

           ulp.refSID  refSID
               Unsigned 32-bit integer
               ulp.INTEGER_0_32767

           ulp.refSeconds  refSeconds
               Unsigned 32-bit integer
               ulp.INTEGER_0_4194303

           ulp.refUC  refUC
               Unsigned 32-bit integer
               ulp.INTEGER_0_268435455

           ulp.refWeekNumber  refWeekNumber
               Unsigned 32-bit integer
               ulp.INTEGER_0_65535

           ulp.referenceLocationRequested  referenceLocationRequested
               Boolean
               ulp.BOOLEAN

           ulp.referenceTimeRequested  referenceTimeRequested
               Boolean
               ulp.BOOLEAN

           ulp.requestedAssistData  requestedAssistData
               No value
               ulp.RequestedAssistData

           ulp.requestorId  requestorId
               Byte array
               ulp.OCTET_STRING_SIZE_1_maxReqLength

           ulp.requestorIdType  requestorIdType
               Unsigned 32-bit integer
               ulp.FormatIndicator

           ulp.rrc  rrc
               Boolean
               ulp.BOOLEAN

           ulp.rrcPayload  rrcPayload
               Byte array
               ulp.OCTET_STRING_SIZE_1_8192

           ulp.rrlp  rrlp
               Boolean
               ulp.BOOLEAN

           ulp.rrlpPayload  rrlpPayload
               Byte array
               ulp.T_rrlpPayload

           ulp.rxLev  rxLev
               Unsigned 32-bit integer
               ulp.INTEGER_0_63

           ulp.sETAuthKey  sETAuthKey
               Unsigned 32-bit integer
               ulp.SETAuthKey

           ulp.sETCapabilities  sETCapabilities
               No value
               ulp.SETCapabilities

           ulp.sETNonce  sETNonce
               Byte array
               ulp.SETNonce

           ulp.sLPAddress  sLPAddress
               Unsigned 32-bit integer
               ulp.SLPAddress

           ulp.sLPMode  sLPMode
               Unsigned 32-bit integer
               ulp.SLPMode

           ulp.sPCAuthKey  sPCAuthKey
               Unsigned 32-bit integer
               ulp.SPCAuthKey

           ulp.sUPLPOS  sUPLPOS
               No value
               ulp.SUPLPOS

           ulp.satId  satId
               Unsigned 32-bit integer
               ulp.INTEGER_0_63

           ulp.satInfo  satInfo
               Unsigned 32-bit integer
               ulp.SatelliteInfo

           ulp.servind  servind
               Unsigned 32-bit integer
               ulp.INTEGER_0_255

           ulp.sessionID  sessionID
               No value
               ulp.SessionID

           ulp.sessionId  sessionId
               Unsigned 32-bit integer
               ulp.INTEGER_0_65535

           ulp.setId  setId
               Unsigned 32-bit integer
               ulp.SETId

           ulp.setSessionID  setSessionID
               No value
               ulp.SetSessionID

           ulp.shortKey  shortKey
               Byte array
               ulp.BIT_STRING_SIZE_128

           ulp.slpId  slpId
               Unsigned 32-bit integer
               ulp.SLPAddress

           ulp.slpSessionID  slpSessionID
               No value
               ulp.SlpSessionID

           ulp.status  status
               Unsigned 32-bit integer
               ulp.Status

           ulp.statusCode  statusCode
               Unsigned 32-bit integer
               ulp.StatusCode

           ulp.tA  tA
               Unsigned 32-bit integer
               ulp.INTEGER_0_255

           ulp.tdd  tdd
               No value
               ulp.FrequencyInfoTDD

           ulp.tia801  tia801
               Boolean
               ulp.BOOLEAN

           ulp.tia801payload  tia801payload
               Byte array
               ulp.OCTET_STRING_SIZE_1_8192

           ulp.timeslotISCP_List  timeslotISCP-List
               Unsigned 32-bit integer
               ulp.TimeslotISCP_List

           ulp.timestamp  timestamp
               String
               ulp.UTCTime

           ulp.toeLimit  toeLimit
               Unsigned 32-bit integer
               ulp.INTEGER_0_10

           ulp.uarfcn_DL  uarfcn-DL
               Unsigned 32-bit integer
               ulp.UARFCN

           ulp.uarfcn_Nt  uarfcn-Nt
               Unsigned 32-bit integer
               ulp.UARFCN

           ulp.uarfcn_UL  uarfcn-UL
               Unsigned 32-bit integer
               ulp.UARFCN

           ulp.uncertainty  uncertainty
               No value
               ulp.T_uncertainty

           ulp.uncertaintySemiMajor  uncertaintySemiMajor
               Unsigned 32-bit integer
               ulp.INTEGER_0_127

           ulp.uncertaintySemiMinor  uncertaintySemiMinor
               Unsigned 32-bit integer
               ulp.INTEGER_0_127

           ulp.uncertspeed  uncertspeed
               Byte array
               ulp.BIT_STRING_SIZE_8

           ulp.utcModelRequested  utcModelRequested
               Boolean
               ulp.BOOLEAN

           ulp.utra_CarrierRSSI  utra-CarrierRSSI
               Unsigned 32-bit integer
               ulp.UTRA_CarrierRSSI

           ulp.velocity  velocity
               Unsigned 32-bit integer
               ulp.Velocity

           ulp.ver  ver
               Byte array
               ulp.Ver

           ulp.veracc  veracc
               Unsigned 32-bit integer
               ulp.INTEGER_0_127

           ulp.verdirect  verdirect
               Byte array
               ulp.BIT_STRING_SIZE_1

           ulp.version  version
               No value
               ulp.Version

           ulp.verspeed  verspeed
               Byte array
               ulp.BIT_STRING_SIZE_8

           ulp.veruncertspeed  veruncertspeed
               Byte array
               ulp.BIT_STRING_SIZE_8

           ulp.wcdmaCell  wcdmaCell
               No value
               ulp.WcdmaCellInformation

   OSI (osi)
   Online Certificate Status Protocol (ocsp)
           ocsp.AcceptableResponses  AcceptableResponses
               Unsigned 32-bit integer
               ocsp.AcceptableResponses

           ocsp.AcceptableResponses_item  AcceptableResponses item
               Object Identifier
               ocsp.OBJECT_IDENTIFIER

           ocsp.ArchiveCutoff  ArchiveCutoff
               String
               ocsp.ArchiveCutoff

           ocsp.BasicOCSPResponse  BasicOCSPResponse
               No value
               ocsp.BasicOCSPResponse

           ocsp.Certificate  Certificate
               No value
               x509af.Certificate

           ocsp.CrlID  CrlID
               No value
               ocsp.CrlID

           ocsp.NULL  NULL
               No value
               ocsp.NULL

           ocsp.Request  Request
               No value
               ocsp.Request

           ocsp.ServiceLocator  ServiceLocator
               No value
               ocsp.ServiceLocator

           ocsp.SingleResponse  SingleResponse
               No value
               ocsp.SingleResponse

           ocsp.byKey  byKey
               Byte array
               ocsp.KeyHash

           ocsp.byName  byName
               Unsigned 32-bit integer
               pkix1explicit.Name

           ocsp.certID  certID
               No value
               ocsp.CertID

           ocsp.certStatus  certStatus
               Unsigned 32-bit integer
               ocsp.CertStatus

           ocsp.certs  certs
               Unsigned 32-bit integer
               ocsp.SEQUENCE_OF_Certificate

           ocsp.crlNum  crlNum
               Signed 32-bit integer
               ocsp.INTEGER

           ocsp.crlTime  crlTime
               String
               ocsp.GeneralizedTime

           ocsp.crlUrl  crlUrl
               String
               ocsp.IA5String

           ocsp.good  good
               No value
               ocsp.NULL

           ocsp.hashAlgorithm  hashAlgorithm
               No value
               x509af.AlgorithmIdentifier

           ocsp.issuer  issuer
               Unsigned 32-bit integer
               pkix1explicit.Name

           ocsp.issuerKeyHash  issuerKeyHash
               Byte array
               ocsp.OCTET_STRING

           ocsp.issuerNameHash  issuerNameHash
               Byte array
               ocsp.OCTET_STRING

           ocsp.locator  locator
               Unsigned 32-bit integer
               pkix1implicit.AuthorityInfoAccessSyntax

           ocsp.nextUpdate  nextUpdate
               String
               ocsp.GeneralizedTime

           ocsp.optionalSignature  optionalSignature
               No value
               ocsp.Signature

           ocsp.producedAt  producedAt
               String
               ocsp.GeneralizedTime

           ocsp.reqCert  reqCert
               No value
               ocsp.CertID

           ocsp.requestExtensions  requestExtensions
               Unsigned 32-bit integer
               pkix1explicit.Extensions

           ocsp.requestList  requestList
               Unsigned 32-bit integer
               ocsp.SEQUENCE_OF_Request

           ocsp.requestorName  requestorName
               Unsigned 32-bit integer
               pkix1explicit.GeneralName

           ocsp.responderID  responderID
               Unsigned 32-bit integer
               ocsp.ResponderID

           ocsp.response  response
               Byte array
               ocsp.T_response

           ocsp.responseBytes  responseBytes
               No value
               ocsp.ResponseBytes

           ocsp.responseExtensions  responseExtensions
               Unsigned 32-bit integer
               pkix1explicit.Extensions

           ocsp.responseStatus  responseStatus
               Unsigned 32-bit integer
               ocsp.OCSPResponseStatus

           ocsp.responseType  responseType
               Object Identifier
               ocsp.T_responseType

           ocsp.responses  responses
               Unsigned 32-bit integer
               ocsp.SEQUENCE_OF_SingleResponse

           ocsp.revocationReason  revocationReason
               Unsigned 32-bit integer
               x509ce.CRLReason

           ocsp.revocationTime  revocationTime
               String
               ocsp.GeneralizedTime

           ocsp.revoked  revoked
               No value
               ocsp.RevokedInfo

           ocsp.serialNumber  serialNumber
               Signed 32-bit integer
               pkix1explicit.CertificateSerialNumber

           ocsp.signature  signature
               Byte array
               ocsp.BIT_STRING

           ocsp.signatureAlgorithm  signatureAlgorithm
               No value
               x509af.AlgorithmIdentifier

           ocsp.singleExtensions  singleExtensions
               Unsigned 32-bit integer
               pkix1explicit.Extensions

           ocsp.singleRequestExtensions  singleRequestExtensions
               Unsigned 32-bit integer
               pkix1explicit.Extensions

           ocsp.tbsRequest  tbsRequest
               No value
               ocsp.TBSRequest

           ocsp.tbsResponseData  tbsResponseData
               No value
               ocsp.ResponseData

           ocsp.thisUpdate  thisUpdate
               String
               ocsp.GeneralizedTime

           ocsp.unknown  unknown
               No value
               ocsp.UnknownInfo

           ocsp.version  version
               Signed 32-bit integer
               ocsp.Version

           x509af.responseType.id  ResponseType Id
               String
               ResponseType Id

   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

           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.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.v  V
               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
               Interface

           pflog.reason  Reason
               Unsigned 16-bit integer
               Reason for logging the packet

           pflog.rnr  Rule Number
               Signed 16-bit integer
               Last matched firewall rule number

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

           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
               Comment

           pcnfsd.def_umask  def_umask
               Unsigned 32-bit integer
               def_umask

           pcnfsd.gid  Group ID
               Unsigned 32-bit integer
               Group ID

           pcnfsd.gids.count  Group ID Count
               Unsigned 32-bit integer
               Group ID Count

           pcnfsd.homedir  Home Directory
               String
               Home Directory

           pcnfsd.procedure_v1  V1 Procedure
               Unsigned 32-bit integer
               V1 Procedure

           pcnfsd.procedure_v2  V2 Procedure
               Unsigned 32-bit integer
               V2 Procedure

           pcnfsd.status  Reply Status
               Unsigned 32-bit integer
               Status

           pcnfsd.uid  User ID
               Unsigned 32-bit integer
               User ID

           pcnfsd.username  User name
               String
               pcnfsd.username

   PDCP-LTE (pdcp-lte)
           pdcp-lte.add-cid  Add-CID
               Unsigned 8-bit integer
               Add-CID

           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
               CID Inclusion Info

           pdcp-lte.configuration  Configuration
               String
               Configuation info passed into dissector

           pdcp-lte.control-pdu-type  Control PDU Type
               Unsigned 8-bit integer
               Control PDU type

           pdcp-lte.direction  Direction
               Unsigned 8-bit integer
               Direction of message

           pdcp-lte.feedback-acktype  Acktype
               Unsigned 8-bit integer
               Feedback-2 ack type

           pdcp-lte.feedback-code  Code
               Unsigned 8-bit integer
               Feedback options length (if > 0)

           pdcp-lte.feedback-crc  CRC
               Unsigned 8-bit integer
               Feedback CRC

           pdcp-lte.feedback-length  Length
               Unsigned 8-bit integer
               Feedback length

           pdcp-lte.feedback-mode  mode
               Unsigned 8-bit integer
               Feedback mode

           pdcp-lte.feedback-option  Option
               Unsigned 8-bit integer
               Feedback mode

           pdcp-lte.feedback-option-clock  Clock
               Unsigned 8-bit integer
               Feedback Option Clock

           pdcp-lte.feedback-option-sn  SN
               Unsigned 8-bit integer
               Feedback Option SN

           pdcp-lte.feedback-size  Size
               Unsigned 8-bit integer
               Feedback options length

           pdcp-lte.feedback-sn  SN
               Unsigned 16-bit integer
               Feedback mode

           pdcp-lte.feedback.feedback1  FEEDBACK-1 (SN)
               Unsigned 8-bit integer
               Feedback-1

           pdcp-lte.feedback.feedback2  FEEDBACK-2
               No value
               Feedback-2

           pdcp-lte.fms  First Missing Sequence Number
               Unsigned 16-bit integer
               First Missing PDCP Sequence Number

           pdcp-lte.ip-id  IP-ID
               Unsigned 16-bit integer
               IP-ID

           pdcp-lte.large-cid  Large-CID
               Unsigned 16-bit integer
               Large-CID

           pdcp-lte.large-cid-present  Large CID Present
               Unsigned 8-bit integer
               Large CID Present

           pdcp-lte.mac  MAC
               Unsigned 32-bit integer
               MAC

           pdcp-lte.no-header_pdu  No Header PDU
               Unsigned 8-bit integer
               No Header PDU

           pdcp-lte.payload  Payload
               Byte array
               Payload

           pdcp-lte.pdu-type  PDU Type
               Unsigned 8-bit integer
               PDU type

           pdcp-lte.plane  Plane
               Unsigned 8-bit integer
               No Header PDU

           pdcp-lte.r-0-crc  R-0-CRC Packet
               No value
               R-0-CRC Packet

           pdcp-lte.reserved3  Reserved
               Unsigned 8-bit integer
               3 reserved bits

           pdcp-lte.rohc  ROHC Compression
               Boolean
               ROHC Mode

           pdcp-lte.rohc.checksum-present  UDP Checksum
               Unsigned 8-bit integer
               UDP Checksum_present

           pdcp-lte.rohc.dynamic.ipv4  Dynamic IPv4 chain
               No value
               Dynamic IPv4 chain

           pdcp-lte.rohc.dynamic.rtp  Dynamic RTP chain
               No value
               Dynamic RTP chain

           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
               Mode

           pdcp-lte.rohc.dynamic.rtp.reserved3  Reserved
               Unsigned 8-bit integer
               Reserved bits

           pdcp-lte.rohc.dynamic.rtp.rx  RX
               Unsigned 8-bit integer
               RX

           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
               X

           pdcp-lte.rohc.dynamic.udp  Dynamic UDP chain
               No value
               Dynamic UDP chain

           pdcp-lte.rohc.dynamic.udp.checksum  UDP Checksum
               Unsigned 16-bit integer
               UDP Checksum

           pdcp-lte.rohc.dynamic.udp.seqnum  UDP Sequence Number
               Unsigned 16-bit integer
               UDP Sequence Number

           pdcp-lte.rohc.feedback  Feedback
               No value
               Feedback Packet

           pdcp-lte.rohc.ip-dst  IP Destination address
               IPv4 address
               IP Destination address

           pdcp-lte.rohc.ip-protocol  IP Protocol
               Unsigned 8-bit integer
               IP Protocol

           pdcp-lte.rohc.ip-src  IP Source address
               IPv4 address
               IP Source address

           pdcp-lte.rohc.ip-version  IP Version
               Unsigned 8-bit integer
               IP Version

           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
               Network Byte Order IP-ID field

           pdcp-lte.rohc.ip.rnd  Random IP-ID field
               Unsigned 8-bit integer
               Random IP-ID field

           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.m  M
               Unsigned 8-bit integer
               M

           pdcp-lte.rohc.mode  ROHC mode
               Unsigned 8-bit integer
               ROHC Mode

           pdcp-lte.rohc.padding  Padding
               No value
               ROHC Padding

           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
               SN

           pdcp-lte.rohc.r0.sn  SN
               Unsigned 8-bit integer
               SN

           pdcp-lte.rohc.rnd  RND
               Unsigned 8-bit integer
               RND of outer ip header

           pdcp-lte.rohc.static.ipv4  Static IPv4 chain
               No value
               Static IPv4 chain

           pdcp-lte.rohc.static.rtp  Static RTP chain
               No value
               Static RTP chain

           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
               Static UDP chain

           pdcp-lte.rohc.static.udp.dst-port  Static UDP destination port
               Unsigned 16-bit integer
               Static UDP destination port

           pdcp-lte.rohc.static.udp.src-port  Static UDP source port
               Unsigned 16-bit integer
               Static UDP source port

           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
               TS

           pdcp-lte.rohc.uo0.crc  CRC
               Unsigned 8-bit integer
               3-bit CRC

           pdcp-lte.rohc.uo0.sn  SN
               Unsigned 8-bit integer
               SN

           pdcp-lte.rohc.uor2.sn  SN
               Unsigned 8-bit integer
               SN

           pdcp-lte.rohc.uor2.x  X
               Unsigned 8-bit integer
               X

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

           pdcp-lte.udp-checksum  UDP Checksum
               Unsigned 16-bit integer
               UDP Checksum

           pdcp-lte.user-data  User-Plane Data
               Byte array
               User-Plane Data

   PKCS#1 (pkcs-1)
           pkcs1.coefficient  coefficient
               Signed 32-bit integer
               pkcs1.INTEGER

           pkcs1.digest  digest
               Byte array
               pkcs1.Digest

           pkcs1.digestAlgorithm  digestAlgorithm
               No value
               pkcs1.DigestAlgorithmIdentifier

           pkcs1.exponent1  exponent1
               Signed 32-bit integer
               pkcs1.INTEGER

           pkcs1.exponent2  exponent2
               Signed 32-bit integer
               pkcs1.INTEGER

           pkcs1.modulus  modulus
               Signed 32-bit integer
               pkcs1.INTEGER

           pkcs1.prime1  prime1
               Signed 32-bit integer
               pkcs1.INTEGER

           pkcs1.prime2  prime2
               Signed 32-bit integer
               pkcs1.INTEGER

           pkcs1.privateExponent  privateExponent
               Signed 32-bit integer
               pkcs1.INTEGER

           pkcs1.publicExponent  publicExponent
               Signed 32-bit integer
               pkcs1.INTEGER

           pkcs1.version  version
               Signed 32-bit integer
               pkcs1.Version

   PKCS#12: Personal Information Exchange (pkcs12)
           pkcs12.Attribute  Attribute
               No value
               x509if.Attribute

           pkcs12.AuthenticatedSafe  AuthenticatedSafe
               Unsigned 32-bit integer
               pkcs12.AuthenticatedSafe

           pkcs12.CRLBag  CRLBag
               No value
               pkcs12.CRLBag

           pkcs12.CertBag  CertBag
               No value
               pkcs12.CertBag

           pkcs12.ContentInfo  ContentInfo
               No value
               cms.ContentInfo

           pkcs12.EncryptedPrivateKeyInfo  EncryptedPrivateKeyInfo
               No value
               pkcs12.EncryptedPrivateKeyInfo

           pkcs12.KeyBag  KeyBag
               No value
               pkcs12.KeyBag

           pkcs12.PBEParameter  PBEParameter
               No value
               pkcs12.PBEParameter

           pkcs12.PBES2Params  PBES2Params
               No value
               pkcs12.PBES2Params

           pkcs12.PBKDF2Params  PBKDF2Params
               No value
               pkcs12.PBKDF2Params

           pkcs12.PBMAC1Params  PBMAC1Params
               No value
               pkcs12.PBMAC1Params

           pkcs12.PFX  PFX
               No value
               pkcs12.PFX

           pkcs12.PKCS12Attribute  PKCS12Attribute
               No value
               pkcs12.PKCS12Attribute

           pkcs12.PKCS8ShroudedKeyBag  PKCS8ShroudedKeyBag
               No value
               pkcs12.PKCS8ShroudedKeyBag

           pkcs12.PrivateKeyInfo  PrivateKeyInfo
               No value
               pkcs12.PrivateKeyInfo

           pkcs12.SafeBag  SafeBag
               No value
               pkcs12.SafeBag

           pkcs12.SafeContents  SafeContents
               Unsigned 32-bit integer
               pkcs12.SafeContents

           pkcs12.SecretBag  SecretBag
               No value
               pkcs12.SecretBag

           pkcs12.X509Certificate  X509Certificate
               No value
               pkcs12.X509Certificate

           pkcs12.attrId  attrId
               Object Identifier
               pkcs12.T_attrId

           pkcs12.attrValues  attrValues
               Unsigned 32-bit integer
               pkcs12.T_attrValues

           pkcs12.attrValues_item  attrValues item
               No value
               pkcs12.T_attrValues_item

           pkcs12.attributes  attributes
               Unsigned 32-bit integer
               pkcs12.Attributes

           pkcs12.authSafe  authSafe
               No value
               cms.ContentInfo

           pkcs12.bagAttributes  bagAttributes
               Unsigned 32-bit integer
               pkcs12.SET_OF_PKCS12Attribute

           pkcs12.bagId  bagId
               Object Identifier
               pkcs12.T_bagId

           pkcs12.bagValue  bagValue
               No value
               pkcs12.T_bagValue

           pkcs12.certId  certId
               Object Identifier
               pkcs12.T_certId

           pkcs12.certValue  certValue
               No value
               pkcs12.T_certValue

           pkcs12.crlId  crlId
               Object Identifier
               pkcs12.T_crlId

           pkcs12.crlValue  crlValue
               No value
               pkcs12.T_crlValue

           pkcs12.digest  digest
               Byte array
               cms.Digest

           pkcs12.digestAlgorithm  digestAlgorithm
               No value
               cms.DigestAlgorithmIdentifier

           pkcs12.encryptedData  encryptedData
               Byte array
               pkcs12.EncryptedData

           pkcs12.encryptionAlgorithm  encryptionAlgorithm
               No value
               x509af.AlgorithmIdentifier

           pkcs12.encryptionScheme  encryptionScheme
               No value
               x509af.AlgorithmIdentifier

           pkcs12.iterationCount  iterationCount
               Signed 32-bit integer
               pkcs12.INTEGER

           pkcs12.iterations  iterations
               Signed 32-bit integer
               pkcs12.INTEGER

           pkcs12.keyDerivationFunc  keyDerivationFunc
               No value
               x509af.AlgorithmIdentifier

           pkcs12.keyLength  keyLength
               Unsigned 32-bit integer
               pkcs12.INTEGER_1_MAX

           pkcs12.mac  mac
               No value
               pkcs12.DigestInfo

           pkcs12.macData  macData
               No value
               pkcs12.MacData

           pkcs12.macSalt  macSalt
               Byte array
               pkcs12.OCTET_STRING

           pkcs12.messageAuthScheme  messageAuthScheme
               No value
               x509af.AlgorithmIdentifier

           pkcs12.otherSource  otherSource
               No value
               x509af.AlgorithmIdentifier

           pkcs12.prf  prf
               No value
               x509af.AlgorithmIdentifier

           pkcs12.privateKey  privateKey
               Byte array
               pkcs12.PrivateKey

           pkcs12.privateKeyAlgorithm  privateKeyAlgorithm
               No value
               x509af.AlgorithmIdentifier

           pkcs12.salt  salt
               Byte array
               pkcs12.OCTET_STRING

           pkcs12.secretTypeId  secretTypeId
               Object Identifier
               pkcs12.T_secretTypeId

           pkcs12.secretValue  secretValue
               No value
               pkcs12.T_secretValue

           pkcs12.specified  specified
               Byte array
               pkcs12.OCTET_STRING

           pkcs12.version  version
               Unsigned 32-bit integer
               pkcs12.T_version

   PKINIT (pkinit)
           pkinit.AlgorithmIdentifier  AlgorithmIdentifier
               No value
               pkix1explicit.AlgorithmIdentifier

           pkinit.AuthPack  AuthPack
               No value
               pkinit.AuthPack

           pkinit.KDCDHKeyInfo  KDCDHKeyInfo
               No value
               pkinit.KDCDHKeyInfo

           pkinit.TrustedCA  TrustedCA
               Unsigned 32-bit integer
               pkinit.TrustedCA

           pkinit.caName  caName
               Unsigned 32-bit integer
               pkix1explicit.Name

           pkinit.clientPublicValue  clientPublicValue
               No value
               pkix1explicit.SubjectPublicKeyInfo

           pkinit.ctime  ctime
               No value
               KerberosV5Spec2.KerberosTime

           pkinit.cusec  cusec
               Signed 32-bit integer
               pkinit.INTEGER

           pkinit.dhKeyExpiration  dhKeyExpiration
               No value
               KerberosV5Spec2.KerberosTime

           pkinit.dhSignedData  dhSignedData
               No value
               cms.ContentInfo

           pkinit.encKeyPack  encKeyPack
               No value
               cms.ContentInfo

           pkinit.issuerAndSerial  issuerAndSerial
               No value
               cms.IssuerAndSerialNumber

           pkinit.kdcCert  kdcCert
               No value
               cms.IssuerAndSerialNumber

           pkinit.nonce  nonce
               Unsigned 32-bit integer
               pkinit.INTEGER_0_4294967295

           pkinit.paChecksum  paChecksum
               No value
               KerberosV5Spec2.Checksum

           pkinit.pkAuthenticator  pkAuthenticator
               No value
               pkinit.PKAuthenticator

           pkinit.signedAuthPack  signedAuthPack
               No value
               cms.ContentInfo

           pkinit.subjectPublicKey  subjectPublicKey
               Byte array
               pkinit.BIT_STRING

           pkinit.supportedCMSTypes  supportedCMSTypes
               Unsigned 32-bit integer
               pkinit.SEQUENCE_OF_AlgorithmIdentifier

           pkinit.trustedCertifiers  trustedCertifiers
               Unsigned 32-bit integer
               pkinit.SEQUENCE_OF_TrustedCA

   PKIX CERT File Format (pkix-cert)
           cert  Certificate
               No value
               Certificate

   PKIX Qualified (pkixqualified)
           pkixqualified.BiometricData  BiometricData
               No value
               pkixqualified.BiometricData

           pkixqualified.BiometricSyntax  BiometricSyntax
               Unsigned 32-bit integer
               pkixqualified.BiometricSyntax

           pkixqualified.Directorystring  Directorystring
               Unsigned 32-bit integer
               pkixqualified.Directorystring

           pkixqualified.GeneralName  GeneralName
               Unsigned 32-bit integer
               x509ce.GeneralName

           pkixqualified.Generalizedtime  Generalizedtime
               String
               pkixqualified.Generalizedtime

           pkixqualified.Printablestring  Printablestring
               String
               pkixqualified.Printablestring

           pkixqualified.QCStatement  QCStatement
               No value
               pkixqualified.QCStatement

           pkixqualified.QCStatements  QCStatements
               Unsigned 32-bit integer
               pkixqualified.QCStatements

           pkixqualified.SemanticsInformation  SemanticsInformation
               No value
               pkixqualified.SemanticsInformation

           pkixqualified.XmppAddr  XmppAddr
               String
               pkixqualified.XmppAddr

           pkixqualified.biometricDataHash  biometricDataHash
               Byte array
               pkixqualified.OCTET_STRING

           pkixqualified.biometricDataOid  biometricDataOid
               Object Identifier
               pkixqualified.OBJECT_IDENTIFIER

           pkixqualified.hashAlgorithm  hashAlgorithm
               No value
               x509af.AlgorithmIdentifier

           pkixqualified.nameRegistrationAuthorities  nameRegistrationAuthorities
               Unsigned 32-bit integer
               pkixqualified.NameRegistrationAuthorities

           pkixqualified.predefinedBiometricType  predefinedBiometricType
               Signed 32-bit integer
               pkixqualified.PredefinedBiometricType

           pkixqualified.semanticsIdentifier  semanticsIdentifier
               Object Identifier
               pkixqualified.OBJECT_IDENTIFIER

           pkixqualified.sourceDataUri  sourceDataUri
               String
               pkixqualified.IA5String

           pkixqualified.statementId  statementId
               Object Identifier
               pkixqualified.T_statementId

           pkixqualified.statementInfo  statementInfo
               No value
               pkixqualified.T_statementInfo

           pkixqualified.typeOfBiometricData  typeOfBiometricData
               Unsigned 32-bit integer
               pkixqualified.TypeOfBiometricData

   PKIX Time Stamp Protocol (pkixtsp)
           pkixtsp.TSTInfo  TSTInfo
               No value
               pkixtsp.TSTInfo

           pkixtsp.accuracy  accuracy
               No value
               pkixtsp.Accuracy

           pkixtsp.addInfoNotAvailable  addInfoNotAvailable
               Boolean

           pkixtsp.badAlg  badAlg
               Boolean

           pkixtsp.badDataFormat  badDataFormat
               Boolean

           pkixtsp.badRequest  badRequest
               Boolean

           pkixtsp.certReq  certReq
               Boolean
               pkixtsp.BOOLEAN

           pkixtsp.extensions  extensions
               Unsigned 32-bit integer
               pkix1explicit.Extensions

           pkixtsp.failInfo  failInfo
               Byte array
               pkixtsp.PKIFailureInfo

           pkixtsp.genTime  genTime
               String
               pkixtsp.GeneralizedTime

           pkixtsp.hashAlgorithm  hashAlgorithm
               No value
               pkix1explicit.AlgorithmIdentifier

           pkixtsp.hashedMessage  hashedMessage
               Byte array
               pkixtsp.OCTET_STRING

           pkixtsp.messageImprint  messageImprint
               No value
               pkixtsp.MessageImprint

           pkixtsp.micros  micros
               Unsigned 32-bit integer
               pkixtsp.INTEGER_1_999

           pkixtsp.millis  millis
               Unsigned 32-bit integer
               pkixtsp.INTEGER_1_999

           pkixtsp.nonce  nonce
               Signed 32-bit integer
               pkixtsp.INTEGER

           pkixtsp.ordering  ordering
               Boolean
               pkixtsp.BOOLEAN

           pkixtsp.policy  policy
               Object Identifier
               pkixtsp.TSAPolicyId

           pkixtsp.reqPolicy  reqPolicy
               Object Identifier
               pkixtsp.TSAPolicyId

           pkixtsp.seconds  seconds
               Signed 32-bit integer
               pkixtsp.INTEGER

           pkixtsp.serialNumber  serialNumber
               Signed 32-bit integer
               pkixtsp.INTEGER

           pkixtsp.status  status
               No value
               pkixtsp.PKIStatusInfo

           pkixtsp.systemFailure  systemFailure
               Boolean

           pkixtsp.timeNotAvailable  timeNotAvailable
               Boolean

           pkixtsp.timeStampToken  timeStampToken
               No value
               pkixtsp.TimeStampToken

           pkixtsp.tsa  tsa
               Unsigned 32-bit integer
               pkix1implicit.GeneralName

           pkixtsp.unacceptedExtension  unacceptedExtension
               Boolean

           pkixtsp.unacceptedPolicy  unacceptedPolicy
               Boolean

           pkixtsp.version  version
               Signed 32-bit integer
               pkixtsp.T_version

   PKIX1Explicit (pkix1explicit)
           pkix1explicit.ASIdOrRange  ASIdOrRange
               Unsigned 32-bit integer
               pkix1explicit.ASIdOrRange

           pkix1explicit.ASIdentifiers  ASIdentifiers
               No value
               pkix1explicit.ASIdentifiers

           pkix1explicit.AttributeTypeAndValue  AttributeTypeAndValue
               No value
               pkix1explicit.AttributeTypeAndValue

           pkix1explicit.DirectoryString  DirectoryString
               String
               pkix1explicit.DirectoryString

           pkix1explicit.DomainParameters  DomainParameters
               No value
               pkix1explicit.DomainParameters

           pkix1explicit.Extension  Extension
               No value
               pkix1explicit.Extension

           pkix1explicit.IPAddrBlocks  IPAddrBlocks
               Unsigned 32-bit integer
               pkix1explicit.IPAddrBlocks

           pkix1explicit.IPAddressFamily  IPAddressFamily
               No value
               pkix1explicit.IPAddressFamily

           pkix1explicit.IPAddressOrRange  IPAddressOrRange
               Unsigned 32-bit integer
               pkix1explicit.IPAddressOrRange

           pkix1explicit.RelativeDistinguishedName  RelativeDistinguishedName
               Unsigned 32-bit integer
               pkix1explicit.RelativeDistinguishedName

           pkix1explicit.addressFamily  addressFamily
               Byte array
               pkix1explicit.T_addressFamily

           pkix1explicit.addressPrefix  addressPrefix
               Byte array
               pkix1explicit.IPAddress

           pkix1explicit.addressRange  addressRange
               No value
               pkix1explicit.IPAddressRange

           pkix1explicit.addressesOrRanges  addressesOrRanges
               Unsigned 32-bit integer
               pkix1explicit.SEQUENCE_OF_IPAddressOrRange

           pkix1explicit.addressfamily  Address family(AFN)
               Unsigned 16-bit integer
               Address family(AFN)

           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
               pkix1explicit.SEQUENCE_OF_ASIdOrRange

           pkix1explicit.asnum  asnum
               Unsigned 32-bit integer
               pkix1explicit.ASIdentifierChoice

           pkix1explicit.critical  critical
               Boolean
               pkix1explicit.BOOLEAN

           pkix1explicit.extnId  extnId
               Object Identifier
               pkix1explicit.T_extnId

           pkix1explicit.extnValue  extnValue
               Byte array
               pkix1explicit.T_extnValue

           pkix1explicit.g  g
               Signed 32-bit integer
               pkix1explicit.INTEGER

           pkix1explicit.generalTime  generalTime
               String
               pkix1explicit.GeneralizedTime

           pkix1explicit.id  Id
               String
               Object identifier Id

           pkix1explicit.inherit  inherit
               No value
               pkix1explicit.NULL

           pkix1explicit.ipAddressChoice  ipAddressChoice
               Unsigned 32-bit integer
               pkix1explicit.IPAddressChoice

           pkix1explicit.j  j
               Signed 32-bit integer
               pkix1explicit.INTEGER

           pkix1explicit.max  max
               Byte array
               pkix1explicit.IPAddress

           pkix1explicit.min  min
               Byte array
               pkix1explicit.IPAddress

           pkix1explicit.p  p
               Signed 32-bit integer
               pkix1explicit.INTEGER

           pkix1explicit.pgenCounter  pgenCounter
               Signed 32-bit integer
               pkix1explicit.INTEGER

           pkix1explicit.q  q
               Signed 32-bit integer
               pkix1explicit.INTEGER

           pkix1explicit.range  range
               No value
               pkix1explicit.ASRange

           pkix1explicit.rdi  rdi
               Unsigned 32-bit integer
               pkix1explicit.ASIdentifierChoice

           pkix1explicit.seed  seed
               Byte array
               pkix1explicit.BIT_STRING

           pkix1explicit.type  type
               Object Identifier
               pkix1explicit.OBJECT_IDENTIFIER

           pkix1explicit.utcTime  utcTime
               String
               pkix1explicit.UTCTime

           pkix1explicit.validationParms  validationParms
               No value
               pkix1explicit.ValidationParms

           pkix1explicit.value  value
               No value
               pkix1explicit.T_value

           pkix1explicit.values  values
               Unsigned 32-bit integer
               pkix1explicit.T_values

           pkix1explicit.values_item  values item
               No value
               pkix1explicit.T_values_item

   PKIX1Implitit (pkix1implicit)
           pkix1implicit.AccessDescription  AccessDescription
               No value
               pkix1implicit.AccessDescription

           pkix1implicit.AuthorityInfoAccessSyntax  AuthorityInfoAccessSyntax
               Unsigned 32-bit integer
               pkix1implicit.AuthorityInfoAccessSyntax

           pkix1implicit.Dummy  Dummy
               No value
               pkix1implicit.Dummy

           pkix1implicit.accessLocation  accessLocation
               Unsigned 32-bit integer
               x509ce.GeneralName

           pkix1implicit.accessMethod  accessMethod
               Object Identifier
               pkix1implicit.OBJECT_IDENTIFIER

           pkix1implicit.bmpString  bmpString
               String
               pkix1implicit.BMPString

           pkix1implicit.explicitText  explicitText
               Unsigned 32-bit integer
               pkix1implicit.DisplayText

           pkix1implicit.noticeNumbers  noticeNumbers
               Unsigned 32-bit integer
               pkix1implicit.T_noticeNumbers

           pkix1implicit.noticeNumbers_item  noticeNumbers item
               Signed 32-bit integer
               pkix1implicit.INTEGER

           pkix1implicit.noticeRef  noticeRef
               No value
               pkix1implicit.NoticeReference

           pkix1implicit.organization  organization
               Unsigned 32-bit integer
               pkix1implicit.DisplayText

           pkix1implicit.utf8String  utf8String
               String
               pkix1implicit.UTF8String

           pkix1implicit.visibleString  visibleString
               String
               pkix1implicit.VisibleString

   PKIXProxy (RFC3820) (pkixproxy)
           pkixproxy.ProxyCertInfoExtension  ProxyCertInfoExtension
               No value
               pkixproxy.ProxyCertInfoExtension

           pkixproxy.pCPathLenConstraint  pCPathLenConstraint
               Signed 32-bit integer
               pkixproxy.ProxyCertPathLengthConstraint

           pkixproxy.policy  policy
               Byte array
               pkixproxy.OCTET_STRING

           pkixproxy.policyLanguage  policyLanguage
               Object Identifier
               pkixproxy.OBJECT_IDENTIFIER

           pkixproxy.proxyPolicy  proxyPolicy
               No value
               pkixproxy.ProxyPolicy

   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
               Sequence number changed

           vj.change_mask_u  Urgent pointer set
               Boolean
               Urgent pointer set

           vj.change_mask_w  Window changed
               Boolean
               TCP window changed

           vj.connection_number  Connection number
               Unsigned 8-bit integer
               Connection number

           vj.ip_id_delta  IP ID delta
               Unsigned 16-bit integer
               Delta for IP ID

           vj.seq_delta  Sequence delta
               Unsigned 16-bit integer
               Delta for sequence number

           vj.tcp_cksum  TCP checksum
               Unsigned 16-bit integer
               TCP checksum

           vj.urp  Urgent pointer
               Unsigned 16-bit integer
               Urgent pointer

           vj.win_delta  Window delta
               Signed 16-bit integer
               Delta for window

   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.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.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_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.motm  MOTM
               Byte array

           pppoed.tags.relay_session_id  Relay-Session-Id
               Byte array

           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

   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_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.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.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_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.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.subframe_wd_factor  SubFrameWDFactor
               Unsigned 16-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  TimeIOInput
               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_ok  StationProblemIndicator (1:Ok/0:Problem)
               Unsigned 8-bit integer

           pn_rt.ds_operate  ProviderState (1:Run/0:Stop)
               Unsigned 8-bit integer

           pn_rt.ds_primary  State (1:Primary/0:Backup)
               Unsigned 8-bit integer

           pn_rt.ds_res1  Reserved (should be zero)
               Unsigned 8-bit integer

           pn_rt.ds_res3  Reserved (should be zero)
               Unsigned 8-bit integer

           pn_rt.ds_res67  Reserved (should be zero)
               Unsigned 8-bit integer

           pn_rt.ds_valid  DataValid (1:Valid/0:Invalid)
               Unsigned 8-bit integer

           pn_rt.frame_id  FrameID
               Unsigned 16-bit integer

           pn_rt.malformed  Malformed
               Byte array

           pn_rt.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
               Count of Ack Info Entries

           p_mul.ack_info_entry  Ack Info Entry
               No value
               Ack Info Entry

           p_mul.ack_length  Length of Ack Info Entry
               Unsigned 16-bit integer
               Length of Ack Info Entry

           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
               Announced Multicast Group

           p_mul.checksum  Checksum
               Unsigned 16-bit integer
               Checksum

           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
               Fragment of Data

           p_mul.dest_count  Count of Destination Entries
               Unsigned 16-bit integer
               Count of Destination Entries

           p_mul.dest_entry  Destination Entry
               No value
               Destination Entry

           p_mul.dest_id  Destination ID
               IPv4 address
               Destination ID

           p_mul.expiry_time  Expiry Time
               Date/Time stamp
               Expiry Time

           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
               First

           p_mul.fragment  Message fragment
               Frame number
               Message fragment

           p_mul.fragment.error  Message defragmentation error
               Frame number
               Message defragmentation error

           p_mul.fragment.multiple_tails  Message has multiple tail fragments
               Boolean
               Message has multiple tail fragments

           p_mul.fragment.overlap  Message fragment overlap
               Boolean
               Message fragment overlap

           p_mul.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
               Boolean
               Message fragment overlapping with conflicting data

           p_mul.fragment.too_long_fragment  Message fragment too long
               Boolean
               Message fragment too long

           p_mul.fragments  Message fragments
               No value
               Message fragments

           p_mul.last  Last
               Boolean
               Last

           p_mul.length  Length of PDU
               Unsigned 16-bit integer
               Length of PDU

           p_mul.mc_group  Multicast Group
               Unsigned 32-bit integer
               Multicast Group

           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
               Missing Data PDU Seq Number

           p_mul.missing_seq_range  Missing Data PDU Seq Range
               Byte array
               Missing Data PDU Seq Range

           p_mul.msg_seq_no  Message Sequence Number
               Unsigned 16-bit integer
               Message Sequence Number

           p_mul.no_missing_seq_no  Total Number of Missing Data PDU Sequence Numbers
               Unsigned 16-bit integer
               Total Number of Missing Data PDU Sequence Numbers

           p_mul.no_pdus  Total Number of PDUs
               Unsigned 16-bit integer
               Total Number of PDUs

           p_mul.pdu_type  PDU Type
               Unsigned 8-bit integer
               PDU Type

           p_mul.priority  Priority
               Unsigned 8-bit integer
               Priority

           p_mul.reassembled.in  Reassembled in
               Frame number
               Reassembled in

           p_mul.reserved_length  Length of Reserved Field
               Unsigned 16-bit integer
               Length of Reserved Field

           p_mul.seq_no  Sequence Number of PDUs
               Unsigned 16-bit integer
               Sequence Number of PDUs

           p_mul.source_id  Source ID
               IPv4 address
               Source ID

           p_mul.source_id_ack  Source ID of Ack Sender
               IPv4 address
               Source ID of Ack Sender

           p_mul.sym_key  Symmetric Key
               No value
               Symmetric Key

           p_mul.timestamp  Timestamp Option
               Unsigned 64-bit integer
               Timestamp Option (in units of 100ms)

           p_mul.unused  MAP unused
               Unsigned 8-bit integer
               MAP unused

   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
               ACK Required Flag

           pktc.asd  Application Specific Data
               No value
               KMMID/DOI application specific data

           pktc.asd.ipsec_auth_alg  IPsec Authentication Algorithm
               Unsigned 8-bit integer
               IPsec Authentication Algorithm

           pktc.asd.ipsec_enc_alg  IPsec Encryption Transform ID
               Unsigned 8-bit integer
               IPsec Encryption Transform ID

           pktc.asd.ipsec_spi  IPsec Security Parameter Index
               Unsigned 32-bit integer
               Security Parameter Index for inbound Security Association (IPsec)

           pktc.asd.snmp_auth_alg  SNMPv3 Authentication Algorithm
               Unsigned 8-bit integer
               SNMPv3 Authentication Algorithm

           pktc.asd.snmp_enc_alg  SNMPv3 Encryption Transform ID
               Unsigned 8-bit integer
               SNMPv3 Encryption Transform ID

           pktc.asd.snmp_engine_boots  SNMPv3 Engine Boots
               Unsigned 32-bit integer
               SNMPv3 Engine Boots

           pktc.asd.snmp_engine_id  SNMPv3 Engine ID
               Byte array
               SNMPv3 Engine ID

           pktc.asd.snmp_engine_id.len  SNMPv3 Engine ID Length
               Unsigned 8-bit integer
               Length of SNMPv3 Engine ID

           pktc.asd.snmp_engine_time  SNMPv3 Engine Time
               Unsigned 32-bit integer
               SNMPv3 Engine ID Time

           pktc.asd.snmp_usm_username  SNMPv3 USM User Name
               String
               SNMPv3 USM User Name

           pktc.asd.snmp_usm_username.len  SNMPv3 USM User Name Length
               Unsigned 8-bit integer
               Length of SNMPv3 USM User Name

           pktc.ciphers  List of Ciphersuites
               No value
               List of Ciphersuites

           pktc.ciphers.len  Number of Ciphersuites
               Unsigned 8-bit integer
               Number of Ciphersuites

           pktc.doi  Domain of Interpretation
               Unsigned 8-bit integer
               Domain of Interpretation

           pktc.grace_period  Grace Period
               Unsigned 32-bit integer
               Grace Period in seconds

           pktc.kmmid  Key Management Message ID
               Unsigned 8-bit integer
               Key Management Message ID

           pktc.mtafqdn.enterprise  Enterprise Number
               Unsigned 32-bit integer
               Enterprise Number

           pktc.mtafqdn.fqdn  MTA FQDN
               String
               MTA FQDN

           pktc.mtafqdn.ip  MTA IP Address
               IPv4 address
               MTA IP Address (all zeros if not supplied)

           pktc.mtafqdn.mac  MTA MAC address
               6-byte Hardware (MAC) Address
               MTA MAC address

           pktc.mtafqdn.manu_cert_revoked  Manufacturer Cert Revocation Time
               Date/Time stamp
               Manufacturer Cert Revocation Time (UTC) or 0 if not revoked

           pktc.mtafqdn.msgtype  Message Type
               Unsigned 8-bit integer
               MTA FQDN Message Type

           pktc.mtafqdn.pub_key_hash  MTA Public Key Hash
               Byte array
               MTA Public Key Hash (SHA-1)

           pktc.mtafqdn.version  Protocol Version
               Unsigned 8-bit integer
               MTA FQDN Protocol Version

           pktc.reestablish  Re-establish Flag
               Boolean
               Re-establish Flag

           pktc.server_nonce  Server Nonce
               Unsigned 32-bit integer
               Server Nonce random number

           pktc.server_principal  Server Kerberos Principal Identifier
               String
               Server Kerberos Principal Identifier

           pktc.sha1_hmac  SHA-1 HMAC
               Byte array
               SHA-1 HMAC

           pktc.spl  Security Parameter Lifetime
               Unsigned 32-bit integer
               Lifetime in seconds of security parameter

           pktc.timestamp  Timestamp
               String
               Timestamp (UTC)

           pktc.version.major  Major version
               Unsigned 8-bit integer
               Major version of PKTC

           pktc.version.minor  Minor version
               Unsigned 8-bit integer
               Minor version of PKTC

   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
               mpeg_pes.BOOLEAN

           mpeg-pes.aspect_ratio  aspect-ratio
               Unsigned 32-bit integer
               mpeg_pes.T_aspect_ratio

           mpeg-pes.bit_rate  bit-rate
               Byte array
               mpeg_pes.BIT_STRING_SIZE_18

           mpeg-pes.bit_rate_extension  bit-rate-extension
               Byte array
               mpeg_pes.BIT_STRING_SIZE_12

           mpeg-pes.broken_gop  broken-gop
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.chroma_format  chroma-format
               Unsigned 32-bit integer
               mpeg_pes.INTEGER_0_3

           mpeg-pes.closed_gop  closed-gop
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.constrained_parameters_flag  constrained-parameters-flag
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.copy-info  copy info
               Unsigned 8-bit integer

           mpeg-pes.copyright  copyright
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.crc  CRC
               Unsigned 16-bit integer

           mpeg-pes.crc_flag  crc-flag
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.data  PES data
               Byte array

           mpeg-pes.data_alignment  data-alignment
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.drop_frame_flag  drop-frame-flag
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.dsm_trick_mode_flag  dsm-trick-mode-flag
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.dts  decode time stamp (DTS)
               Time duration

           mpeg-pes.dts_flag  dts-flag
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.es-rate  elementary stream rate
               Unsigned 24-bit integer

           mpeg-pes.es_rate_flag  es-rate-flag
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.escr  elementary stream clock reference (ESCR)
               Time duration

           mpeg-pes.escr_flag  escr-flag
               Boolean
               mpeg_pes.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
               mpeg_pes.BOOLEAN

           mpeg-pes.frame  frame
               Unsigned 32-bit integer
               mpeg_pes.INTEGER_0_64

           mpeg-pes.frame_rate  frame-rate
               Unsigned 32-bit integer
               mpeg_pes.T_frame_rate

           mpeg-pes.frame_rate_extension_d  frame-rate-extension-d
               Unsigned 32-bit integer
               mpeg_pes.INTEGER_0_3

           mpeg-pes.frame_rate_extension_n  frame-rate-extension-n
               Unsigned 32-bit integer
               mpeg_pes.INTEGER_0_3

           mpeg-pes.frame_type  frame-type
               Unsigned 32-bit integer
               mpeg_pes.T_frame_type

           mpeg-pes.header-data  PES header data
               Byte array

           mpeg-pes.header_data_length  header-data-length
               Unsigned 32-bit integer
               mpeg_pes.INTEGER_0_255

           mpeg-pes.horizontal_size  horizontal-size
               Byte array
               mpeg_pes.BIT_STRING_SIZE_12

           mpeg-pes.horizontal_size_extension  horizontal-size-extension
               Unsigned 32-bit integer
               mpeg_pes.INTEGER_0_3

           mpeg-pes.hour  hour
               Unsigned 32-bit integer
               mpeg_pes.INTEGER_0_32

           mpeg-pes.length  length
               Unsigned 16-bit integer
               mpeg_pes.INTEGER_0_65535

           mpeg-pes.load_intra_quantiser_matrix  load-intra-quantiser-matrix
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.load_non_intra_quantiser_matrix  load-non-intra-quantiser-matrix
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.low_delay  low-delay
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.minute  minute
               Unsigned 32-bit integer
               mpeg_pes.INTEGER_0_64

           mpeg-pes.must_be_0001  must-be-0001
               Byte array
               mpeg_pes.BIT_STRING_SIZE_4

           mpeg-pes.must_be_one  must-be-one
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.must_be_zero  must-be-zero
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.original  original
               Boolean
               mpeg_pes.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
               mpeg_pes.OCTET_STRING_SIZE_3

           mpeg-pes.priority  priority
               Boolean
               mpeg_pes.BOOLEAN

           mpeg-pes.private-data  private data
               Unsigned 16-bit integer

           mpeg-pes.profile_and_level  profile-and-level
               Unsigned 32-bit integer
               mpeg_pes.INTEGER_0_255

           mpeg-pes.program-mux-rate  PES program mux rate
               Unsigned 24-bit integer

           mpeg-pes.progressive_sequence  progressive-sequence
               Boolean
               mpeg_pes.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
               mpeg_pes.BOOLEAN

           mpeg-pes.scr  system clock reference (SCR)
               Time duration

           mpeg-pes.scrambling_control  scrambling-control
               Unsigned 32-bit integer
               mpeg_pes.T_scrambling_control

           mpeg-pes.second  second
               Unsigned 32-bit integer
               mpeg_pes.INTEGER_0_64

           mpeg-pes.sequence  sequence
               Unsigned 16-bit integer

           mpeg-pes.stream  stream
               Unsigned 8-bit integer
               mpeg_pes.T_stream

           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
               mpeg_pes.BIT_STRING_SIZE_10

           mpeg-pes.vbv_buffer_size  vbv-buffer-size
               Byte array
               mpeg_pes.BIT_STRING_SIZE_10

           mpeg-pes.vbv_buffer_size_extension  vbv-buffer-size-extension
               Unsigned 32-bit integer
               mpeg_pes.INTEGER_0_255

           mpeg-pes.vbv_delay  vbv-delay
               Byte array
               mpeg_pes.BIT_STRING_SIZE_16

           mpeg-pes.vertical_size  vertical-size
               Byte array
               mpeg_pes.BIT_STRING_SIZE_12

           mpeg-pes.vertical_size_extension  vertical-size-extension
               Unsigned 32-bit integer
               mpeg_pes.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
               Aggregate Size

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

           pvfs.attribute.value  Attribute value
               String
               Attribute value

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

           pvfs.bytes_completed  Bytes Completed
               Unsigned 64-bit integer
               Bytes Completed

           pvfs.bytes_read  bytes_read
               Unsigned 64-bit integer
               bytes_read

           pvfs.bytes_total  Bytes Total
               Unsigned 64-bit integer
               Bytes Total

           pvfs.bytes_written  bytes_written
               Unsigned 64-bit integer
               bytes_written

           pvfs.context_id  Context ID
               Unsigned 32-bit integer
               Context ID

           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
               cur_time_ms

           pvfs.directory_version  Directory Version
               Unsigned 64-bit integer
               Directory Version

           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
               Encoding

           pvfs.end_time_ms  end_time_ms
               Unsigned 64-bit integer
               end_time_ms

           pvfs.ereg  ereg
               Signed 32-bit integer
               ereg

           pvfs.error  Result
               Unsigned 32-bit integer
               Result

           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
               Flow Protocol Type

           pvfs.fs_id  fs_id
               Unsigned 32-bit integer
               File System ID

           pvfs.handle  Handle
               Byte array
               Handle

           pvfs.handles_available  Handles Available
               Unsigned 64-bit integer
               Handles Available

           pvfs.id_gen_t  id_gen_t
               Unsigned 64-bit integer
               id_gen_t

           pvfs.io_type  I/O Type
               Unsigned 32-bit integer
               I/O Type

           pvfs.k_size  Number of keyvals (if applicable)
               Unsigned 64-bit integer
               Number of keyvals

           pvfs.lb  lb
               Unsigned 64-bit integer
               lb

           pvfs.load_average.15s  Load Average (15s)
               Unsigned 64-bit integer
               Load Average (15s)

           pvfs.load_average.1s  Load Average (1s)
               Unsigned 64-bit integer
               Load Average (1s)

           pvfs.load_average.5s  Load Average (5s)
               Unsigned 64-bit integer
               Load Average (5s)

           pvfs.magic_nr  Magic Number
               Unsigned 32-bit integer
               Magic Number

           pvfs.metadata_read  metadata_read
               Unsigned 64-bit integer
               metadata_read

           pvfs.metadata_write  metadata_write
               Unsigned 64-bit integer
               metadata_write

           pvfs.mode  Mode
               Unsigned 32-bit integer
               Mode

           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
               Number of blocks

           pvfs.num_contig_chunks  Number of contig_chunks
               Unsigned 32-bit integer
               Number of contig_chunks

           pvfs.num_eregs  Number of eregs
               Unsigned 32-bit integer
               Number of eregs

           pvfs.offset  Offset
               Unsigned 64-bit integer
               Offset

           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
               Path

           pvfs.prev_value  Previous Value
               Unsigned 64-bit integer
               Previous Value

           pvfs.ram.free_bytes  RAM Free Bytes
               Unsigned 64-bit integer
               RAM Free Bytes

           pvfs.ram_bytes_free  RAM Bytes Free
               Unsigned 64-bit integer
               RAM Bytes Free

           pvfs.ram_bytes_total  RAM Bytes Total
               Unsigned 64-bit integer
               RAM Bytes Total

           pvfs.release_number  Release Number
               Unsigned 32-bit integer
               Release Number

           pvfs.server_count  Number of servers
               Unsigned 32-bit integer
               Number of servers

           pvfs.server_nr  Server #
               Unsigned 32-bit integer
               Server #

           pvfs.server_op  Server Operation
               Unsigned 32-bit integer
               Server Operation

           pvfs.server_param  Server Parameter
               Unsigned 32-bit integer
               Server Parameter

           pvfs.size  Size
               Unsigned 64-bit integer
               Size

           pvfs.sreg  sreg
               Signed 32-bit integer
               sreg

           pvfs.start_time_ms  start_time_ms
               Unsigned 64-bit integer
               start_time_ms

           pvfs.stride  Stride
               Unsigned 64-bit integer
               Stride

           pvfs.strip_size  Strip size
               Unsigned 64-bit integer
               Strip size (bytes)

           pvfs.tag  Tag
               Unsigned 64-bit integer
               Tag

           pvfs.total_handles  Total Handles
               Unsigned 64-bit integer
               Total Handles

           pvfs.ub  ub
               Unsigned 64-bit integer
               ub

           pvfs.uptime  Uptime (seconds)
               Unsigned 64-bit integer
               Uptime (seconds)

   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

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

           lsc.scale_num  Scale Numerator
               Signed 16-bit integer
               Scale Numerator

           lsc.start_npt  Start NPT
               Signed 32-bit integer
               Start Time (milliseconds)

           lsc.status_code  Status Code
               Unsigned 8-bit integer
               Status Code

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

           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
               Count

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

           9p.gid  Gid
               String
               Group id

           9p.iounit  I/O Unit
               Unsigned 32-bit integer
               I/O Unit

           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
               Mode

           9p.mode.orclose  Remove on close
               Boolean

           9p.mode.rwx  Open/Create Mode
               Unsigned 8-bit integer
               Open/Create Mode

           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
               Offset

           9p.oldtag  Old tag
               Unsigned 16-bit integer
               Old tag

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

           9p.qidtype  Qid type
               Unsigned 8-bit integer
               Qid type

           9p.qidvers  Qid version
               Unsigned 32-bit integer
               Qid version

           9p.sdlen  Stat data length
               Unsigned 16-bit integer
               Stat data length

           9p.statmode  Mode
               Unsigned 32-bit integer
               File mode flags

           9p.stattype  Type
               Unsigned 16-bit integer
               Type

           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
               Version

           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
               Answer

           portmap.args  Arguments
               Byte array
               Arguments

           portmap.port  Port
               Unsigned 32-bit integer
               Port

           portmap.proc  Procedure
               Unsigned 32-bit integer
               Procedure

           portmap.procedure_v1  V1 Procedure
               Unsigned 32-bit integer
               V1 Procedure

           portmap.procedure_v2  V2 Procedure
               Unsigned 32-bit integer
               V2 Procedure

           portmap.procedure_v3  V3 Procedure
               Unsigned 32-bit integer
               V3 Procedure

           portmap.procedure_v4  V4 Procedure
               Unsigned 32-bit integer
               V4 Procedure

           portmap.prog  Program
               Unsigned 32-bit integer
               Program

           portmap.proto  Protocol
               Unsigned 32-bit integer
               Protocol

           portmap.result  Result
               Byte array
               Result

           portmap.rpcb  RPCB
               No value
               RPCB

           portmap.rpcb.addr  Universal Address
               String
               Universal Address

           portmap.rpcb.netid  Network Id
               String
               Network Id

           portmap.rpcb.owner  Owner of this Service
               String
               Owner of this Service

           portmap.rpcb.prog  Program
               Unsigned 32-bit integer
               Program

           portmap.rpcb.version  Version
               Unsigned 32-bit integer
               Version

           portmap.uaddr  Universal Address
               String
               Universal Address

           portmap.version  Version
               Unsigned 32-bit integer
               Version

   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.request  Request
               String
               Request

           pop.request.command  Request command
               String
               Request command

           pop.request.data  Data
               String
               Request data

           pop.request.parameter  Request parameter
               String
               Request parameter

           pop.response  Response
               String
               Response

           pop.response.data  Data
               String
               Response Data

           pop.response.description  Response description
               String
               Response description

           pop.response.indicator  Response indicator
               String
               Response indicator

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

           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
               Operation

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

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

           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.extension_ind  Extension indicator
               Boolean

           q931.information_transfer_capability  Information transfer capability
               Unsigned 8-bit integer

           q931.information_transfer_rate  Information transfer rate
               Unsigned 8-bit integer

           q931.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.reassembled_in  Reassembled Q.931 in frame
               Frame number
               This Q.931 message is reassembled in this frame

           q931.redirecting_number.digits  Redirecting party number digits
               String

           q931.screening_ind  Screening indicator
               Unsigned 8-bit integer

           q931.segment  Q.931 Segment
               Frame number
               Q.931 Segment

           q931.segment.error  Defragmentation error
               Frame number
               Defragmentation error due to illegal fragments

           q931.segment.multipletails  Multiple tail fragments found
               Boolean
               Several tails were found when defragmenting the packet

           q931.segment.overlap  Segment overlap
               Boolean
               Fragment overlaps with other fragments

           q931.segment.overlap.conflict  Conflicting data in fragment overlap
               Boolean
               Overlapping fragments contained conflicting data

           q931.segment.toolongfragment  Segment too long
               Boolean
               Segment contained data past end of packet

           q931.segment_type  Segmented message type
               Unsigned 8-bit integer

           q931.segments  Q.931 Segments
               No value
               Q.931 Segments

           q931.transfer_mode  Transfer mode
               Unsigned 8-bit integer

           q931.uil1  User information layer 1 protocol
               Unsigned 8-bit integer

   Q.932 (q932)
           q932.InterpretationComponent  InterpretationComponent
               Unsigned 32-bit integer
               q932.InterpretationComponent

           q932.NetworkFacilityExtension  NetworkFacilityExtension
               No value
               q932.NetworkFacilityExtension

           q932.NetworkProtocolProfile  NetworkProtocolProfile
               Unsigned 32-bit integer
               q932.NetworkProtocolProfile

           q932.dataPartyNumber  dataPartyNumber
               String
               q932.NumberDigits

           q932.destinationEntity  destinationEntity
               Unsigned 32-bit integer
               q932.EntityType

           q932.destinationEntityAddress  destinationEntityAddress
               Unsigned 32-bit integer
               q932.AddressInformation

           q932.ie.data  Data
               Byte array
               Data

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

           q932.nationalStandardPartyNumber  nationalStandardPartyNumber
               String
               q932.NumberDigits

           q932.nd  Notification description
               Unsigned 8-bit integer
               Notification description

           q932.nsapEncodedNumber  nsapEncodedNumber
               Byte array
               q932.NsapEncodedNumber

           q932.numberNotAvailableDueToInterworking  numberNotAvailableDueToInterworking
               No value
               q932.NULL

           q932.numberNotAvailableDueTolnterworking  numberNotAvailableDueTolnterworking
               No value
               q932.NULL

           q932.oddCountIndicator  oddCountIndicator
               Boolean
               q932.BOOLEAN

           q932.partyNumber  partyNumber
               Unsigned 32-bit integer
               q932.PartyNumber

           q932.partySubaddress  partySubaddress
               Unsigned 32-bit integer
               q932.PartySubaddress

           q932.pp  Protocol profile
               Unsigned 8-bit integer
               Protocol profile

           q932.presentationAlIowedAddress  presentationAlIowedAddress
               No value
               q932.AddressScreened

           q932.presentationAllowedAddress  presentationAllowedAddress
               No value
               q932.Address

           q932.presentationAllowedNumber  presentationAllowedNumber
               No value
               q932.NumberScreened

           q932.presentationRestricted  presentationRestricted
               No value
               q932.NULL

           q932.presentationRestrictedAddress  presentationRestrictedAddress
               No value
               q932.AddressScreened

           q932.presentationRestrictedNumber  presentationRestrictedNumber
               No value
               q932.NumberScreened

           q932.privateNumberDigits  privateNumberDigits
               String
               q932.NumberDigits

           q932.privatePartyNumber  privatePartyNumber
               No value
               q932.PrivatePartyNumber

           q932.privateTypeOfNumber  privateTypeOfNumber
               Unsigned 32-bit integer
               q932.PrivateTypeOfNumber

           q932.publicNumberDigits  publicNumberDigits
               String
               q932.NumberDigits

           q932.publicPartyNumber  publicPartyNumber
               No value
               q932.PublicPartyNumber

           q932.publicTypeOfNumber  publicTypeOfNumber
               Unsigned 32-bit integer
               q932.PublicTypeOfNumber

           q932.screeningIndicator  screeningIndicator
               Unsigned 32-bit integer
               q932.ScreeningIndicator

           q932.screeninglndicator  screeninglndicator
               Unsigned 32-bit integer
               q932.ScreeningIndicator

           q932.sourceEntity  sourceEntity
               Unsigned 32-bit integer
               q932.EntityType

           q932.sourceEntityAddress  sourceEntityAddress
               Unsigned 32-bit integer
               q932.AddressInformation

           q932.subaddressInformation  subaddressInformation
               Byte array
               q932.SubaddressInformation

           q932.telexPartyNumber  telexPartyNumber
               String
               q932.NumberDigits

           q932.unknownPartyNumber  unknownPartyNumber
               String
               q932.NumberDigits

           q932.userSpecifiedSubaddress  userSpecifiedSubaddress
               No value
               q932.UserSpecifiedSubaddress

   Q.932 Operations Service Element (q932.ros)
           q932.ros.InvokeId_present  InvokeId.present
               Signed 32-bit integer
               q932_ros.InvokeId_present

           q932.ros.ROS  ROS
               Unsigned 32-bit integer
               q932_ros.ROS

           q932.ros.absent  absent
               No value
               q932_ros.NULL

           q932.ros.argument  argument
               Byte array
               q932_ros.InvokeArgument

           q932.ros.errcode  errcode
               Unsigned 32-bit integer
               q932_ros.Code

           q932.ros.general  general
               Signed 32-bit integer
               q932_ros.GeneralProblem

           q932.ros.global  global
               Object Identifier
               q932_ros.T_global

           q932.ros.invoke  invoke
               No value
               q932_ros.Invoke

           q932.ros.invokeId  invokeId
               Unsigned 32-bit integer
               q932_ros.InvokeId

           q932.ros.linkedId  linkedId
               Unsigned 32-bit integer
               q932_ros.T_linkedId

           q932.ros.local  local
               Signed 32-bit integer
               q932_ros.T_local

           q932.ros.opcode  opcode
               Unsigned 32-bit integer
               q932_ros.Code

           q932.ros.parameter  parameter
               Byte array
               q932_ros.T_parameter

           q932.ros.present  present
               Signed 32-bit integer
               q932_ros.T_linkedIdPresent

           q932.ros.problem  problem
               Unsigned 32-bit integer
               q932_ros.T_problem

           q932.ros.reject  reject
               No value
               q932_ros.Reject

           q932.ros.result  result
               No value
               q932_ros.T_result

           q932.ros.returnError  returnError
               No value
               q932_ros.ReturnError

           q932.ros.returnResult  returnResult
               No value
               q932_ros.ReturnResult

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

           qsig.aoc.AdviceModeCombination  AdviceModeCombination
               Unsigned 32-bit integer
               qsig_aoc.AdviceModeCombination

           qsig.aoc.AocCompleteArg  AocCompleteArg
               No value
               qsig_aoc.AocCompleteArg

           qsig.aoc.AocCompleteRes  AocCompleteRes
               No value
               qsig_aoc.AocCompleteRes

           qsig.aoc.AocDivChargeReqArg  AocDivChargeReqArg
               No value
               qsig_aoc.AocDivChargeReqArg

           qsig.aoc.AocFinalArg  AocFinalArg
               No value
               qsig_aoc.AocFinalArg

           qsig.aoc.AocInterimArg  AocInterimArg
               No value
               qsig_aoc.AocInterimArg

           qsig.aoc.AocRateArg  AocRateArg
               No value
               qsig_aoc.AocRateArg

           qsig.aoc.ChargeRequestArg  ChargeRequestArg
               No value
               qsig_aoc.ChargeRequestArg

           qsig.aoc.ChargeRequestRes  ChargeRequestRes
               No value
               qsig_aoc.ChargeRequestRes

           qsig.aoc.DummyArg  DummyArg
               Unsigned 32-bit integer
               qsig_aoc.DummyArg

           qsig.aoc.Extension  Extension
               No value
               qsig.Extension

           qsig.aoc.adviceModeCombination  adviceModeCombination
               Unsigned 32-bit integer
               qsig_aoc.AdviceModeCombination

           qsig.aoc.adviceModeCombinations  adviceModeCombinations
               Unsigned 32-bit integer
               qsig_aoc.SEQUENCE_SIZE_0_7_OF_AdviceModeCombination

           qsig.aoc.aocDivChargeReqArgExt  aocDivChargeReqArgExt
               Unsigned 32-bit integer
               qsig_aoc.T_aocDivChargeReqArgExt

           qsig.aoc.aocRate  aocRate
               Unsigned 32-bit integer
               qsig_aoc.T_aocRate

           qsig.aoc.aocSCurrencyInfoList  aocSCurrencyInfoList
               Unsigned 32-bit integer
               qsig_aoc.AOCSCurrencyInfoList

           qsig.aoc.chargeIdentifier  chargeIdentifier
               Signed 32-bit integer
               qsig_aoc.ChargeIdentifier

           qsig.aoc.chargeNotAvailable  chargeNotAvailable
               No value
               qsig_aoc.NULL

           qsig.aoc.chargeNumber  chargeNumber
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.aoc.chargeReqArgExtension  chargeReqArgExtension
               Unsigned 32-bit integer
               qsig_aoc.T_chargeReqArgExtension

           qsig.aoc.chargeReqResExtension  chargeReqResExtension
               Unsigned 32-bit integer
               qsig_aoc.T_chargeReqResExtension

           qsig.aoc.chargedItem  chargedItem
               Unsigned 32-bit integer
               qsig_aoc.ChargedItem

           qsig.aoc.chargedUser  chargedUser
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.aoc.chargingAssociation  chargingAssociation
               Unsigned 32-bit integer
               qsig_aoc.ChargingAssociation

           qsig.aoc.chargingOption  chargingOption
               Unsigned 32-bit integer
               qsig_aoc.ChargingOption

           qsig.aoc.completeArgExtension  completeArgExtension
               Unsigned 32-bit integer
               qsig_aoc.T_completeArgExtension

           qsig.aoc.completeResExtension  completeResExtension
               Unsigned 32-bit integer
               qsig_aoc.T_completeResExtension

           qsig.aoc.currencyAmount  currencyAmount
               Unsigned 32-bit integer
               qsig_aoc.CurrencyAmount

           qsig.aoc.currencyInfoNotAvailable  currencyInfoNotAvailable
               No value
               qsig_aoc.NULL

           qsig.aoc.dAmount  dAmount
               No value
               qsig_aoc.Amount

           qsig.aoc.dChargingType  dChargingType
               Unsigned 32-bit integer
               qsig_aoc.ChargingType

           qsig.aoc.dCurrency  dCurrency
               String
               qsig_aoc.Currency

           qsig.aoc.dGranularity  dGranularity
               No value
               qsig_aoc.Time

           qsig.aoc.dTime  dTime
               No value
               qsig_aoc.Time

           qsig.aoc.diversionType  diversionType
               Unsigned 32-bit integer
               qsig_aoc.DiversionType

           qsig.aoc.divertingUser  divertingUser
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.aoc.durationCurrency  durationCurrency
               No value
               qsig_aoc.DurationCurrency

           qsig.aoc.extension  extension
               No value
               qsig.Extension

           qsig.aoc.fRAmount  fRAmount
               No value
               qsig_aoc.Amount

           qsig.aoc.fRCurrency  fRCurrency
               String
               qsig_aoc.Currency

           qsig.aoc.finalArgExtension  finalArgExtension
               Unsigned 32-bit integer
               qsig_aoc.T_finalArgExtension

           qsig.aoc.finalBillingId  finalBillingId
               Unsigned 32-bit integer
               qsig_aoc.FinalBillingId

           qsig.aoc.finalCharge  finalCharge
               Unsigned 32-bit integer
               qsig_aoc.T_finalCharge

           qsig.aoc.flatRateCurrency  flatRateCurrency
               No value
               qsig_aoc.FlatRateCurrency

           qsig.aoc.freeOfCharge  freeOfCharge
               No value
               qsig_aoc.NULL

           qsig.aoc.freeOfChargefromBeginning  freeOfChargefromBeginning
               No value
               qsig_aoc.NULL

           qsig.aoc.interimArgExtension  interimArgExtension
               Unsigned 32-bit integer
               qsig_aoc.T_interimArgExtension

           qsig.aoc.interimBillingId  interimBillingId
               Unsigned 32-bit integer
               qsig_aoc.InterimBillingId

           qsig.aoc.interimCharge  interimCharge
               Unsigned 32-bit integer
               qsig_aoc.T_interimCharge

           qsig.aoc.lengthOfTimeUnit  lengthOfTimeUnit
               Unsigned 32-bit integer
               qsig_aoc.LengthOfTimeUnit

           qsig.aoc.multipleExtension  multipleExtension
               Unsigned 32-bit integer
               qsig_aoc.SEQUENCE_OF_Extension

           qsig.aoc.multiplier  multiplier
               Unsigned 32-bit integer
               qsig_aoc.Multiplier

           qsig.aoc.none  none
               No value
               qsig_aoc.NULL

           qsig.aoc.rAmount  rAmount
               No value
               qsig_aoc.Amount

           qsig.aoc.rCurrency  rCurrency
               String
               qsig_aoc.Currency

           qsig.aoc.rateArgExtension  rateArgExtension
               Unsigned 32-bit integer
               qsig_aoc.T_rateArgExtension

           qsig.aoc.rateType  rateType
               Unsigned 32-bit integer
               qsig_aoc.T_rateType

           qsig.aoc.recordedCurrency  recordedCurrency
               No value
               qsig_aoc.RecordedCurrency

           qsig.aoc.scale  scale
               Unsigned 32-bit integer
               qsig_aoc.Scale

           qsig.aoc.specialChargingCode  specialChargingCode
               Unsigned 32-bit integer
               qsig_aoc.SpecialChargingCode

           qsig.aoc.specificCurrency  specificCurrency
               No value
               qsig_aoc.T_specificCurrency

           qsig.aoc.vRAmount  vRAmount
               No value
               qsig_aoc.Amount

           qsig.aoc.vRCurrency  vRCurrency
               String
               qsig_aoc.Currency

           qsig.aoc.vRVolumeUnit  vRVolumeUnit
               Unsigned 32-bit integer
               qsig_aoc.VolumeUnit

           qsig.aoc.volumeRateCurrency  volumeRateCurrency
               No value
               qsig_aoc.VolumeRateCurrency

           qsig.cc.CcExtension  CcExtension
               Unsigned 32-bit integer
               qsig_cc.CcExtension

           qsig.cc.CcOptionalArg  CcOptionalArg
               Unsigned 32-bit integer
               qsig_cc.CcOptionalArg

           qsig.cc.CcRequestArg  CcRequestArg
               No value
               qsig_cc.CcRequestArg

           qsig.cc.CcRequestRes  CcRequestRes
               No value
               qsig_cc.CcRequestRes

           qsig.cc.Extension  Extension
               No value
               qsig.Extension

           qsig.cc.can_retain_service  can-retain-service
               Boolean
               qsig_cc.BOOLEAN

           qsig.cc.extArg  extArg
               Unsigned 32-bit integer
               qsig_cc.CcExtension

           qsig.cc.extension  extension
               Unsigned 32-bit integer
               qsig_cc.CcExtension

           qsig.cc.fullArg  fullArg
               No value
               qsig_cc.T_fullArg

           qsig.cc.multiple  multiple
               Unsigned 32-bit integer
               qsig_cc.SEQUENCE_OF_Extension

           qsig.cc.no_path_reservation  no-path-reservation
               Boolean
               qsig_cc.BOOLEAN

           qsig.cc.none  none
               No value
               qsig_cc.NULL

           qsig.cc.numberA  numberA
               Unsigned 32-bit integer
               qsig.PresentedNumberUnscreened

           qsig.cc.numberB  numberB
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.cc.retain_service  retain-service
               Boolean
               qsig_cc.BOOLEAN

           qsig.cc.retain_sig_connection  retain-sig-connection
               Boolean
               qsig_cc.BOOLEAN

           qsig.cc.service  service
               Byte array
               qsig.PSS1InformationElement

           qsig.cc.single  single
               No value
               qsig.Extension

           qsig.cc.subaddrA  subaddrA
               Unsigned 32-bit integer
               qsig.PartySubaddress

           qsig.cc.subaddrB  subaddrB
               Unsigned 32-bit integer
               qsig.PartySubaddress

           qsig.cf.ARG_activateDiversionQ  ARG-activateDiversionQ
               No value
               qsig_cf.ARG_activateDiversionQ

           qsig.cf.ARG_callRerouteing  ARG-callRerouteing
               No value
               qsig_cf.ARG_callRerouteing

           qsig.cf.ARG_cfnrDivertedLegFailed  ARG-cfnrDivertedLegFailed
               Unsigned 32-bit integer
               qsig_cf.ARG_cfnrDivertedLegFailed

           qsig.cf.ARG_checkRestriction  ARG-checkRestriction
               No value
               qsig_cf.ARG_checkRestriction

           qsig.cf.ARG_deactivateDiversionQ  ARG-deactivateDiversionQ
               No value
               qsig_cf.ARG_deactivateDiversionQ

           qsig.cf.ARG_divertingLegInformation1  ARG-divertingLegInformation1
               No value
               qsig_cf.ARG_divertingLegInformation1

           qsig.cf.ARG_divertingLegInformation2  ARG-divertingLegInformation2
               No value
               qsig_cf.ARG_divertingLegInformation2

           qsig.cf.ARG_divertingLegInformation3  ARG-divertingLegInformation3
               No value
               qsig_cf.ARG_divertingLegInformation3

           qsig.cf.ARG_interrogateDiversionQ  ARG-interrogateDiversionQ
               No value
               qsig_cf.ARG_interrogateDiversionQ

           qsig.cf.Extension  Extension
               No value
               qsig.Extension

           qsig.cf.IntResult  IntResult
               No value
               qsig_cf.IntResult

           qsig.cf.IntResultList  IntResultList
               Unsigned 32-bit integer
               qsig_cf.IntResultList

           qsig.cf.RES_activateDiversionQ  RES-activateDiversionQ
               Unsigned 32-bit integer
               qsig_cf.RES_activateDiversionQ

           qsig.cf.RES_callRerouteing  RES-callRerouteing
               Unsigned 32-bit integer
               qsig_cf.RES_callRerouteing

           qsig.cf.RES_checkRestriction  RES-checkRestriction
               Unsigned 32-bit integer
               qsig_cf.RES_checkRestriction

           qsig.cf.RES_deactivateDiversionQ  RES-deactivateDiversionQ
               Unsigned 32-bit integer
               qsig_cf.RES_deactivateDiversionQ

           qsig.cf.activatingUserNr  activatingUserNr
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.cf.basicService  basicService
               Unsigned 32-bit integer
               qsig_cf.BasicService

           qsig.cf.calledAddress  calledAddress
               No value
               qsig.Address

           qsig.cf.callingName  callingName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.cf.callingNumber  callingNumber
               Unsigned 32-bit integer
               qsig.PresentedNumberScreened

           qsig.cf.callingPartySubaddress  callingPartySubaddress
               Unsigned 32-bit integer
               qsig.PartySubaddress

           qsig.cf.deactivatingUserNr  deactivatingUserNr
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.cf.diversionCounter  diversionCounter
               Unsigned 32-bit integer
               qsig_cf.INTEGER_1_15

           qsig.cf.diversionReason  diversionReason
               Unsigned 32-bit integer
               qsig_cf.DiversionReason

           qsig.cf.divertedToAddress  divertedToAddress
               No value
               qsig.Address

           qsig.cf.divertedToNr  divertedToNr
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.cf.divertingNr  divertingNr
               Unsigned 32-bit integer
               qsig.PresentedNumberUnscreened

           qsig.cf.extension  extension
               Unsigned 32-bit integer
               qsig_cf.ADExtension

           qsig.cf.interrogatingUserNr  interrogatingUserNr
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.cf.lastRerouteingNr  lastRerouteingNr
               Unsigned 32-bit integer
               qsig.PresentedNumberUnscreened

           qsig.cf.multiple  multiple
               Unsigned 32-bit integer
               qsig_cf.SEQUENCE_OF_Extension

           qsig.cf.nominatedNr  nominatedNr
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.cf.null  null
               No value
               qsig_cf.NULL

           qsig.cf.originalCalledName  originalCalledName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.cf.originalCalledNr  originalCalledNr
               Unsigned 32-bit integer
               qsig.PresentedNumberUnscreened

           qsig.cf.originalDiversionReason  originalDiversionReason
               Unsigned 32-bit integer
               qsig_cf.DiversionReason

           qsig.cf.originalRerouteingReason  originalRerouteingReason
               Unsigned 32-bit integer
               qsig_cf.DiversionReason

           qsig.cf.pSS1InfoElement  pSS1InfoElement
               Byte array
               qsig.PSS1InformationElement

           qsig.cf.presentationAllowedIndicator  presentationAllowedIndicator
               Boolean
               qsig.PresentationAllowedIndicator

           qsig.cf.procedure  procedure
               Unsigned 32-bit integer
               qsig_cf.Procedure

           qsig.cf.redirectingName  redirectingName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.cf.redirectionName  redirectionName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.cf.remoteEnabled  remoteEnabled
               Boolean
               qsig_cf.BOOLEAN

           qsig.cf.rerouteingReason  rerouteingReason
               Unsigned 32-bit integer
               qsig_cf.DiversionReason

           qsig.cf.servedUserNr  servedUserNr
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.cf.single  single
               No value
               qsig.Extension

           qsig.cf.subscriptionOption  subscriptionOption
               Unsigned 32-bit integer
               qsig_cf.SubscriptionOption

           qsig.ci.CIGetCIPLRes  CIGetCIPLRes
               No value
               qsig_ci.CIGetCIPLRes

           qsig.ci.CIRequestArg  CIRequestArg
               No value
               qsig_ci.CIRequestArg

           qsig.ci.CIRequestRes  CIRequestRes
               No value
               qsig_ci.CIRequestRes

           qsig.ci.DummyArg  DummyArg
               Unsigned 32-bit integer
               qsig_ci.DummyArg

           qsig.ci.DummyRes  DummyRes
               Unsigned 32-bit integer
               qsig_ci.DummyRes

           qsig.ci.Extension  Extension
               No value
               qsig.Extension

           qsig.ci.PathRetainArg  PathRetainArg
               Unsigned 32-bit integer
               qsig_ci.PathRetainArg

           qsig.ci.ServiceAvailableArg  ServiceAvailableArg
               Unsigned 32-bit integer
               qsig_ci.ServiceAvailableArg

           qsig.ci.argumentExtension  argumentExtension
               Unsigned 32-bit integer
               qsig_ci.T_argumentExtension

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

           qsig.ci.ciProtectionLevel  ciProtectionLevel
               Unsigned 32-bit integer
               qsig_ci.CIProtectionLevel

           qsig.ci.ciUnwantedUserStatus  ciUnwantedUserStatus
               Unsigned 32-bit integer
               qsig_ci.CIUnwantedUserStatus

           qsig.ci.extendedServiceList  extendedServiceList
               No value
               qsig_ci.T_extendedServiceList

           qsig.ci.extension  extension
               No value
               qsig.Extension

           qsig.ci.null  null
               No value
               qsig_ci.NULL

           qsig.ci.resultExtension  resultExtension
               Unsigned 32-bit integer
               qsig_ci.T_resultExtension

           qsig.ci.sequenceOfExtn  sequenceOfExtn
               Unsigned 32-bit integer
               qsig_ci.SEQUENCE_OF_Extension

           qsig.ci.serviceList  serviceList
               Byte array
               qsig_ci.ServiceList

           qsig.cidl.CallIdentificationAssignArg  CallIdentificationAssignArg
               No value
               qsig_cidl.CallIdentificationAssignArg

           qsig.cidl.CallIdentificationUpdateArg  CallIdentificationUpdateArg
               No value
               qsig_cidl.CallIdentificationUpdateArg

           qsig.cidl.Extension  Extension
               No value
               qsig.Extension

           qsig.cidl.extension  extension
               Unsigned 32-bit integer
               qsig_cidl.ExtensionType

           qsig.cidl.globalCallID  globalCallID
               No value
               qsig_cidl.CallIdentificationData

           qsig.cidl.globallyUniqueID  globallyUniqueID
               Byte array
               qsig_cidl.GloballyUniqueID

           qsig.cidl.legID  legID
               No value
               qsig_cidl.CallIdentificationData

           qsig.cidl.linkageID  linkageID
               Unsigned 32-bit integer
               qsig_cidl.T_linkageID

           qsig.cidl.sequenceOfExt  sequenceOfExt
               Unsigned 32-bit integer
               qsig_cidl.SEQUENCE_OF_Extension

           qsig.cidl.subDomainID  subDomainID
               Byte array
               qsig_cidl.SubDomainID

           qsig.cidl.switchingSubDomainName  switchingSubDomainName
               String
               qsig_cidl.SwitchingSubDomainName

           qsig.cidl.threadID  threadID
               No value
               qsig_cidl.CallIdentificationData

           qsig.cidl.timeStamp  timeStamp
               String
               qsig_cidl.TimeStamp

           qsig.cint.CintCondArg  CintCondArg
               No value
               qsig_cint.CintCondArg

           qsig.cint.CintExtension  CintExtension
               Unsigned 32-bit integer
               qsig_cint.CintExtension

           qsig.cint.CintInformation1Arg  CintInformation1Arg
               No value
               qsig_cint.CintInformation1Arg

           qsig.cint.CintInformation2Arg  CintInformation2Arg
               No value
               qsig_cint.CintInformation2Arg

           qsig.cint.Extension  Extension
               No value
               qsig.Extension

           qsig.cint.calledName  calledName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.cint.calledNumber  calledNumber
               Unsigned 32-bit integer
               qsig.PresentedNumberUnscreened

           qsig.cint.extension  extension
               Unsigned 32-bit integer
               qsig_cint.CintExtension

           qsig.cint.interceptedToNumber  interceptedToNumber
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.cint.interceptionCause  interceptionCause
               Unsigned 32-bit integer
               qsig_cint.CintCause

           qsig.cint.multiple  multiple
               Unsigned 32-bit integer
               qsig_cint.SEQUENCE_OF_Extension

           qsig.cint.none  none
               No value
               qsig_cint.NULL

           qsig.cint.originalCalledName  originalCalledName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.cint.originalCalledNumber  originalCalledNumber
               Unsigned 32-bit integer
               qsig.PresentedNumberUnscreened

           qsig.cint.single  single
               No value
               qsig.Extension

           qsig.cmn.CmnArg  CmnArg
               No value
               qsig_cmn.CmnArg

           qsig.cmn.DummyArg  DummyArg
               Unsigned 32-bit integer
               qsig_cmn.DummyArg

           qsig.cmn.Extension  Extension
               No value
               qsig.Extension

           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
               qsig_cmn.EquipmentId

           qsig.cmn.extension  extension
               Unsigned 32-bit integer
               qsig_cmn.T_extension

           qsig.cmn.featureIdentifier  featureIdentifier
               Byte array
               qsig_cmn.FeatureIdList

           qsig.cmn.groupId  groupId
               String
               qsig_cmn.IA5String_SIZE_1_10

           qsig.cmn.multiple  multiple
               Unsigned 32-bit integer
               qsig_cmn.SEQUENCE_OF_Extension

           qsig.cmn.nodeId  nodeId
               String
               qsig_cmn.IA5String_SIZE_1_10

           qsig.cmn.null  null
               No value
               qsig_cmn.NULL

           qsig.cmn.partyCategory  partyCategory
               Unsigned 32-bit integer
               qsig_cmn.PartyCategory

           qsig.cmn.reserved  reserved
               Boolean

           qsig.cmn.single  single
               No value
               qsig.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
               qsig_cmn.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
               qsig_cmn.INTEGER_0_3

           qsig.cmn.ssSSCTreRoutingSupported  ssSSCTreRoutingSupported
               Boolean

           qsig.cmn.unitId  unitId
               String
               qsig_cmn.IA5String_SIZE_1_10

           qsig.co.DummyArg  DummyArg
               Unsigned 32-bit integer
               qsig_co.DummyArg

           qsig.co.DummyRes  DummyRes
               Unsigned 32-bit integer
               qsig_co.DummyRes

           qsig.co.Extension  Extension
               No value
               qsig.Extension

           qsig.co.PathRetainArg  PathRetainArg
               Unsigned 32-bit integer
               qsig_co.PathRetainArg

           qsig.co.ServiceAvailableArg  ServiceAvailableArg
               Unsigned 32-bit integer
               qsig_co.ServiceAvailableArg

           qsig.co.callOffer  callOffer
               Boolean

           qsig.co.extendedServiceList  extendedServiceList
               No value
               qsig_co.T_extendedServiceList

           qsig.co.extension  extension
               No value
               qsig.Extension

           qsig.co.null  null
               No value
               qsig_co.NULL

           qsig.co.sequenceOfExtn  sequenceOfExtn
               Unsigned 32-bit integer
               qsig_co.SEQUENCE_OF_Extension

           qsig.co.serviceList  serviceList
               Byte array
               qsig_co.ServiceList

           qsig.cpi.CPIPRequestArg  CPIPRequestArg
               No value
               qsig_cpi.CPIPRequestArg

           qsig.cpi.CPIRequestArg  CPIRequestArg
               No value
               qsig_cpi.CPIRequestArg

           qsig.cpi.Extension  Extension
               No value
               qsig.Extension

           qsig.cpi.argumentExtension  argumentExtension
               Unsigned 32-bit integer
               qsig_cpi.T_argumentExtension

           qsig.cpi.cpiCapabilityLevel  cpiCapabilityLevel
               Unsigned 32-bit integer
               qsig_cpi.CPICapabilityLevel

           qsig.cpi.cpiProtectionLevel  cpiProtectionLevel
               Unsigned 32-bit integer
               qsig_cpi.CPIProtectionLevel

           qsig.cpi.extension  extension
               No value
               qsig.Extension

           qsig.cpi.sequenceOfExtn  sequenceOfExtn
               Unsigned 32-bit integer
               qsig_cpi.SEQUENCE_OF_Extension

           qsig.ct.CTActiveArg  CTActiveArg
               No value
               qsig_ct.CTActiveArg

           qsig.ct.CTCompleteArg  CTCompleteArg
               No value
               qsig_ct.CTCompleteArg

           qsig.ct.CTIdentifyRes  CTIdentifyRes
               No value
               qsig_ct.CTIdentifyRes

           qsig.ct.CTInitiateArg  CTInitiateArg
               No value
               qsig_ct.CTInitiateArg

           qsig.ct.CTSetupArg  CTSetupArg
               No value
               qsig_ct.CTSetupArg

           qsig.ct.CTUpdateArg  CTUpdateArg
               No value
               qsig_ct.CTUpdateArg

           qsig.ct.DummyArg  DummyArg
               Unsigned 32-bit integer
               qsig_ct.DummyArg

           qsig.ct.DummyRes  DummyRes
               Unsigned 32-bit integer
               qsig_ct.DummyRes

           qsig.ct.Extension  Extension
               No value
               qsig.Extension

           qsig.ct.SubaddressTransferArg  SubaddressTransferArg
               No value
               qsig_ct.SubaddressTransferArg

           qsig.ct.argumentExtension  argumentExtension
               Unsigned 32-bit integer
               qsig_ct.CTIargumentExtension

           qsig.ct.basicCallInfoElements  basicCallInfoElements
               Byte array
               qsig.PSS1InformationElement

           qsig.ct.callIdentity  callIdentity
               String
               qsig_ct.CallIdentity

           qsig.ct.callStatus  callStatus
               Unsigned 32-bit integer
               qsig_ct.CallStatus

           qsig.ct.connectedAddress  connectedAddress
               Unsigned 32-bit integer
               qsig.PresentedAddressScreened

           qsig.ct.connectedName  connectedName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.ct.endDesignation  endDesignation
               Unsigned 32-bit integer
               qsig_ct.EndDesignation

           qsig.ct.multiple  multiple
               Unsigned 32-bit integer
               qsig_ct.SEQUENCE_OF_Extension

           qsig.ct.null  null
               No value
               qsig_ct.NULL

           qsig.ct.redirectionName  redirectionName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.ct.redirectionNumber  redirectionNumber
               Unsigned 32-bit integer
               qsig.PresentedNumberScreened

           qsig.ct.redirectionSubaddress  redirectionSubaddress
               Unsigned 32-bit integer
               qsig.PartySubaddress

           qsig.ct.rerouteingNumber  rerouteingNumber
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.ct.resultExtension  resultExtension
               Unsigned 32-bit integer
               qsig_ct.T_resultExtension

           qsig.ct.single  single
               No value
               qsig.Extension

           qsig.dataPartyNumber  dataPartyNumber
               String
               qsig.NumberDigits

           qsig.dnd.DNDActivateArg  DNDActivateArg
               No value
               qsig_dnd.DNDActivateArg

           qsig.dnd.DNDActivateRes  DNDActivateRes
               No value
               qsig_dnd.DNDActivateRes

           qsig.dnd.DNDDeactivateArg  DNDDeactivateArg
               No value
               qsig_dnd.DNDDeactivateArg

           qsig.dnd.DNDInterrogateArg  DNDInterrogateArg
               No value
               qsig_dnd.DNDInterrogateArg

           qsig.dnd.DNDInterrogateRes  DNDInterrogateRes
               No value
               qsig_dnd.DNDInterrogateRes

           qsig.dnd.DNDOverrideArg  DNDOverrideArg
               No value
               qsig_dnd.DNDOverrideArg

           qsig.dnd.DummyArg  DummyArg
               Unsigned 32-bit integer
               qsig_dnd.DummyArg

           qsig.dnd.DummyRes  DummyRes
               Unsigned 32-bit integer
               qsig_dnd.DummyRes

           qsig.dnd.Extension  Extension
               No value
               qsig.Extension

           qsig.dnd.PathRetainArg  PathRetainArg
               Unsigned 32-bit integer
               qsig_dnd.PathRetainArg

           qsig.dnd.ServiceAvailableArg  ServiceAvailableArg
               Unsigned 32-bit integer
               qsig_dnd.ServiceAvailableArg

           qsig.dnd.argumentExtension  argumentExtension
               Unsigned 32-bit integer
               qsig_dnd.DNDAargumentExtension

           qsig.dnd.basicService  basicService
               Unsigned 32-bit integer
               qsig_cf.BasicService

           qsig.dnd.dndProtectionLevel  dndProtectionLevel
               Unsigned 32-bit integer
               qsig_dnd.DNDProtectionLevel

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

           qsig.dnd.extendedServiceList  extendedServiceList
               No value
               qsig_dnd.T_extendedServiceList

           qsig.dnd.extension  extension
               No value
               qsig.Extension

           qsig.dnd.null  null
               No value
               qsig_dnd.NULL

           qsig.dnd.resultExtension  resultExtension
               Unsigned 32-bit integer
               qsig_dnd.T_resultExtension

           qsig.dnd.sequenceOfExtn  sequenceOfExtn
               Unsigned 32-bit integer
               qsig_dnd.SEQUENCE_OF_Extension

           qsig.dnd.servedUserNr  servedUserNr
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.dnd.serviceList  serviceList
               Byte array
               qsig_dnd.ServiceList

           qsig.dnd.status  status
               Unsigned 32-bit integer
               qsig_dnd.T_status

           qsig.dnd.status_item  status item
               No value
               qsig_dnd.T_status_item

           qsig.error  Error
               Unsigned 8-bit integer
               Error

           qsig.extensionArgument  extensionArgument
               No value
               qsig.T_extensionArgument

           qsig.extensionId  extensionId
               Object Identifier
               qsig.T_extensionId

           qsig.ie.data  Data
               Byte array
               Data

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

           qsig.mcm.Extension  Extension
               No value
               qsig.Extension

           qsig.mcm.MCMDummyRes  MCMDummyRes
               Unsigned 32-bit integer
               qsig_mcm.MCMDummyRes

           qsig.mcm.MCMInterrogateArg  MCMInterrogateArg
               No value
               qsig_mcm.MCMInterrogateArg

           qsig.mcm.MCMInterrogateRes  MCMInterrogateRes
               No value
               qsig_mcm.MCMInterrogateRes

           qsig.mcm.MCMNewMsgArg  MCMNewMsgArg
               No value
               qsig_mcm.MCMNewMsgArg

           qsig.mcm.MCMNoNewMsgArg  MCMNoNewMsgArg
               No value
               qsig_mcm.MCMNoNewMsgArg

           qsig.mcm.MCMServiceArg  MCMServiceArg
               No value
               qsig_mcm.MCMServiceArg

           qsig.mcm.MCMServiceInfo  MCMServiceInfo
               No value
               qsig_mcm.MCMServiceInfo

           qsig.mcm.MCMUpdateArg  MCMUpdateArg
               No value
               qsig_mcm.MCMUpdateArg

           qsig.mcm.MCMUpdateReqArg  MCMUpdateReqArg
               No value
               qsig_mcm.MCMUpdateReqArg

           qsig.mcm.MCMUpdateReqRes  MCMUpdateReqRes
               Unsigned 32-bit integer
               qsig_mcm.MCMUpdateReqRes

           qsig.mcm.MCMUpdateReqResElt  MCMUpdateReqResElt
               No value
               qsig_mcm.MCMUpdateReqResElt

           qsig.mcm.MCMailboxFullArg  MCMailboxFullArg
               No value
               qsig_mcm.MCMailboxFullArg

           qsig.mcm.MailboxFullPar  MailboxFullPar
               No value
               qsig_mcm.MailboxFullPar

           qsig.mcm.MessageType  MessageType
               Unsigned 32-bit integer
               qsig_mcm.MessageType

           qsig.mcm.activateMCM  activateMCM
               Unsigned 32-bit integer
               qsig_mcm.SEQUENCE_OF_MCMServiceInfo

           qsig.mcm.allMsgInfo  allMsgInfo
               No value
               qsig_mcm.AllMsgInfo

           qsig.mcm.argumentExt  argumentExt
               Unsigned 32-bit integer
               qsig_mcm.MCMNewArgumentExt

           qsig.mcm.capacityReached  capacityReached
               Unsigned 32-bit integer
               qsig_mcm.INTEGER_0_100

           qsig.mcm.completeInfo  completeInfo
               Unsigned 32-bit integer
               qsig_mcm.CompleteInfo

           qsig.mcm.compressedInfo  compressedInfo
               No value
               qsig_mcm.CompressedInfo

           qsig.mcm.deactivateMCM  deactivateMCM
               Unsigned 32-bit integer
               qsig_mcm.SEQUENCE_OF_MessageType

           qsig.mcm.extension  extension
               No value
               qsig.Extension

           qsig.mcm.extensions  extensions
               Unsigned 32-bit integer
               qsig_mcm.MCMExtensions

           qsig.mcm.highestPriority  highestPriority
               Unsigned 32-bit integer
               qsig_mcm.Priority

           qsig.mcm.integer  integer
               Unsigned 32-bit integer
               qsig_mcm.INTEGER_0_65535

           qsig.mcm.interrogateInfo  interrogateInfo
               Unsigned 32-bit integer
               qsig_mcm.SEQUENCE_OF_MessageType

           qsig.mcm.interrogateResult  interrogateResult
               Unsigned 32-bit integer
               qsig_mcm.SEQUENCE_OF_MCMServiceInfo

           qsig.mcm.lastTimeStamp  lastTimeStamp
               String
               qsig_mcm.TimeStamp

           qsig.mcm.mCMChange  mCMChange
               Unsigned 32-bit integer
               qsig_mcm.MCMChange

           qsig.mcm.mCMModeNew  mCMModeNew
               Signed 32-bit integer
               qsig_mcm.MCMMode

           qsig.mcm.mCMModeRetrieved  mCMModeRetrieved
               Signed 32-bit integer
               qsig_mcm.MCMMode

           qsig.mcm.mailboxFullFor  mailboxFullFor
               Unsigned 32-bit integer
               qsig_mcm.MailboxFullFor

           qsig.mcm.messageCentreID  messageCentreID
               Unsigned 32-bit integer
               qsig_mcm.MsgCentreId

           qsig.mcm.messageType  messageType
               Unsigned 32-bit integer
               qsig_mcm.MessageType

           qsig.mcm.moreInfoFollows  moreInfoFollows
               Boolean
               qsig_mcm.BOOLEAN

           qsig.mcm.msgCentreId  msgCentreId
               Unsigned 32-bit integer
               qsig_mcm.MsgCentreId

           qsig.mcm.multipleExtension  multipleExtension
               Unsigned 32-bit integer
               qsig_mcm.SEQUENCE_OF_Extension

           qsig.mcm.newMsgInfo  newMsgInfo
               Unsigned 32-bit integer
               qsig_mcm.MessageInfo

           qsig.mcm.newMsgInfoOnly  newMsgInfoOnly
               Unsigned 32-bit integer
               qsig_mcm.MessageInfo

           qsig.mcm.noMsgsOfMsgType  noMsgsOfMsgType
               No value
               qsig_mcm.NULL

           qsig.mcm.none  none
               No value
               qsig_mcm.NULL

           qsig.mcm.nrOfMessages  nrOfMessages
               Unsigned 32-bit integer
               qsig_mcm.NrOfMessages

           qsig.mcm.numericString  numericString
               String
               qsig_mcm.NumericString_SIZE_1_10

           qsig.mcm.originatingNr  originatingNr
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.mcm.originatorNr  originatorNr
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.mcm.partyInfo  partyInfo
               No value
               qsig_mcm.PartyInfo

           qsig.mcm.partyNumber  partyNumber
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.mcm.priority  priority
               Unsigned 32-bit integer
               qsig_mcm.INTEGER_0_9

           qsig.mcm.retrievedMsgInfo  retrievedMsgInfo
               Unsigned 32-bit integer
               qsig_mcm.MessageInfo

           qsig.mcm.retrievedMsgInfoOnly  retrievedMsgInfoOnly
               Unsigned 32-bit integer
               qsig_mcm.MessageInfo

           qsig.mcm.servedUserNr  servedUserNr
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.mcm.setToDefaultValues  setToDefaultValues
               No value
               qsig_mcm.NULL

           qsig.mcm.specificMessageType  specificMessageType
               Unsigned 32-bit integer
               qsig_mcm.MessageType

           qsig.mcm.timeStamp  timeStamp
               String
               qsig_mcm.TimeStamp

           qsig.mcm.timestamp  timestamp
               String
               qsig_mcm.TimeStamp

           qsig.mcm.updateInfo  updateInfo
               Unsigned 32-bit integer
               qsig_mcm.UpdateInfo

           qsig.mcr.Extension  Extension
               No value
               qsig.Extension

           qsig.mcr.MCAlertingArg  MCAlertingArg
               No value
               qsig_mcr.MCAlertingArg

           qsig.mcr.MCInformArg  MCInformArg
               No value
               qsig_mcr.MCInformArg

           qsig.mcr.MCRequestArg  MCRequestArg
               No value
               qsig_mcr.MCRequestArg

           qsig.mcr.MCRequestResult  MCRequestResult
               No value
               qsig_mcr.MCRequestResult

           qsig.mcr.basicService  basicService
               Unsigned 32-bit integer
               qsig_cf.BasicService

           qsig.mcr.callType  callType
               Unsigned 32-bit integer
               qsig_mcr.CallType

           qsig.mcr.cisc  cisc
               No value
               qsig_mcr.NULL

           qsig.mcr.cooperatingAddress  cooperatingAddress
               Unsigned 32-bit integer
               qsig.PresentedAddressUnscreened

           qsig.mcr.correlation  correlation
               No value
               qsig_mcr.Correlation

           qsig.mcr.correlationData  correlationData
               String
               qsig_pr.CallIdentity

           qsig.mcr.correlationReason  correlationReason
               Unsigned 32-bit integer
               qsig_mcr.CorrelationReason

           qsig.mcr.destinationAddress  destinationAddress
               Unsigned 32-bit integer
               qsig.PresentedAddressUnscreened

           qsig.mcr.extensions  extensions
               Unsigned 32-bit integer
               qsig_mcr.MCRExtensions

           qsig.mcr.multiple  multiple
               Unsigned 32-bit integer
               qsig_mcr.SEQUENCE_OF_Extension

           qsig.mcr.none  none
               No value
               qsig_mcr.NULL

           qsig.mcr.requestingAddress  requestingAddress
               Unsigned 32-bit integer
               qsig.PresentedAddressUnscreened

           qsig.mcr.retainOrigCall  retainOrigCall
               Boolean
               qsig_mcr.BOOLEAN

           qsig.mcr.single  single
               No value
               qsig.Extension

           qsig.mid.Extension  Extension
               No value
               qsig.Extension

           qsig.mid.MIDDummyRes  MIDDummyRes
               Unsigned 32-bit integer
               qsig_mid.MIDDummyRes

           qsig.mid.MIDMailboxAuthArg  MIDMailboxAuthArg
               No value
               qsig_mid.MIDMailboxAuthArg

           qsig.mid.MIDMailboxIDArg  MIDMailboxIDArg
               No value
               qsig_mid.MIDMailboxIDArg

           qsig.mid.extension  extension
               No value
               qsig.Extension

           qsig.mid.extensions  extensions
               Unsigned 32-bit integer
               qsig_mid.MIDExtensions

           qsig.mid.mailBox  mailBox
               Unsigned 32-bit integer
               qsig_mid.String

           qsig.mid.messageCentreID  messageCentreID
               Unsigned 32-bit integer
               qsig_mcm.MsgCentreId

           qsig.mid.messageType  messageType
               Unsigned 32-bit integer
               qsig_mcm.MessageType

           qsig.mid.multipleExtension  multipleExtension
               Unsigned 32-bit integer
               qsig_mid.SEQUENCE_OF_Extension

           qsig.mid.none  none
               No value
               qsig_mid.NULL

           qsig.mid.partyInfo  partyInfo
               No value
               qsig_mid.PartyInfo

           qsig.mid.password  password
               Unsigned 32-bit integer
               qsig_mid.String

           qsig.mid.servedUserName  servedUserName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.mid.servedUserNr  servedUserNr
               Unsigned 32-bit integer
               qsig.PresentedAddressUnscreened

           qsig.mid.stringBmp  stringBmp
               String
               qsig_mid.BMPString

           qsig.mid.stringUtf8  stringUtf8
               String
               qsig_mid.UTF8String

           qsig.nSAPSubaddress  nSAPSubaddress
               Byte array
               qsig.NSAPSubaddress

           qsig.na.Extension  Extension
               No value
               qsig.Extension

           qsig.na.NameArg  NameArg
               Unsigned 32-bit integer
               qsig_na.NameArg

           qsig.na.characterSet  characterSet
               Unsigned 32-bit integer
               qsig_na.CharacterSet

           qsig.na.extension  extension
               Unsigned 32-bit integer
               qsig_na.NameExtension

           qsig.na.multiple  multiple
               Unsigned 32-bit integer
               qsig_na.SEQUENCE_OF_Extension

           qsig.na.name  name
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.na.nameData  nameData
               String
               qsig_na.NameData

           qsig.na.nameNotAvailable  nameNotAvailable
               No value
               qsig_na.NameNotAvailable

           qsig.na.namePresentationAllowed  namePresentationAllowed
               Unsigned 32-bit integer
               qsig_na.NamePresentationAllowed

           qsig.na.namePresentationAllowedExtended  namePresentationAllowedExtended
               No value
               qsig_na.NameSet

           qsig.na.namePresentationAllowedSimple  namePresentationAllowedSimple
               String
               qsig_na.NameData

           qsig.na.namePresentationRestricted  namePresentationRestricted
               Unsigned 32-bit integer
               qsig_na.NamePresentationRestricted

           qsig.na.namePresentationRestrictedExtended  namePresentationRestrictedExtended
               No value
               qsig_na.NameSet

           qsig.na.namePresentationRestrictedNull  namePresentationRestrictedNull
               No value
               qsig_na.NULL

           qsig.na.namePresentationRestrictedSimple  namePresentationRestrictedSimple
               String
               qsig_na.NameData

           qsig.na.nameSequence  nameSequence
               No value
               qsig_na.T_nameSequence

           qsig.na.single  single
               No value
               qsig.Extension

           qsig.nationalStandardPartyNumber  nationalStandardPartyNumber
               String
               qsig.NumberDigits

           qsig.numberNotAvailableDueToInterworking  numberNotAvailableDueToInterworking
               No value
               qsig.NULL

           qsig.oddCountIndicator  oddCountIndicator
               Boolean
               qsig.BOOLEAN

           qsig.operation  Operation
               Unsigned 8-bit integer
               Operation

           qsig.partyNumber  partyNumber
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.partySubaddress  partySubaddress
               Unsigned 32-bit integer
               qsig.PartySubaddress

           qsig.pc  Party category
               Unsigned 8-bit integer
               Party category

           qsig.pr.DummyArg  DummyArg
               Unsigned 32-bit integer
               qsig_pr.DummyArg

           qsig.pr.DummyResult  DummyResult
               Unsigned 32-bit integer
               qsig_pr.DummyResult

           qsig.pr.Extension  Extension
               No value
               qsig.Extension

           qsig.pr.PRProposeArg  PRProposeArg
               No value
               qsig_pr.PRProposeArg

           qsig.pr.PRRetainArg  PRRetainArg
               No value
               qsig_pr.PRRetainArg

           qsig.pr.PRSetupArg  PRSetupArg
               No value
               qsig_pr.PRSetupArg

           qsig.pr.callIdentity  callIdentity
               String
               qsig_pr.CallIdentity

           qsig.pr.extension  extension
               Unsigned 32-bit integer
               qsig_pr.PRPExtension

           qsig.pr.multiple  multiple
               Unsigned 32-bit integer
               qsig_pr.SEQUENCE_OF_Extension

           qsig.pr.null  null
               No value
               qsig_pr.NULL

           qsig.pr.rerouteingNumber  rerouteingNumber
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.pr.single  single
               No value
               qsig.Extension

           qsig.presentationAllowedAddressNS  presentationAllowedAddressNS
               No value
               qsig.NumberScreened

           qsig.presentationAllowedAddressNU  presentationAllowedAddressNU
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.presentationAllowedAddressS  presentationAllowedAddressS
               No value
               qsig.AddressScreened

           qsig.presentationAllowedAddressU  presentationAllowedAddressU
               No value
               qsig.Address

           qsig.presentationRestricted  presentationRestricted
               No value
               qsig.NULL

           qsig.presentationRestrictedAddressNS  presentationRestrictedAddressNS
               No value
               qsig.NumberScreened

           qsig.presentationRestrictedAddressNU  presentationRestrictedAddressNU
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.presentationRestrictedAddressS  presentationRestrictedAddressS
               No value
               qsig.AddressScreened

           qsig.presentationRestrictedAddressU  presentationRestrictedAddressU
               No value
               qsig.Address

           qsig.privateNumberDigits  privateNumberDigits
               String
               qsig.NumberDigits

           qsig.privatePartyNumber  privatePartyNumber
               No value
               qsig.PrivatePartyNumber

           qsig.privateTypeOfNumber  privateTypeOfNumber
               Unsigned 32-bit integer
               qsig.PrivateTypeOfNumber

           qsig.publicNumberDigits  publicNumberDigits
               String
               qsig.NumberDigits

           qsig.publicPartyNumber  publicPartyNumber
               No value
               qsig.PublicPartyNumber

           qsig.publicTypeOfNumber  publicTypeOfNumber
               Unsigned 32-bit integer
               qsig.PublicTypeOfNumber

           qsig.pumch.DivertArg  DivertArg
               No value
               qsig_pumch.DivertArg

           qsig.pumch.DummyRes  DummyRes
               Unsigned 32-bit integer
               qsig_pumch.DummyRes

           qsig.pumch.EnquiryArg  EnquiryArg
               No value
               qsig_pumch.EnquiryArg

           qsig.pumch.EnquiryRes  EnquiryRes
               Unsigned 32-bit integer
               qsig_pumch.EnquiryRes

           qsig.pumch.Extension  Extension
               No value
               qsig.Extension

           qsig.pumch.InformArg  InformArg
               No value
               qsig_pumch.InformArg

           qsig.pumch.PumoArg  PumoArg
               No value
               qsig_pumch.PumoArg

           qsig.pumch.alternativeId  alternativeId
               Byte array
               qsig_pumch.AlternativeId

           qsig.pumch.argExtension  argExtension
               Unsigned 32-bit integer
               qsig_pumch.PumiExtension

           qsig.pumch.both  both
               No value
               qsig_pumch.T_both

           qsig.pumch.callingNumber  callingNumber
               Unsigned 32-bit integer
               qsig.PresentedNumberScreened

           qsig.pumch.callingUserName  callingUserName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.pumch.callingUserSub  callingUserSub
               Unsigned 32-bit integer
               qsig.PartySubaddress

           qsig.pumch.cfuActivated  cfuActivated
               No value
               qsig_pumch.CfuActivated

           qsig.pumch.currLocation  currLocation
               No value
               qsig_pumch.CurrLocation

           qsig.pumch.destinationNumber  destinationNumber
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.pumch.divOptions  divOptions
               Unsigned 32-bit integer
               qsig_pumch.SubscriptionOption

           qsig.pumch.divToAddress  divToAddress
               No value
               qsig.Address

           qsig.pumch.extension  extension
               No value
               qsig.Extension

           qsig.pumch.hostingAddr  hostingAddr
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.pumch.multiple  multiple
               Unsigned 32-bit integer
               qsig_pumch.SEQUENCE_OF_Extension

           qsig.pumch.null  null
               No value
               qsig_pumch.NULL

           qsig.pumch.pisnNumber  pisnNumber
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.pumch.pumIdentity  pumIdentity
               Unsigned 32-bit integer
               qsig_pumch.PumIdentity

           qsig.pumch.pumName  pumName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.pumch.pumUserSub  pumUserSub
               Unsigned 32-bit integer
               qsig.PartySubaddress

           qsig.pumch.qSIGInfoElement  qSIGInfoElement
               Byte array
               qsig.PSS1InformationElement

           qsig.pumch.sendingComplete  sendingComplete
               No value
               qsig_pumch.NULL

           qsig.pumch.sequOfExtn  sequOfExtn
               Unsigned 32-bit integer
               qsig_pumch.SEQUENCE_OF_Extension

           qsig.pumch.single  single
               No value
               qsig.Extension

           qsig.pumr.DummyRes  DummyRes
               Unsigned 32-bit integer
               qsig_pumr.DummyRes

           qsig.pumr.Extension  Extension
               No value
               qsig.Extension

           qsig.pumr.PumDe_regArg  PumDe-regArg
               No value
               qsig_pumr.PumDe_regArg

           qsig.pumr.PumDelRegArg  PumDelRegArg
               No value
               qsig_pumr.PumDelRegArg

           qsig.pumr.PumInterrogArg  PumInterrogArg
               No value
               qsig_pumr.PumInterrogArg

           qsig.pumr.PumInterrogRes  PumInterrogRes
               Unsigned 32-bit integer
               qsig_pumr.PumInterrogRes

           qsig.pumr.PumInterrogRes_item  PumInterrogRes item
               No value
               qsig_pumr.PumInterrogRes_item

           qsig.pumr.PumRegistrArg  PumRegistrArg
               No value
               qsig_pumr.PumRegistrArg

           qsig.pumr.PumRegistrRes  PumRegistrRes
               No value
               qsig_pumr.PumRegistrRes

           qsig.pumr.activatingUserAddr  activatingUserAddr
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.pumr.activatingUserPin  activatingUserPin
               Byte array
               qsig_pumr.UserPin

           qsig.pumr.alternativeId  alternativeId
               Byte array
               qsig_pumr.AlternativeId

           qsig.pumr.argExtension  argExtension
               Unsigned 32-bit integer
               qsig_pumr.PumrExtension

           qsig.pumr.basicService  basicService
               Unsigned 32-bit integer
               qsig_cf.BasicService

           qsig.pumr.durationOfSession  durationOfSession
               Signed 32-bit integer
               qsig_pumr.INTEGER

           qsig.pumr.extension  extension
               No value
               qsig.Extension

           qsig.pumr.homeInfoOnly  homeInfoOnly
               Boolean
               qsig_pumr.BOOLEAN

           qsig.pumr.hostingAddr  hostingAddr
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.pumr.interrogParams  interrogParams
               No value
               qsig_pumr.SessionParams

           qsig.pumr.null  null
               No value
               qsig_pumr.NULL

           qsig.pumr.numberOfOutgCalls  numberOfOutgCalls
               Signed 32-bit integer
               qsig_pumr.INTEGER

           qsig.pumr.pumNumber  pumNumber
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.pumr.pumUserId  pumUserId
               Unsigned 32-bit integer
               qsig_pumr.RpumUserId

           qsig.pumr.pumUserPin  pumUserPin
               Byte array
               qsig_pumr.UserPin

           qsig.pumr.sequOfExtn  sequOfExtn
               Unsigned 32-bit integer
               qsig_pumr.SEQUENCE_OF_Extension

           qsig.pumr.serviceOption  serviceOption
               Unsigned 32-bit integer
               qsig_pumr.ServiceOption

           qsig.pumr.sessionParams  sessionParams
               No value
               qsig_pumr.SessionParams

           qsig.pumr.userPin  userPin
               Unsigned 32-bit integer
               qsig_pumr.T_userPin

           qsig.re.Extension  Extension
               No value
               qsig.Extension

           qsig.re.ReAlertingArg  ReAlertingArg
               No value
               qsig_re.ReAlertingArg

           qsig.re.ReAnswerArg  ReAnswerArg
               No value
               qsig_re.ReAnswerArg

           qsig.re.alertedName  alertedName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.re.alertedNumber  alertedNumber
               Unsigned 32-bit integer
               qsig.PresentedNumberScreened

           qsig.re.argumentExtension  argumentExtension
               Unsigned 32-bit integer
               qsig_re.T_argumentExtension

           qsig.re.connectedName  connectedName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.re.connectedNumber  connectedNumber
               Unsigned 32-bit integer
               qsig.PresentedNumberScreened

           qsig.re.connectedSubaddress  connectedSubaddress
               Unsigned 32-bit integer
               qsig.PartySubaddress

           qsig.re.extension  extension
               No value
               qsig.Extension

           qsig.re.multipleExtension  multipleExtension
               Unsigned 32-bit integer
               qsig_re.SEQUENCE_OF_Extension

           qsig.screeningIndicator  screeningIndicator
               Unsigned 32-bit integer
               qsig.ScreeningIndicator

           qsig.sd.DisplayArg  DisplayArg
               No value
               qsig_sd.DisplayArg

           qsig.sd.Extension  Extension
               No value
               qsig.Extension

           qsig.sd.KeypadArg  KeypadArg
               No value
               qsig_sd.KeypadArg

           qsig.sd.displayString  displayString
               Unsigned 32-bit integer
               qsig_sd.DisplayString

           qsig.sd.displayStringExtended  displayStringExtended
               Byte array
               qsig_sd.BMPStringExtended

           qsig.sd.displayStringNormal  displayStringNormal
               Byte array
               qsig_sd.BMPStringNormal

           qsig.sd.extension  extension
               Unsigned 32-bit integer
               qsig_sd.SDExtension

           qsig.sd.keypadString  keypadString
               Byte array
               qsig_sd.BMPStringNormal

           qsig.sd.multipleExtension  multipleExtension
               Unsigned 32-bit integer
               qsig_sd.SEQUENCE_OF_Extension

           qsig.service  Service
               Unsigned 8-bit integer
               Supplementary Service

           qsig.sms.DummyRes  DummyRes
               Unsigned 32-bit integer
               qsig_sms.DummyRes

           qsig.sms.Extension  Extension
               No value
               qsig.Extension

           qsig.sms.PAR_smsCommandError  PAR-smsCommandError
               No value
               qsig_sms.PAR_smsCommandError

           qsig.sms.PAR_smsDeliverError  PAR-smsDeliverError
               No value
               qsig_sms.PAR_smsDeliverError

           qsig.sms.PAR_smsStatusReportError  PAR-smsStatusReportError
               No value
               qsig_sms.PAR_smsStatusReportError

           qsig.sms.PAR_smsSubmitError  PAR-smsSubmitError
               No value
               qsig_sms.PAR_smsSubmitError

           qsig.sms.ScAlertArg  ScAlertArg
               No value
               qsig_sms.ScAlertArg

           qsig.sms.SmsCommandArg  SmsCommandArg
               No value
               qsig_sms.SmsCommandArg

           qsig.sms.SmsCommandRes  SmsCommandRes
               No value
               qsig_sms.SmsCommandRes

           qsig.sms.SmsDeliverArg  SmsDeliverArg
               No value
               qsig_sms.SmsDeliverArg

           qsig.sms.SmsDeliverRes  SmsDeliverRes
               No value
               qsig_sms.SmsDeliverRes

           qsig.sms.SmsExtension  SmsExtension
               Unsigned 32-bit integer
               qsig_sms.SmsExtension

           qsig.sms.SmsStatusReportArg  SmsStatusReportArg
               No value
               qsig_sms.SmsStatusReportArg

           qsig.sms.SmsStatusReportRes  SmsStatusReportRes
               No value
               qsig_sms.SmsStatusReportRes

           qsig.sms.SmsSubmitArg  SmsSubmitArg
               No value
               qsig_sms.SmsSubmitArg

           qsig.sms.SmsSubmitRes  SmsSubmitRes
               No value
               qsig_sms.SmsSubmitRes

           qsig.sms.UserDataHeaderChoice  UserDataHeaderChoice
               Unsigned 32-bit integer
               qsig_sms.UserDataHeaderChoice

           qsig.sms.applicationPort16BitHeader  applicationPort16BitHeader
               No value
               qsig_sms.ApplicationPort16BitHeader

           qsig.sms.applicationPort8BitHeader  applicationPort8BitHeader
               No value
               qsig_sms.ApplicationPort8BitHeader

           qsig.sms.cancelSRRforConcatenatedSM  cancelSRRforConcatenatedSM
               Boolean

           qsig.sms.class  class
               Unsigned 32-bit integer
               qsig_sms.INTEGER_0_3

           qsig.sms.commandData  commandData
               Byte array
               qsig_sms.CommandData

           qsig.sms.commandType  commandType
               Unsigned 32-bit integer
               qsig_sms.CommandType

           qsig.sms.compressed  compressed
               Boolean
               qsig_sms.BOOLEAN

           qsig.sms.concatenated16BitSMHeader  concatenated16BitSMHeader
               No value
               qsig_sms.Concatenated16BitSMHeader

           qsig.sms.concatenated16BitSMReferenceNumber  concatenated16BitSMReferenceNumber
               Unsigned 32-bit integer
               qsig_sms.INTEGER_0_65536

           qsig.sms.concatenated8BitSMHeader  concatenated8BitSMHeader
               No value
               qsig_sms.Concatenated8BitSMHeader

           qsig.sms.concatenated8BitSMReferenceNumber  concatenated8BitSMReferenceNumber
               Unsigned 32-bit integer
               qsig_sms.INTEGER_0_255

           qsig.sms.dataHeaderSourceIndicator  dataHeaderSourceIndicator
               Unsigned 32-bit integer
               qsig_sms.DataHeaderSourceIndicator

           qsig.sms.destination16BitPort  destination16BitPort
               Unsigned 32-bit integer
               qsig_sms.INTEGER_0_65536

           qsig.sms.destination8BitPort  destination8BitPort
               Unsigned 32-bit integer
               qsig_sms.INTEGER_0_255

           qsig.sms.destinationAddress  destinationAddress
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.sms.dischargeTime  dischargeTime
               String
               qsig_sms.DischargeTime

           qsig.sms.enhancedVP  enhancedVP
               Unsigned 32-bit integer
               qsig_sms.EnhancedVP

           qsig.sms.failureCause  failureCause
               Unsigned 32-bit integer
               qsig_sms.FailureCause

           qsig.sms.genericUserData  genericUserData
               Byte array
               qsig_sms.OCTET_STRING

           qsig.sms.genericUserValue  genericUserValue
               No value
               qsig_sms.GenericUserValue

           qsig.sms.includeOrigUDHintoSR  includeOrigUDHintoSR
               Boolean

           qsig.sms.maximumNumberOf16BitSMInConcatenatedSM  maximumNumberOf16BitSMInConcatenatedSM
               Unsigned 32-bit integer
               qsig_sms.INTEGER_0_255

           qsig.sms.maximumNumberOf8BitSMInConcatenatedSM  maximumNumberOf8BitSMInConcatenatedSM
               Unsigned 32-bit integer
               qsig_sms.INTEGER_0_255

           qsig.sms.messageNumber  messageNumber
               Unsigned 32-bit integer
               qsig_sms.MessageReference

           qsig.sms.messageReference  messageReference
               Unsigned 32-bit integer
               qsig_sms.MessageReference

           qsig.sms.moreMessagesToSend  moreMessagesToSend
               Boolean
               qsig_sms.BOOLEAN

           qsig.sms.multiple  multiple
               Unsigned 32-bit integer
               qsig_sms.SEQUENCE_OF_Extension

           qsig.sms.null  null
               No value
               qsig_sms.NULL

           qsig.sms.originatingAddress  originatingAddress
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.sms.originatingName  originatingName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.sms.originator16BitPort  originator16BitPort
               Unsigned 32-bit integer
               qsig_sms.INTEGER_0_65536

           qsig.sms.originator8BitPort  originator8BitPort
               Unsigned 32-bit integer
               qsig_sms.INTEGER_0_255

           qsig.sms.parameterValue  parameterValue
               Unsigned 32-bit integer
               qsig_sms.INTEGER_0_255

           qsig.sms.priority  priority
               Boolean
               qsig_sms.BOOLEAN

           qsig.sms.protocolIdentifier  protocolIdentifier
               Unsigned 32-bit integer
               qsig_sms.ProtocolIdentifier

           qsig.sms.recipientAddress  recipientAddress
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.sms.recipientName  recipientName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.sms.rejectDuplicates  rejectDuplicates
               Boolean
               qsig_sms.BOOLEAN

           qsig.sms.replyPath  replyPath
               Boolean
               qsig_sms.BOOLEAN

           qsig.sms.resChoiceSeq  resChoiceSeq
               No value
               qsig_sms.ResChoiceSeq

           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
               qsig_sms.BOOLEAN

           qsig.sms.sequenceNumberOf16BitSM  sequenceNumberOf16BitSM
               Unsigned 32-bit integer
               qsig_sms.INTEGER_0_255

           qsig.sms.sequenceNumberOf8BitSM  sequenceNumberOf8BitSM
               Unsigned 32-bit integer
               qsig_sms.INTEGER_0_255

           qsig.sms.serviceCentreTimeStamp  serviceCentreTimeStamp
               String
               qsig_sms.ServiceCentreTimeStamp

           qsig.sms.shortMessageText  shortMessageText
               No value
               qsig_sms.ShortMessageText

           qsig.sms.shortMessageTextData  shortMessageTextData
               Byte array
               qsig_sms.ShortMessageTextData

           qsig.sms.shortMessageTextType  shortMessageTextType
               Unsigned 32-bit integer
               qsig_sms.ShortMessageTextType

           qsig.sms.single  single
               No value
               qsig.Extension

           qsig.sms.singleShotSM  singleShotSM
               Boolean
               qsig_sms.BOOLEAN

           qsig.sms.smDeliverParameter  smDeliverParameter
               No value
               qsig_sms.SmDeliverParameter

           qsig.sms.smSubmitParameter  smSubmitParameter
               No value
               qsig_sms.SmSubmitParameter

           qsig.sms.smsDeliverResponseChoice  smsDeliverResponseChoice
               Unsigned 32-bit integer
               qsig_sms.SmsDeliverResChoice

           qsig.sms.smsExtension  smsExtension
               Unsigned 32-bit integer
               qsig_sms.SmsExtension

           qsig.sms.smsStatusReportResponseChoice  smsStatusReportResponseChoice
               Unsigned 32-bit integer
               qsig_sms.SmsStatusReportResponseChoice

           qsig.sms.smscControlParameterHeader  smscControlParameterHeader
               Byte array
               qsig_sms.SmscControlParameterHeader

           qsig.sms.status  status
               Unsigned 32-bit integer
               qsig_sms.Status

           qsig.sms.statusReportIndication  statusReportIndication
               Boolean
               qsig_sms.BOOLEAN

           qsig.sms.statusReportQualifier  statusReportQualifier
               Boolean
               qsig_sms.BOOLEAN

           qsig.sms.statusReportRequest  statusReportRequest
               Boolean
               qsig_sms.BOOLEAN

           qsig.sms.userData  userData
               No value
               qsig_sms.UserData

           qsig.sms.userDataHeader  userDataHeader
               Unsigned 32-bit integer
               qsig_sms.UserDataHeader

           qsig.sms.validityPeriod  validityPeriod
               Unsigned 32-bit integer
               qsig_sms.ValidityPeriod

           qsig.sms.validityPeriodAbs  validityPeriodAbs
               String
               qsig_sms.ValidityPeriodAbs

           qsig.sms.validityPeriodEnh  validityPeriodEnh
               No value
               qsig_sms.ValidityPeriodEnh

           qsig.sms.validityPeriodRel  validityPeriodRel
               Unsigned 32-bit integer
               qsig_sms.ValidityPeriodRel

           qsig.sms.validityPeriodSec  validityPeriodSec
               Unsigned 32-bit integer
               qsig_sms.INTEGER_0_255

           qsig.sms.validityPeriodSemi  validityPeriodSemi
               Byte array
               qsig_sms.ValidityPeriodSemi

           qsig.sms.wirelessControlHeader  wirelessControlHeader
               Byte array
               qsig_sms.WirelessControlHeader

           qsig.ssct.DummyArg  DummyArg
               Unsigned 32-bit integer
               qsig_ssct.DummyArg

           qsig.ssct.DummyRes  DummyRes
               Unsigned 32-bit integer
               qsig_ssct.DummyRes

           qsig.ssct.Extension  Extension
               No value
               qsig.Extension

           qsig.ssct.SSCTDigitInfoArg  SSCTDigitInfoArg
               No value
               qsig_ssct.SSCTDigitInfoArg

           qsig.ssct.SSCTInitiateArg  SSCTInitiateArg
               No value
               qsig_ssct.SSCTInitiateArg

           qsig.ssct.SSCTSetupArg  SSCTSetupArg
               No value
               qsig_ssct.SSCTSetupArg

           qsig.ssct.argumentExtension  argumentExtension
               Unsigned 32-bit integer
               qsig_ssct.SSCTIargumentExtension

           qsig.ssct.awaitConnect  awaitConnect
               Boolean
               qsig_ssct.AwaitConnect

           qsig.ssct.multiple  multiple
               Unsigned 32-bit integer
               qsig_ssct.SEQUENCE_OF_Extension

           qsig.ssct.null  null
               No value
               qsig_ssct.NULL

           qsig.ssct.rerouteingNumber  rerouteingNumber
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.ssct.reroutingNumber  reroutingNumber
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.ssct.sendingComplete  sendingComplete
               No value
               qsig_ssct.NULL

           qsig.ssct.single  single
               No value
               qsig.Extension

           qsig.ssct.transferredAddress  transferredAddress
               Unsigned 32-bit integer
               qsig.PresentedAddressScreened

           qsig.ssct.transferredName  transferredName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.ssct.transferringAddress  transferringAddress
               Unsigned 32-bit integer
               qsig.PresentedAddressScreened

           qsig.ssct.transferringName  transferringName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.subaddressInformation  subaddressInformation
               Byte array
               qsig.SubaddressInformation

           qsig.sync.Extension  Extension
               No value
               qsig.Extension

           qsig.sync.SynchronizationInfoArg  SynchronizationInfoArg
               No value
               qsig_sync.SynchronizationInfoArg

           qsig.sync.SynchronizationReqArg  SynchronizationReqArg
               No value
               qsig_sync.SynchronizationReqArg

           qsig.sync.SynchronizationReqRes  SynchronizationReqRes
               No value
               qsig_sync.SynchronizationReqRes

           qsig.sync.action  action
               Signed 32-bit integer
               qsig_sync.Action

           qsig.sync.argExtension  argExtension
               Unsigned 32-bit integer
               qsig_sync.ArgExtension

           qsig.sync.extension  extension
               No value
               qsig.Extension

           qsig.sync.response  response
               Boolean
               qsig_sync.BOOLEAN

           qsig.sync.sequOfExtn  sequOfExtn
               Unsigned 32-bit integer
               qsig_sync.SEQUENCE_OF_Extension

           qsig.sync.stateinfo  stateinfo
               Signed 32-bit integer
               qsig_sync.T_stateinfo

           qsig.tc  Transit count
               Unsigned 8-bit integer
               Transit count

           qsig.telexPartyNumber  telexPartyNumber
               String
               qsig.NumberDigits

           qsig.unknownPartyNumber  unknownPartyNumber
               String
               qsig.NumberDigits

           qsig.userSpecifiedSubaddress  userSpecifiedSubaddress
               No value
               qsig.UserSpecifiedSubaddress

           qsig.wtmau.ARG_transferAuthParam  ARG-transferAuthParam
               No value
               qsig_wtmau.ARG_transferAuthParam

           qsig.wtmau.AuthWtmArg  AuthWtmArg
               No value
               qsig_wtmau.AuthWtmArg

           qsig.wtmau.AuthWtmRes  AuthWtmRes
               No value
               qsig_wtmau.AuthWtmRes

           qsig.wtmau.CalcWtatInfoUnit  CalcWtatInfoUnit
               No value
               qsig_wtmau.CalcWtatInfoUnit

           qsig.wtmau.Extension  Extension
               No value
               qsig.Extension

           qsig.wtmau.WtanParamArg  WtanParamArg
               No value
               qsig_wtmau.WtanParamArg

           qsig.wtmau.WtanParamRes  WtanParamRes
               No value
               qsig_wtmau.WtanParamRes

           qsig.wtmau.WtatParamArg  WtatParamArg
               No value
               qsig_wtmau.WtatParamArg

           qsig.wtmau.WtatParamRes  WtatParamRes
               No value
               qsig_wtmau.WtatParamRes

           qsig.wtmau.alternativeId  alternativeId
               Byte array
               qsig_wtmau.AlternativeId

           qsig.wtmau.autWtmResValue  autWtmResValue
               Unsigned 32-bit integer
               qsig_wtmau.T_autWtmResValue

           qsig.wtmau.authAlg  authAlg
               Unsigned 32-bit integer
               qsig_wtmau.DefinedIDs

           qsig.wtmau.authAlgorithm  authAlgorithm
               No value
               qsig_wtmau.AuthAlgorithm

           qsig.wtmau.authChallenge  authChallenge
               Byte array
               qsig_wtmau.AuthChallenge

           qsig.wtmau.authKey  authKey
               Byte array
               qsig_wtmau.AuthKey

           qsig.wtmau.authResponse  authResponse
               Byte array
               qsig_wtmau.AuthResponse

           qsig.wtmau.authSessionKey  authSessionKey
               Byte array
               qsig_wtmau.AuthSessionKey

           qsig.wtmau.authSessionKeyInfo  authSessionKeyInfo
               No value
               qsig_wtmau.AuthSessionKeyInfo

           qsig.wtmau.calcWtanInfo  calcWtanInfo
               No value
               qsig_wtmau.CalcWtanInfo

           qsig.wtmau.calcWtatInfo  calcWtatInfo
               Unsigned 32-bit integer
               qsig_wtmau.CalcWtatInfo

           qsig.wtmau.calculationParam  calculationParam
               Byte array
               qsig_wtmau.CalculationParam

           qsig.wtmau.canCompute  canCompute
               No value
               qsig_wtmau.CanCompute

           qsig.wtmau.challLen  challLen
               Unsigned 32-bit integer
               qsig_wtmau.INTEGER_1_8

           qsig.wtmau.derivedCipherKey  derivedCipherKey
               Byte array
               qsig_wtmau.DerivedCipherKey

           qsig.wtmau.dummyExtension  dummyExtension
               Unsigned 32-bit integer
               qsig_wtmau.DummyExtension

           qsig.wtmau.extension  extension
               No value
               qsig.Extension

           qsig.wtmau.param  param
               No value
               qsig_wtmau.T_param

           qsig.wtmau.pisnNumber  pisnNumber
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.wtmau.sequOfExtn  sequOfExtn
               Unsigned 32-bit integer
               qsig_wtmau.SEQUENCE_OF_Extension

           qsig.wtmau.wtanParamInfo  wtanParamInfo
               Unsigned 32-bit integer
               qsig_wtmau.WtanParamInfo

           qsig.wtmau.wtatParamInfo  wtatParamInfo
               No value
               qsig_wtmau.WtatParamInfo

           qsig.wtmau.wtatParamInfoChoice  wtatParamInfoChoice
               Unsigned 32-bit integer
               qsig_wtmau.T_wtatParamInfoChoice

           qsig.wtmau.wtmUserId  wtmUserId
               Unsigned 32-bit integer
               qsig_wtmau.WtmUserId

           qsig.wtmch.DivertArg  DivertArg
               No value
               qsig_wtmch.DivertArg

           qsig.wtmch.DummyRes  DummyRes
               Unsigned 32-bit integer
               qsig_wtmch.DummyRes

           qsig.wtmch.EnquiryArg  EnquiryArg
               No value
               qsig_wtmch.EnquiryArg

           qsig.wtmch.EnquiryRes  EnquiryRes
               Unsigned 32-bit integer
               qsig_wtmch.EnquiryRes

           qsig.wtmch.Extension  Extension
               No value
               qsig.Extension

           qsig.wtmch.InformArg  InformArg
               No value
               qsig_wtmch.InformArg

           qsig.wtmch.WtmoArg  WtmoArg
               No value
               qsig_wtmch.WtmoArg

           qsig.wtmch.alternativeId  alternativeId
               Byte array
               qsig_wtmch.AlternativeId

           qsig.wtmch.argExtension  argExtension
               Unsigned 32-bit integer
               qsig_wtmch.WtmiExtension

           qsig.wtmch.both  both
               No value
               qsig_wtmch.T_both

           qsig.wtmch.callingName  callingName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.wtmch.callingNumber  callingNumber
               Unsigned 32-bit integer
               qsig.PresentedNumberScreened

           qsig.wtmch.callingUserSub  callingUserSub
               Unsigned 32-bit integer
               qsig.PartySubaddress

           qsig.wtmch.cfuActivated  cfuActivated
               No value
               qsig_wtmch.CfuActivated

           qsig.wtmch.currLocation  currLocation
               No value
               qsig_wtmch.CurrLocation

           qsig.wtmch.destinationNumber  destinationNumber
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.wtmch.divOptions  divOptions
               Unsigned 32-bit integer
               qsig_wtmch.SubscriptionOption

           qsig.wtmch.divToAddress  divToAddress
               No value
               qsig.Address

           qsig.wtmch.extension  extension
               No value
               qsig.Extension

           qsig.wtmch.multiple  multiple
               Unsigned 32-bit integer
               qsig_wtmch.SEQUENCE_OF_Extension

           qsig.wtmch.null  null
               No value
               qsig_wtmch.NULL

           qsig.wtmch.pisnNumber  pisnNumber
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.wtmch.qSIGInfoElement  qSIGInfoElement
               Byte array
               qsig.PSS1InformationElement

           qsig.wtmch.sendingComplete  sendingComplete
               No value
               qsig_wtmch.NULL

           qsig.wtmch.sequOfExtn  sequOfExtn
               Unsigned 32-bit integer
               qsig_wtmch.SEQUENCE_OF_Extension

           qsig.wtmch.single  single
               No value
               qsig.Extension

           qsig.wtmch.visitPINX  visitPINX
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.wtmch.wtmIdentity  wtmIdentity
               Unsigned 32-bit integer
               qsig_wtmch.WtmIdentity

           qsig.wtmch.wtmName  wtmName
               Unsigned 32-bit integer
               qsig_na.Name

           qsig.wtmch.wtmUserSub  wtmUserSub
               Unsigned 32-bit integer
               qsig.PartySubaddress

           qsig.wtmlr.DummyRes  DummyRes
               Unsigned 32-bit integer
               qsig_wtmlr.DummyRes

           qsig.wtmlr.Extension  Extension
               No value
               qsig.Extension

           qsig.wtmlr.GetRRCInfArg  GetRRCInfArg
               No value
               qsig_wtmlr.GetRRCInfArg

           qsig.wtmlr.GetRRCInfRes  GetRRCInfRes
               No value
               qsig_wtmlr.GetRRCInfRes

           qsig.wtmlr.LocDeRegArg  LocDeRegArg
               No value
               qsig_wtmlr.LocDeRegArg

           qsig.wtmlr.LocDelArg  LocDelArg
               No value
               qsig_wtmlr.LocDelArg

           qsig.wtmlr.LocInfoCheckArg  LocInfoCheckArg
               No value
               qsig_wtmlr.LocInfoCheckArg

           qsig.wtmlr.LocInfoCheckRes  LocInfoCheckRes
               No value
               qsig_wtmlr.LocInfoCheckRes

           qsig.wtmlr.LocUpdArg  LocUpdArg
               No value
               qsig_wtmlr.LocUpdArg

           qsig.wtmlr.PisnEnqArg  PisnEnqArg
               No value
               qsig_wtmlr.PisnEnqArg

           qsig.wtmlr.PisnEnqRes  PisnEnqRes
               No value
               qsig_wtmlr.PisnEnqRes

           qsig.wtmlr.alternativeId  alternativeId
               Byte array
               qsig_wtmlr.AlternativeId

           qsig.wtmlr.argExtension  argExtension
               Unsigned 32-bit integer
               qsig_wtmlr.LrExtension

           qsig.wtmlr.basicService  basicService
               Unsigned 32-bit integer
               qsig_cf.BasicService

           qsig.wtmlr.checkResult  checkResult
               Unsigned 32-bit integer
               qsig_wtmlr.CheckResult

           qsig.wtmlr.extension  extension
               No value
               qsig.Extension

           qsig.wtmlr.null  null
               No value
               qsig_wtmlr.NULL

           qsig.wtmlr.pisnNumber  pisnNumber
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.wtmlr.resExtension  resExtension
               Unsigned 32-bit integer
               qsig_wtmlr.LrExtension

           qsig.wtmlr.rrClass  rrClass
               Unsigned 32-bit integer
               qsig_wtmlr.RRClass

           qsig.wtmlr.sequOfExtn  sequOfExtn
               Unsigned 32-bit integer
               qsig_wtmlr.SEQUENCE_OF_Extension

           qsig.wtmlr.visitPINX  visitPINX
               Unsigned 32-bit integer
               qsig.PartyNumber

           qsig.wtmlr.wtmUserId  wtmUserId
               Unsigned 32-bit integer
               qsig_wtmlr.WtmUserId

   Quake II Network Protocol (quake2)
           quake2.c2s  Client to Server
               Unsigned 32-bit integer
               Client to Server

           quake2.connectionless  Connectionless
               Unsigned 32-bit integer
               Connectionless

           quake2.connectionless.marker  Marker
               Unsigned 32-bit integer
               Marker

           quake2.connectionless.text  Text
               String
               Text

           quake2.game  Game
               Unsigned 32-bit integer
               Game

           quake2.game.client.command  Client Command Type
               Unsigned 8-bit integer
               Quake II Client Command

           quake2.game.client.command.move  Bitfield
               Unsigned 8-bit integer
               Quake II Client Command Move

           quake2.game.client.command.move.angles  Angles (pitch)
               Unsigned 8-bit integer

           quake2.game.client.command.move.buttons  Buttons
               Unsigned 8-bit integer

           quake2.game.client.command.move.chksum  Checksum
               Unsigned 8-bit integer
               Quake II Client Command Move

           quake2.game.client.command.move.impulse  Impulse
               Unsigned 8-bit integer

           quake2.game.client.command.move.lframe  Last Frame
               Unsigned 32-bit integer
               Quake II Client Command Move

           quake2.game.client.command.move.lightlevel  Lightlevel
               Unsigned 8-bit integer
               Quake II Client Command Move

           quake2.game.client.command.move.movement  Movement (fwd)
               Unsigned 8-bit integer

           quake2.game.client.command.move.msec  Msec
               Unsigned 8-bit integer
               Quake II Client Command Move

           quake2.game.qport  QPort
               Unsigned 32-bit integer
               Quake II Client Port

           quake2.game.rel1  Reliable
               Boolean
               Packet is reliable and may be retransmitted

           quake2.game.rel2  Reliable
               Boolean
               Packet was reliable and may be retransmitted

           quake2.game.seq1  Sequence Number
               Unsigned 32-bit integer
               Sequence number of the current packet

           quake2.game.seq2  Sequence Number
               Unsigned 32-bit integer
               Sequence number of the last received packet

           quake2.game.server.command  Server Command
               Unsigned 8-bit integer
               Quake II Server Command

           quake2.s2c  Server to Client
               Unsigned 32-bit integer
               Server to Client

   Quake III Arena Network Protocol (quake3)
           quake3.connectionless  Connectionless
               Unsigned 32-bit integer
               Connectionless

           quake3.connectionless.command  Command
               String
               Command

           quake3.connectionless.marker  Marker
               Unsigned 32-bit integer
               Marker

           quake3.connectionless.text  Text
               String
               Text

           quake3.direction  Direction
               No value
               Packet Direction

           quake3.game  Game
               Unsigned 32-bit integer
               Game

           quake3.game.qport  QPort
               Unsigned 32-bit integer
               Quake III Arena Client Port

           quake3.game.rel1  Reliable
               Boolean
               Packet is reliable and may be retransmitted

           quake3.game.rel2  Reliable
               Boolean
               Packet was reliable and may be retransmitted

           quake3.game.seq1  Sequence Number
               Unsigned 32-bit integer
               Sequence number of the current packet

           quake3.game.seq2  Sequence Number
               Unsigned 32-bit integer
               Sequence number of the last received packet

           quake3.server.addr  Server Address
               IPv4 address
               Server IP Address

           quake3.server.port  Server Port
               Unsigned 16-bit integer
               Server UDP Port

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

           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
               Maximal Number of Players

           quake.control.server_info.num_player  Number of Players
               Unsigned 8-bit integer
               Current Number of Players

           quake.control.server_info.server  Server
               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
               Flags

           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
               Client to Server

           quakeworld.connectionless  Connectionless
               Unsigned 32-bit integer
               Connectionless

           quakeworld.connectionless.arguments  Arguments
               String
               Arguments

           quakeworld.connectionless.command  Command
               String
               Command

           quakeworld.connectionless.connect.challenge  Challenge
               Signed 32-bit integer
               Challenge from the server

           quakeworld.connectionless.connect.infostring  Infostring
               String
               Infostring with additional variables

           quakeworld.connectionless.connect.infostring.key  Key
               String
               Infostring Key

           quakeworld.connectionless.connect.infostring.key_value  Key/Value
               String
               Key and Value

           quakeworld.connectionless.connect.infostring.value  Value
               String
               Infostring Value

           quakeworld.connectionless.connect.qport  QPort
               Unsigned 32-bit integer
               QPort of the client

           quakeworld.connectionless.connect.version  Version
               Unsigned 32-bit integer
               Protocol Version

           quakeworld.connectionless.marker  Marker
               Unsigned 32-bit integer
               Marker

           quakeworld.connectionless.rcon.command  Command
               String
               Command

           quakeworld.connectionless.rcon.password  Password
               String
               Rcon Password

           quakeworld.connectionless.text  Text
               String
               Text

           quakeworld.game  Game
               Unsigned 32-bit integer
               Game

           quakeworld.game.qport  QPort
               Unsigned 32-bit integer
               QuakeWorld Client Port

           quakeworld.game.rel1  Reliable
               Boolean
               Packet is reliable and may be retransmitted

           quakeworld.game.rel2  Reliable
               Boolean
               Packet was reliable and may be retransmitted

           quakeworld.game.seq1  Sequence Number
               Unsigned 32-bit integer
               Sequence number of the current packet

           quakeworld.game.seq2  Sequence Number
               Unsigned 32-bit integer
               Sequence number of the last received packet

           quakeworld.s2c  Server to Client
               Unsigned 32-bit integer
               Server to Client

   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-LTE (rlc-lte)
           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
               Extension bit 1

           rlc-lte.am.e2  Extension bit 2
               Unsigned 8-bit integer
               Extension bit 2

           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  UM 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
               Polling Bit

           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
               Last Segment Flag

           rlc-lte.am.segment.offset  Segment Offset
               Unsigned 16-bit integer
               Segment Offset

           rlc-lte.am.so-end  SO End
               Unsigned 16-bit integer
               SO End

           rlc-lte.am.so-start  SO Start
               Unsigned 16-bit integer
               SO Start

           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.direction  Direction
               Unsigned 8-bit integer
               Direction of message

           rlc-lte.extension-part  Extension Part
               String
               Extension Part

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

           rlc-lte.extension.padding  Padding
               Unsigned 8-bit integer
               Extension header padding

           rlc-lte.mode  RLC Mode
               Unsigned 8-bit integer
               RLC Mode

           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
               Priority

           rlc-lte.sequence-analysis  Sequence Analysis
               String
               Sequence Analysis

           rlc-lte.sequence-analysis.expected-sn  Expected SN
               Unsigned 16-bit integer
               Expected SN

           rlc-lte.sequence-analysis.framing-info-correct  Frame info continued correctly
               Unsigned 8-bit integer
               Frame info continued correctly

           rlc-lte.sequence-analysis.previous-frame  Previous frame for channel
               Frame number
               Previous frame for channel

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

           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
               Operation

           rpc_browser.rc  Return code
               Unsigned 32-bit integer
               Browser return code

           rpc_browser.unknown.bytes  Unknown bytes
               Byte array
               Unknown bytes. If you know what this is, contact 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
               Operation

   RSTAT (rstat)
           rstat.procedure_v1  V1 Procedure
               Unsigned 32-bit integer
               V1 Procedure

           rstat.procedure_v2  V2 Procedure
               Unsigned 32-bit integer
               V2 Procedure

           rstat.procedure_v3  V3 Procedure
               Unsigned 32-bit integer
               V3 Procedure

           rstat.procedure_v4  V4 Procedure
               Unsigned 32-bit integer
               V4 Procedure

   RSYNC 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
               Client Ready

           rtcfg.client_flags.res  Reserved
               Unsigned 8-bit integer
               Reserved

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

           rtcfg.server_flags.res0  Reserved
               Unsigned 8-bit integer
               Reserved

           rtcfg.server_flags.res2  Reserved
               Unsigned 8-bit integer
               Reserved

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

           rx.abort_code  Abort Code
               Unsigned 32-bit integer
               Abort Code

           rx.ack  ACK Packet
               No value
               ACK Packet

           rx.ack_type  ACK Type
               Unsigned 8-bit integer
               Type Of ACKs

           rx.bufferspace  Bufferspace
               Unsigned 16-bit integer
               Number Of Packets Available

           rx.callnumber  Call Number
               Unsigned 32-bit integer
               Call Number

           rx.challenge  CHALLENGE Packet
               No value
               CHALLENGE Packet

           rx.cid  CID
               Unsigned 32-bit integer
               CID

           rx.encrypted  Encrypted
               No value
               Encrypted part of response packet

           rx.epoch  Epoch
               Date/Time stamp
               Epoch

           rx.first  First Packet
               Unsigned 32-bit integer
               First Packet

           rx.flags  Flags
               Unsigned 8-bit integer
               Flags

           rx.flags.client_init  Client Initiated
               Boolean
               Client Initiated

           rx.flags.free_packet  Free Packet
               Boolean
               Free Packet

           rx.flags.last_packet  Last Packet
               Boolean
               Last Packet

           rx.flags.more_packets  More Packets
               Boolean
               More Packets

           rx.flags.request_ack  Request Ack
               Boolean
               Request Ack

           rx.if_mtu  Interface MTU
               Unsigned 32-bit integer
               Interface MTU

           rx.inc_nonce  Inc Nonce
               Unsigned 32-bit integer
               Incremented Nonce

           rx.kvno  kvno
               Unsigned 32-bit integer
               kvno

           rx.level  Level
               Unsigned 32-bit integer
               Level

           rx.max_mtu  Max MTU
               Unsigned 32-bit integer
               Max MTU

           rx.max_packets  Max Packets
               Unsigned 32-bit integer
               Max Packets

           rx.maxskew  Max Skew
               Unsigned 16-bit integer
               Max Skew

           rx.min_level  Min Level
               Unsigned 32-bit integer
               Min Level

           rx.nonce  Nonce
               Unsigned 32-bit integer
               Nonce

           rx.num_acks  Num ACKs
               Unsigned 8-bit integer
               Number Of ACKs

           rx.prev  Prev Packet
               Unsigned 32-bit integer
               Previous Packet

           rx.reason  Reason
               Unsigned 8-bit integer
               Reason For This ACK

           rx.response  RESPONSE Packet
               No value
               RESPONSE Packet

           rx.rwind  rwind
               Unsigned 32-bit integer
               rwind

           rx.securityindex  Security Index
               Unsigned 32-bit integer
               Security Index

           rx.seq  Sequence Number
               Unsigned 32-bit integer
               Sequence Number

           rx.serial  Serial
               Unsigned 32-bit integer
               Serial

           rx.serviceid  Service ID
               Unsigned 16-bit integer
               Service ID

           rx.spare  Spare/Checksum
               Unsigned 16-bit integer
               Spare/Checksum

           rx.ticket  ticket
               Byte array
               Ticket

           rx.ticket_len  Ticket len
               Unsigned 32-bit integer
               Ticket Length

           rx.type  Type
               Unsigned 8-bit integer
               Type

           rx.userstatus  User Status
               Unsigned 32-bit integer
               User Status

           rx.version  Version
               Unsigned 32-bit integer
               Version Of Challenge/Response

   Radio Access Network Application Part (ranap)
           ranap.APN  APN
               Byte array
               ranap.APN

           ranap.AccuracyFulfilmentIndicator  AccuracyFulfilmentIndicator
               Unsigned 32-bit integer
               ranap.AccuracyFulfilmentIndicator

           ranap.Alt_RAB_Parameter_ExtendedGuaranteedBitrateInf  Alt-RAB-Parameter-ExtendedGuaranteedBitrateInf
               No value
               ranap.Alt_RAB_Parameter_ExtendedGuaranteedBitrateInf

           ranap.Alt_RAB_Parameter_ExtendedGuaranteedBitrateList  Alt-RAB-Parameter-ExtendedGuaranteedBitrateList
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_ExtendedGuaranteedBitrateList

           ranap.Alt_RAB_Parameter_ExtendedMaxBitrateInf  Alt-RAB-Parameter-ExtendedMaxBitrateInf
               No value
               ranap.Alt_RAB_Parameter_ExtendedMaxBitrateInf

           ranap.Alt_RAB_Parameter_ExtendedMaxBitrateList  Alt-RAB-Parameter-ExtendedMaxBitrateList
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_ExtendedMaxBitrateList

           ranap.Alt_RAB_Parameter_GuaranteedBitrateList  Alt-RAB-Parameter-GuaranteedBitrateList
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_GuaranteedBitrateList

           ranap.Alt_RAB_Parameter_MaxBitrateList  Alt-RAB-Parameter-MaxBitrateList
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_MaxBitrateList

           ranap.Alt_RAB_Parameter_SupportedGuaranteedBitrateInf  Alt-RAB-Parameter-SupportedGuaranteedBitrateInf
               No value
               ranap.Alt_RAB_Parameter_SupportedGuaranteedBitrateInf

           ranap.Alt_RAB_Parameter_SupportedMaxBitrateInf  Alt-RAB-Parameter-SupportedMaxBitrateInf
               No value
               ranap.Alt_RAB_Parameter_SupportedMaxBitrateInf

           ranap.Alt_RAB_Parameters  Alt-RAB-Parameters
               No value
               ranap.Alt_RAB_Parameters

           ranap.AlternativeRABConfigurationRequest  AlternativeRABConfigurationRequest
               Unsigned 32-bit integer
               ranap.AlternativeRABConfigurationRequest

           ranap.AreaIdentity  AreaIdentity
               Unsigned 32-bit integer
               ranap.AreaIdentity

           ranap.Ass_RAB_Parameter_ExtendedGuaranteedBitrateList  Ass-RAB-Parameter-ExtendedGuaranteedBitrateList
               Unsigned 32-bit integer
               ranap.Ass_RAB_Parameter_ExtendedGuaranteedBitrateList

           ranap.Ass_RAB_Parameter_ExtendedMaxBitrateList  Ass-RAB-Parameter-ExtendedMaxBitrateList
               Unsigned 32-bit integer
               ranap.Ass_RAB_Parameter_ExtendedMaxBitrateList

           ranap.Ass_RAB_Parameters  Ass-RAB-Parameters
               No value
               ranap.Ass_RAB_Parameters

           ranap.AuthorisedPLMNs_item  AuthorisedPLMNs item
               No value
               ranap.AuthorisedPLMNs_item

           ranap.BroadcastAssistanceDataDecipheringKeys  BroadcastAssistanceDataDecipheringKeys
               No value
               ranap.BroadcastAssistanceDataDecipheringKeys

           ranap.CNMBMSLinkingInformation  CNMBMSLinkingInformation
               No value
               ranap.CNMBMSLinkingInformation

           ranap.CN_DeactivateTrace  CN-DeactivateTrace
               No value
               ranap.CN_DeactivateTrace

           ranap.CN_DomainIndicator  CN-DomainIndicator
               Unsigned 32-bit integer
               ranap.CN_DomainIndicator

           ranap.CN_InvokeTrace  CN-InvokeTrace
               No value
               ranap.CN_InvokeTrace

           ranap.CSG_Id  CSG-Id
               Byte array
               ranap.CSG_Id

           ranap.Cause  Cause
               Unsigned 32-bit integer
               ranap.Cause

           ranap.CellLoadInformationGroup  CellLoadInformationGroup
               No value
               ranap.CellLoadInformationGroup

           ranap.ChosenEncryptionAlgorithm  ChosenEncryptionAlgorithm
               Unsigned 32-bit integer
               ranap.ChosenEncryptionAlgorithm

           ranap.ChosenIntegrityProtectionAlgorithm  ChosenIntegrityProtectionAlgorithm
               Unsigned 32-bit integer
               ranap.ChosenIntegrityProtectionAlgorithm

           ranap.ClassmarkInformation2  ClassmarkInformation2
               Byte array
               ranap.ClassmarkInformation2

           ranap.ClassmarkInformation3  ClassmarkInformation3
               Byte array
               ranap.ClassmarkInformation3

           ranap.ClientType  ClientType
               Unsigned 32-bit integer
               ranap.ClientType

           ranap.CommonID  CommonID
               No value
               ranap.CommonID

           ranap.CriticalityDiagnostics  CriticalityDiagnostics
               No value
               ranap.CriticalityDiagnostics

           ranap.CriticalityDiagnostics_IE_List_item  CriticalityDiagnostics-IE-List item
               No value
               ranap.CriticalityDiagnostics_IE_List_item

           ranap.DRX_CycleLengthCoefficient  DRX-CycleLengthCoefficient
               Unsigned 32-bit integer
               ranap.DRX_CycleLengthCoefficient

           ranap.DataVolumeList_item  DataVolumeList item
               No value
               ranap.DataVolumeList_item

           ranap.DataVolumeReport  DataVolumeReport
               No value
               ranap.DataVolumeReport

           ranap.DataVolumeReportRequest  DataVolumeReportRequest
               No value
               ranap.DataVolumeReportRequest

           ranap.DeltaRAListofIdleModeUEs  DeltaRAListofIdleModeUEs
               No value
               ranap.DeltaRAListofIdleModeUEs

           ranap.DirectInformationTransfer  DirectInformationTransfer
               No value
               ranap.DirectInformationTransfer

           ranap.DirectTransfer  DirectTransfer
               No value
               ranap.DirectTransfer

           ranap.DirectTransferInformationItem_RANAP_RelocInf  DirectTransferInformationItem-RANAP-RelocInf
               No value
               ranap.DirectTransferInformationItem_RANAP_RelocInf

           ranap.DirectTransferInformationList_RANAP_RelocInf  DirectTransferInformationList-RANAP-RelocInf
               Unsigned 32-bit integer
               ranap.DirectTransferInformationList_RANAP_RelocInf

           ranap.E_DCH_MAC_d_Flow_ID  E-DCH-MAC-d-Flow-ID
               Unsigned 32-bit integer
               ranap.E_DCH_MAC_d_Flow_ID

           ranap.EncryptionAlgorithm  EncryptionAlgorithm
               Unsigned 32-bit integer
               ranap.EncryptionAlgorithm

           ranap.EncryptionInformation  EncryptionInformation
               No value
               ranap.EncryptionInformation

           ranap.EncryptionKey  EncryptionKey
               Byte array
               ranap.EncryptionKey

           ranap.EnhancedRelocationCompleteConfirm  EnhancedRelocationCompleteConfirm
               No value
               ranap.EnhancedRelocationCompleteConfirm

           ranap.EnhancedRelocationCompleteFailure  EnhancedRelocationCompleteFailure
               No value
               ranap.EnhancedRelocationCompleteFailure

           ranap.EnhancedRelocationCompleteRequest  EnhancedRelocationCompleteRequest
               No value
               ranap.EnhancedRelocationCompleteRequest

           ranap.EnhancedRelocationCompleteResponse  EnhancedRelocationCompleteResponse
               No value
               ranap.EnhancedRelocationCompleteResponse

           ranap.ErrorIndication  ErrorIndication
               No value
               ranap.ErrorIndication

           ranap.ExtendedGuaranteedBitrate  ExtendedGuaranteedBitrate
               Unsigned 32-bit integer
               ranap.ExtendedGuaranteedBitrate

           ranap.ExtendedMaxBitrate  ExtendedMaxBitrate
               Unsigned 32-bit integer
               ranap.ExtendedMaxBitrate

           ranap.ExtendedRNC_ID  ExtendedRNC-ID
               Unsigned 32-bit integer
               ranap.ExtendedRNC_ID

           ranap.ForwardSRNS_Context  ForwardSRNS-Context
               No value
               ranap.ForwardSRNS_Context

           ranap.FrequenceLayerConvergenceFlag  FrequenceLayerConvergenceFlag
               Unsigned 32-bit integer
               ranap.FrequenceLayerConvergenceFlag

           ranap.GANSS_PositioningDataSet  GANSS-PositioningDataSet
               Unsigned 32-bit integer
               ranap.GANSS_PositioningDataSet

           ranap.GANSS_PositioningMethodAndUsage  GANSS-PositioningMethodAndUsage
               Byte array
               ranap.GANSS_PositioningMethodAndUsage

           ranap.GA_Polygon_item  GA-Polygon item
               No value
               ranap.GA_Polygon_item

           ranap.GERAN_BSC_Container  GERAN-BSC-Container
               Byte array
               ranap.GERAN_BSC_Container

           ranap.GERAN_Classmark  GERAN-Classmark
               Byte array
               ranap.GERAN_Classmark

           ranap.GERAN_Iumode_RAB_FailedList_RABAssgntResponse  GERAN-Iumode-RAB-FailedList-RABAssgntResponse
               Unsigned 32-bit integer
               ranap.GERAN_Iumode_RAB_FailedList_RABAssgntResponse

           ranap.GERAN_Iumode_RAB_Failed_RABAssgntResponse_Item  GERAN-Iumode-RAB-Failed-RABAssgntResponse-Item
               No value
               ranap.GERAN_Iumode_RAB_Failed_RABAssgntResponse_Item

           ranap.GlobalCN_ID  GlobalCN-ID
               No value
               ranap.GlobalCN_ID

           ranap.GlobalRNC_ID  GlobalRNC-ID
               No value
               ranap.GlobalRNC_ID

           ranap.GuaranteedBitrate  GuaranteedBitrate
               Unsigned 32-bit integer
               ranap.GuaranteedBitrate

           ranap.HS_DSCH_MAC_d_Flow_ID  HS-DSCH-MAC-d-Flow-ID
               Unsigned 32-bit integer
               ranap.HS_DSCH_MAC_d_Flow_ID

           ranap.IMEI  IMEI
               Byte array
               ranap.IMEI

           ranap.IMEISV  IMEISV
               Byte array
               ranap.IMEISV

           ranap.IPMulticastAddress  IPMulticastAddress
               Byte array
               ranap.IPMulticastAddress

           ranap.IncludeVelocity  IncludeVelocity
               Unsigned 32-bit integer
               ranap.IncludeVelocity

           ranap.InformationExchangeID  InformationExchangeID
               Unsigned 32-bit integer
               ranap.InformationExchangeID

           ranap.InformationExchangeType  InformationExchangeType
               Unsigned 32-bit integer
               ranap.InformationExchangeType

           ranap.InformationRequestType  InformationRequestType
               Unsigned 32-bit integer
               ranap.InformationRequestType

           ranap.InformationRequested  InformationRequested
               Unsigned 32-bit integer
               ranap.InformationRequested

           ranap.InformationTransferConfirmation  InformationTransferConfirmation
               No value
               ranap.InformationTransferConfirmation

           ranap.InformationTransferFailure  InformationTransferFailure
               No value
               ranap.InformationTransferFailure

           ranap.InformationTransferID  InformationTransferID
               Unsigned 32-bit integer
               ranap.InformationTransferID

           ranap.InformationTransferIndication  InformationTransferIndication
               No value
               ranap.InformationTransferIndication

           ranap.InformationTransferType  InformationTransferType
               Unsigned 32-bit integer
               ranap.InformationTransferType

           ranap.InitialUE_Message  InitialUE-Message
               No value
               ranap.InitialUE_Message

           ranap.IntegrityProtectionAlgorithm  IntegrityProtectionAlgorithm
               Unsigned 32-bit integer
               ranap.IntegrityProtectionAlgorithm

           ranap.IntegrityProtectionInformation  IntegrityProtectionInformation
               No value
               ranap.IntegrityProtectionInformation

           ranap.IntegrityProtectionKey  IntegrityProtectionKey
               Byte array
               ranap.IntegrityProtectionKey

           ranap.InterSystemInformationTransferType  InterSystemInformationTransferType
               Unsigned 32-bit integer
               ranap.InterSystemInformationTransferType

           ranap.InterSystemInformation_TransparentContainer  InterSystemInformation-TransparentContainer
               No value
               ranap.InterSystemInformation_TransparentContainer

           ranap.InterfacesToTraceItem  InterfacesToTraceItem
               No value
               ranap.InterfacesToTraceItem

           ranap.IuSignallingConnectionIdentifier  IuSignallingConnectionIdentifier
               Byte array
               ranap.IuSignallingConnectionIdentifier

           ranap.IuTransportAssociation  IuTransportAssociation
               Unsigned 32-bit integer
               ranap.IuTransportAssociation

           ranap.Iu_ReleaseCommand  Iu-ReleaseCommand
               No value
               ranap.Iu_ReleaseCommand

           ranap.Iu_ReleaseComplete  Iu-ReleaseComplete
               No value
               ranap.Iu_ReleaseComplete

           ranap.Iu_ReleaseRequest  Iu-ReleaseRequest
               No value
               ranap.Iu_ReleaseRequest

           ranap.JoinedMBMSBearerService_IEs  JoinedMBMSBearerService-IEs
               Unsigned 32-bit integer
               ranap.JoinedMBMSBearerService_IEs

           ranap.JoinedMBMSBearerService_IEs_item  JoinedMBMSBearerService-IEs item
               No value
               ranap.JoinedMBMSBearerService_IEs_item

           ranap.KeyStatus  KeyStatus
               Unsigned 32-bit integer
               ranap.KeyStatus

           ranap.L3_Information  L3-Information
               Byte array
               ranap.L3_Information

           ranap.LAI  LAI
               No value
               ranap.LAI

           ranap.LAListofIdleModeUEs  LAListofIdleModeUEs
               Unsigned 32-bit integer
               ranap.LAListofIdleModeUEs

           ranap.LA_LIST_item  LA-LIST item
               No value
               ranap.LA_LIST_item

           ranap.LastKnownServiceArea  LastKnownServiceArea
               No value
               ranap.LastKnownServiceArea

           ranap.LeftMBMSBearerService_IEs  LeftMBMSBearerService-IEs
               Unsigned 32-bit integer
               ranap.LeftMBMSBearerService_IEs

           ranap.LeftMBMSBearerService_IEs_item  LeftMBMSBearerService-IEs item
               No value
               ranap.LeftMBMSBearerService_IEs_item

           ranap.LocationRelatedDataFailure  LocationRelatedDataFailure
               No value
               ranap.LocationRelatedDataFailure

           ranap.LocationRelatedDataRequest  LocationRelatedDataRequest
               No value
               ranap.LocationRelatedDataRequest

           ranap.LocationRelatedDataRequestType  LocationRelatedDataRequestType
               No value
               ranap.LocationRelatedDataRequestType

           ranap.LocationRelatedDataRequestTypeSpecificToGERANIuMode  LocationRelatedDataRequestTypeSpecificToGERANIuMode
               Unsigned 32-bit integer
               ranap.LocationRelatedDataRequestTypeSpecificToGERANIuMode

           ranap.LocationRelatedDataResponse  LocationRelatedDataResponse
               No value
               ranap.LocationRelatedDataResponse

           ranap.LocationReport  LocationReport
               No value
               ranap.LocationReport

           ranap.LocationReportingControl  LocationReportingControl
               No value
               ranap.LocationReportingControl

           ranap.MBMSBearerServiceType  MBMSBearerServiceType
               Unsigned 32-bit integer
               ranap.MBMSBearerServiceType

           ranap.MBMSCNDe_Registration  MBMSCNDe-Registration
               Unsigned 32-bit integer
               ranap.MBMSCNDe_Registration

           ranap.MBMSCNDe_RegistrationRequest  MBMSCNDe-RegistrationRequest
               No value
               ranap.MBMSCNDe_RegistrationRequest

           ranap.MBMSCNDe_RegistrationResponse  MBMSCNDe-RegistrationResponse
               No value
               ranap.MBMSCNDe_RegistrationResponse

           ranap.MBMSCountingInformation  MBMSCountingInformation
               Unsigned 32-bit integer
               ranap.MBMSCountingInformation

           ranap.MBMSIPMulticastAddressandAPNlist  MBMSIPMulticastAddressandAPNlist
               No value
               ranap.MBMSIPMulticastAddressandAPNlist

           ranap.MBMSLinkingInformation  MBMSLinkingInformation
               Unsigned 32-bit integer
               ranap.MBMSLinkingInformation

           ranap.MBMSRABEstablishmentIndication  MBMSRABEstablishmentIndication
               No value
               ranap.MBMSRABEstablishmentIndication

           ranap.MBMSRABRelease  MBMSRABRelease
               No value
               ranap.MBMSRABRelease

           ranap.MBMSRABReleaseFailure  MBMSRABReleaseFailure
               No value
               ranap.MBMSRABReleaseFailure

           ranap.MBMSRABReleaseRequest  MBMSRABReleaseRequest
               No value
               ranap.MBMSRABReleaseRequest

           ranap.MBMSRegistrationFailure  MBMSRegistrationFailure
               No value
               ranap.MBMSRegistrationFailure

           ranap.MBMSRegistrationRequest  MBMSRegistrationRequest
               No value
               ranap.MBMSRegistrationRequest

           ranap.MBMSRegistrationRequestType  MBMSRegistrationRequestType
               Unsigned 32-bit integer
               ranap.MBMSRegistrationRequestType

           ranap.MBMSRegistrationResponse  MBMSRegistrationResponse
               No value
               ranap.MBMSRegistrationResponse

           ranap.MBMSServiceArea  MBMSServiceArea
               Byte array
               ranap.MBMSServiceArea

           ranap.MBMSSessionDuration  MBMSSessionDuration
               Byte array
               ranap.MBMSSessionDuration

           ranap.MBMSSessionIdentity  MBMSSessionIdentity
               Byte array
               ranap.MBMSSessionIdentity

           ranap.MBMSSessionRepetitionNumber  MBMSSessionRepetitionNumber
               Byte array
               ranap.MBMSSessionRepetitionNumber

           ranap.MBMSSessionStart  MBMSSessionStart
               No value
               ranap.MBMSSessionStart

           ranap.MBMSSessionStartFailure  MBMSSessionStartFailure
               No value
               ranap.MBMSSessionStartFailure

           ranap.MBMSSessionStartResponse  MBMSSessionStartResponse
               No value
               ranap.MBMSSessionStartResponse

           ranap.MBMSSessionStop  MBMSSessionStop
               No value
               ranap.MBMSSessionStop

           ranap.MBMSSessionStopResponse  MBMSSessionStopResponse
               No value
               ranap.MBMSSessionStopResponse

           ranap.MBMSSessionUpdate  MBMSSessionUpdate
               No value
               ranap.MBMSSessionUpdate

           ranap.MBMSSessionUpdateFailure  MBMSSessionUpdateFailure
               No value
               ranap.MBMSSessionUpdateFailure

           ranap.MBMSSessionUpdateResponse  MBMSSessionUpdateResponse
               No value
               ranap.MBMSSessionUpdateResponse

           ranap.MBMSSynchronisationInformation  MBMSSynchronisationInformation
               No value
               ranap.MBMSSynchronisationInformation

           ranap.MBMSUELinkingRequest  MBMSUELinkingRequest
               No value
               ranap.MBMSUELinkingRequest

           ranap.MBMSUELinkingResponse  MBMSUELinkingResponse
               No value
               ranap.MBMSUELinkingResponse

           ranap.MaxBitrate  MaxBitrate
               Unsigned 32-bit integer
               ranap.MaxBitrate

           ranap.MessageStructure  MessageStructure
               Unsigned 32-bit integer
               ranap.MessageStructure

           ranap.MessageStructure_item  MessageStructure item
               No value
               ranap.MessageStructure_item

           ranap.NAS_PDU  NAS-PDU
               Byte array
               ranap.NAS_PDU

           ranap.NAS_SequenceNumber  NAS-SequenceNumber
               Byte array
               ranap.NAS_SequenceNumber

           ranap.NewBSS_To_OldBSS_Information  NewBSS-To-OldBSS-Information
               Byte array
               ranap.NewBSS_To_OldBSS_Information

           ranap.NonSearchingIndication  NonSearchingIndication
               Unsigned 32-bit integer
               ranap.NonSearchingIndication

           ranap.NumberOfSteps  NumberOfSteps
               Unsigned 32-bit integer
               ranap.NumberOfSteps

           ranap.OMC_ID  OMC-ID
               Byte array
               ranap.OMC_ID

           ranap.OldBSS_ToNewBSS_Information  OldBSS-ToNewBSS-Information
               Byte array
               ranap.OldBSS_ToNewBSS_Information

           ranap.Overload  Overload
               No value
               ranap.Overload

           ranap.PDP_Type  PDP-Type
               Unsigned 32-bit integer
               ranap.PDP_Type

           ranap.PDP_TypeInformation  PDP-TypeInformation
               Unsigned 32-bit integer
               ranap.PDP_TypeInformation

           ranap.PLMNidentity  PLMNidentity
               Byte array
               ranap.PLMNidentity

           ranap.PLMNs_in_shared_network_item  PLMNs-in-shared-network item
               No value
               ranap.PLMNs_in_shared_network_item

           ranap.Paging  Paging
               No value
               ranap.Paging

           ranap.PagingAreaID  PagingAreaID
               Unsigned 32-bit integer
               ranap.PagingAreaID

           ranap.PagingCause  PagingCause
               Unsigned 32-bit integer
               ranap.PagingCause

           ranap.PeriodicLocationInfo  PeriodicLocationInfo
               No value
               ranap.PeriodicLocationInfo

           ranap.PermanentNAS_UE_ID  PermanentNAS-UE-ID
               Unsigned 32-bit integer
               ranap.PermanentNAS_UE_ID

           ranap.PositionData  PositionData
               No value
               ranap.PositionData

           ranap.PositionDataSpecificToGERANIuMode  PositionDataSpecificToGERANIuMode
               Byte array
               ranap.PositionDataSpecificToGERANIuMode

           ranap.PositioningMethodAndUsage  PositioningMethodAndUsage
               Byte array
               ranap.PositioningMethodAndUsage

           ranap.PositioningPriority  PositioningPriority
               Unsigned 32-bit integer
               ranap.PositioningPriority

           ranap.PrivateIE_Field  PrivateIE-Field
               No value
               ranap.PrivateIE_Field

           ranap.PrivateMessage  PrivateMessage
               No value
               ranap.PrivateMessage

           ranap.ProtocolExtensionField  ProtocolExtensionField
               No value
               ranap.ProtocolExtensionField

           ranap.ProtocolIE_Container  ProtocolIE-Container
               Unsigned 32-bit integer
               ranap.ProtocolIE_Container

           ranap.ProtocolIE_ContainerPair  ProtocolIE-ContainerPair
               Unsigned 32-bit integer
               ranap.ProtocolIE_ContainerPair

           ranap.ProtocolIE_Field  ProtocolIE-Field
               No value
               ranap.ProtocolIE_Field

           ranap.ProtocolIE_FieldPair  ProtocolIE-FieldPair
               No value
               ranap.ProtocolIE_FieldPair

           ranap.ProvidedData  ProvidedData
               Unsigned 32-bit integer
               ranap.ProvidedData

           ranap.RAB_AssignmentRequest  RAB-AssignmentRequest
               No value
               ranap.RAB_AssignmentRequest

           ranap.RAB_AssignmentResponse  RAB-AssignmentResponse
               No value
               ranap.RAB_AssignmentResponse

           ranap.RAB_ContextFailedtoTransferList  RAB-ContextFailedtoTransferList
               Unsigned 32-bit integer
               ranap.RAB_ContextFailedtoTransferList

           ranap.RAB_ContextItem  RAB-ContextItem
               No value
               ranap.RAB_ContextItem

           ranap.RAB_ContextItem_RANAP_RelocInf  RAB-ContextItem-RANAP-RelocInf
               No value
               ranap.RAB_ContextItem_RANAP_RelocInf

           ranap.RAB_ContextList  RAB-ContextList
               Unsigned 32-bit integer
               ranap.RAB_ContextList

           ranap.RAB_ContextList_RANAP_RelocInf  RAB-ContextList-RANAP-RelocInf
               Unsigned 32-bit integer
               ranap.RAB_ContextList_RANAP_RelocInf

           ranap.RAB_DataForwardingItem  RAB-DataForwardingItem
               No value
               ranap.RAB_DataForwardingItem

           ranap.RAB_DataForwardingItem_SRNS_CtxReq  RAB-DataForwardingItem-SRNS-CtxReq
               No value
               ranap.RAB_DataForwardingItem_SRNS_CtxReq

           ranap.RAB_DataForwardingList  RAB-DataForwardingList
               Unsigned 32-bit integer
               ranap.RAB_DataForwardingList

           ranap.RAB_DataForwardingList_SRNS_CtxReq  RAB-DataForwardingList-SRNS-CtxReq
               Unsigned 32-bit integer
               ranap.RAB_DataForwardingList_SRNS_CtxReq

           ranap.RAB_DataVolumeReportItem  RAB-DataVolumeReportItem
               No value
               ranap.RAB_DataVolumeReportItem

           ranap.RAB_DataVolumeReportList  RAB-DataVolumeReportList
               Unsigned 32-bit integer
               ranap.RAB_DataVolumeReportList

           ranap.RAB_DataVolumeReportRequestItem  RAB-DataVolumeReportRequestItem
               No value
               ranap.RAB_DataVolumeReportRequestItem

           ranap.RAB_DataVolumeReportRequestList  RAB-DataVolumeReportRequestList
               Unsigned 32-bit integer
               ranap.RAB_DataVolumeReportRequestList

           ranap.RAB_FailedItem  RAB-FailedItem
               No value
               ranap.RAB_FailedItem

           ranap.RAB_FailedItem_EnhRelocInfoRes  RAB-FailedItem-EnhRelocInfoRes
               No value
               ranap.RAB_FailedItem_EnhRelocInfoRes

           ranap.RAB_FailedList  RAB-FailedList
               Unsigned 32-bit integer
               ranap.RAB_FailedList

           ranap.RAB_FailedList_EnhRelocInfoRes  RAB-FailedList-EnhRelocInfoRes
               Unsigned 32-bit integer
               ranap.RAB_FailedList_EnhRelocInfoRes

           ranap.RAB_FailedtoReportList  RAB-FailedtoReportList
               Unsigned 32-bit integer
               ranap.RAB_FailedtoReportList

           ranap.RAB_ModifyItem  RAB-ModifyItem
               No value
               ranap.RAB_ModifyItem

           ranap.RAB_ModifyList  RAB-ModifyList
               Unsigned 32-bit integer
               ranap.RAB_ModifyList

           ranap.RAB_ModifyRequest  RAB-ModifyRequest
               No value
               ranap.RAB_ModifyRequest

           ranap.RAB_Parameter_ExtendedGuaranteedBitrateList  RAB-Parameter-ExtendedGuaranteedBitrateList
               Unsigned 32-bit integer
               ranap.RAB_Parameter_ExtendedGuaranteedBitrateList

           ranap.RAB_Parameter_ExtendedMaxBitrateList  RAB-Parameter-ExtendedMaxBitrateList
               Unsigned 32-bit integer
               ranap.RAB_Parameter_ExtendedMaxBitrateList

           ranap.RAB_Parameters  RAB-Parameters
               No value
               ranap.RAB_Parameters

           ranap.RAB_QueuedItem  RAB-QueuedItem
               No value
               ranap.RAB_QueuedItem

           ranap.RAB_QueuedList  RAB-QueuedList
               Unsigned 32-bit integer
               ranap.RAB_QueuedList

           ranap.RAB_ReleaseFailedList  RAB-ReleaseFailedList
               Unsigned 32-bit integer
               ranap.RAB_ReleaseFailedList

           ranap.RAB_ReleaseItem  RAB-ReleaseItem
               No value
               ranap.RAB_ReleaseItem

           ranap.RAB_ReleaseList  RAB-ReleaseList
               Unsigned 32-bit integer
               ranap.RAB_ReleaseList

           ranap.RAB_ReleaseRequest  RAB-ReleaseRequest
               No value
               ranap.RAB_ReleaseRequest

           ranap.RAB_ReleasedItem  RAB-ReleasedItem
               No value
               ranap.RAB_ReleasedItem

           ranap.RAB_ReleasedItem_IuRelComp  RAB-ReleasedItem-IuRelComp
               No value
               ranap.RAB_ReleasedItem_IuRelComp

           ranap.RAB_ReleasedList  RAB-ReleasedList
               Unsigned 32-bit integer
               ranap.RAB_ReleasedList

           ranap.RAB_ReleasedList_IuRelComp  RAB-ReleasedList-IuRelComp
               Unsigned 32-bit integer
               ranap.RAB_ReleasedList_IuRelComp

           ranap.RAB_RelocationReleaseItem  RAB-RelocationReleaseItem
               No value
               ranap.RAB_RelocationReleaseItem

           ranap.RAB_RelocationReleaseList  RAB-RelocationReleaseList
               Unsigned 32-bit integer
               ranap.RAB_RelocationReleaseList

           ranap.RAB_SetupItem_EnhRelocInfoReq  RAB-SetupItem-EnhRelocInfoReq
               No value
               ranap.RAB_SetupItem_EnhRelocInfoReq

           ranap.RAB_SetupItem_EnhRelocInfoRes  RAB-SetupItem-EnhRelocInfoRes
               No value
               ranap.RAB_SetupItem_EnhRelocInfoRes

           ranap.RAB_SetupItem_EnhancedRelocCompleteReq  RAB-SetupItem-EnhancedRelocCompleteReq
               No value
               ranap.RAB_SetupItem_EnhancedRelocCompleteReq

           ranap.RAB_SetupItem_EnhancedRelocCompleteRes  RAB-SetupItem-EnhancedRelocCompleteRes
               No value
               ranap.RAB_SetupItem_EnhancedRelocCompleteRes

           ranap.RAB_SetupItem_RelocReq  RAB-SetupItem-RelocReq
               No value
               ranap.RAB_SetupItem_RelocReq

           ranap.RAB_SetupItem_RelocReqAck  RAB-SetupItem-RelocReqAck
               No value
               ranap.RAB_SetupItem_RelocReqAck

           ranap.RAB_SetupList_EnhRelocInfoReq  RAB-SetupList-EnhRelocInfoReq
               Unsigned 32-bit integer
               ranap.RAB_SetupList_EnhRelocInfoReq

           ranap.RAB_SetupList_EnhRelocInfoRes  RAB-SetupList-EnhRelocInfoRes
               Unsigned 32-bit integer
               ranap.RAB_SetupList_EnhRelocInfoRes

           ranap.RAB_SetupList_EnhancedRelocCompleteReq  RAB-SetupList-EnhancedRelocCompleteReq
               Unsigned 32-bit integer
               ranap.RAB_SetupList_EnhancedRelocCompleteReq

           ranap.RAB_SetupList_EnhancedRelocCompleteRes  RAB-SetupList-EnhancedRelocCompleteRes
               Unsigned 32-bit integer
               ranap.RAB_SetupList_EnhancedRelocCompleteRes

           ranap.RAB_SetupList_RelocReq  RAB-SetupList-RelocReq
               Unsigned 32-bit integer
               ranap.RAB_SetupList_RelocReq

           ranap.RAB_SetupList_RelocReqAck  RAB-SetupList-RelocReqAck
               Unsigned 32-bit integer
               ranap.RAB_SetupList_RelocReqAck

           ranap.RAB_SetupOrModifiedItem  RAB-SetupOrModifiedItem
               No value
               ranap.RAB_SetupOrModifiedItem

           ranap.RAB_SetupOrModifiedList  RAB-SetupOrModifiedList
               Unsigned 32-bit integer
               ranap.RAB_SetupOrModifiedList

           ranap.RAB_SetupOrModifyItemFirst  RAB-SetupOrModifyItemFirst
               No value
               ranap.RAB_SetupOrModifyItemFirst

           ranap.RAB_SetupOrModifyItemSecond  RAB-SetupOrModifyItemSecond
               No value
               ranap.RAB_SetupOrModifyItemSecond

           ranap.RAB_SetupOrModifyList  RAB-SetupOrModifyList
               Unsigned 32-bit integer
               ranap.RAB_SetupOrModifyList

           ranap.RAB_ToBeReleasedItem_EnhancedRelocCompleteRes  RAB-ToBeReleasedItem-EnhancedRelocCompleteRes
               No value
               ranap.RAB_ToBeReleasedItem_EnhancedRelocCompleteRes

           ranap.RAB_ToBeReleasedList_EnhancedRelocCompleteRes  RAB-ToBeReleasedList-EnhancedRelocCompleteRes
               Unsigned 32-bit integer
               ranap.RAB_ToBeReleasedList_EnhancedRelocCompleteRes

           ranap.RAB_TrCH_MappingItem  RAB-TrCH-MappingItem
               No value
               ranap.RAB_TrCH_MappingItem

           ranap.RABs_ContextFailedtoTransferItem  RABs-ContextFailedtoTransferItem
               No value
               ranap.RABs_ContextFailedtoTransferItem

           ranap.RABs_failed_to_reportItem  RABs-failed-to-reportItem
               No value
               ranap.RABs_failed_to_reportItem

           ranap.RAC  RAC
               Byte array
               ranap.RAC

           ranap.RAListofIdleModeUEs  RAListofIdleModeUEs
               Unsigned 32-bit integer
               ranap.RAListofIdleModeUEs

           ranap.RANAP_EnhancedRelocationInformationRequest  RANAP-EnhancedRelocationInformationRequest
               No value
               ranap.RANAP_EnhancedRelocationInformationRequest

           ranap.RANAP_EnhancedRelocationInformationResponse  RANAP-EnhancedRelocationInformationResponse
               No value
               ranap.RANAP_EnhancedRelocationInformationResponse

           ranap.RANAP_PDU  RANAP-PDU
               Unsigned 32-bit integer
               ranap.RANAP_PDU

           ranap.RANAP_RelocationInformation  RANAP-RelocationInformation
               No value
               ranap.RANAP_RelocationInformation

           ranap.RAT_Type  RAT-Type
               Unsigned 32-bit integer
               ranap.RAT_Type

           ranap.RRC_Container  RRC-Container
               Byte array
               ranap.RRC_Container

           ranap.RedirectAttemptFlag  RedirectAttemptFlag
               No value
               ranap.RedirectAttemptFlag

           ranap.RedirectionCompleted  RedirectionCompleted
               Unsigned 32-bit integer
               ranap.RedirectionCompleted

           ranap.RedirectionIndication  RedirectionIndication
               Unsigned 32-bit integer
               ranap.RedirectionIndication

           ranap.RejectCauseValue  RejectCauseValue
               Unsigned 32-bit integer
               ranap.RejectCauseValue

           ranap.RelocationCancel  RelocationCancel
               No value
               ranap.RelocationCancel

           ranap.RelocationCancelAcknowledge  RelocationCancelAcknowledge
               No value
               ranap.RelocationCancelAcknowledge

           ranap.RelocationCommand  RelocationCommand
               No value
               ranap.RelocationCommand

           ranap.RelocationComplete  RelocationComplete
               No value
               ranap.RelocationComplete

           ranap.RelocationDetect  RelocationDetect
               No value
               ranap.RelocationDetect

           ranap.RelocationFailure  RelocationFailure
               No value
               ranap.RelocationFailure

           ranap.RelocationPreparationFailure  RelocationPreparationFailure
               No value
               ranap.RelocationPreparationFailure

           ranap.RelocationRequest  RelocationRequest
               No value
               ranap.RelocationRequest

           ranap.RelocationRequestAcknowledge  RelocationRequestAcknowledge
               No value
               ranap.RelocationRequestAcknowledge

           ranap.RelocationRequired  RelocationRequired
               No value
               ranap.RelocationRequired

           ranap.RelocationType  RelocationType
               Unsigned 32-bit integer
               ranap.RelocationType

           ranap.RequestType  RequestType
               No value
               ranap.RequestType

           ranap.RequestedGANSSAssistanceData  RequestedGANSSAssistanceData
               Byte array
               ranap.RequestedGANSSAssistanceData

           ranap.Requested_RAB_Parameter_ExtendedGuaranteedBitrateList  Requested-RAB-Parameter-ExtendedGuaranteedBitrateList
               Unsigned 32-bit integer
               ranap.Requested_RAB_Parameter_ExtendedGuaranteedBitrateList

           ranap.Requested_RAB_Parameter_ExtendedMaxBitrateList  Requested-RAB-Parameter-ExtendedMaxBitrateList
               Unsigned 32-bit integer
               ranap.Requested_RAB_Parameter_ExtendedMaxBitrateList

           ranap.Reset  Reset
               No value
               ranap.Reset

           ranap.ResetAcknowledge  ResetAcknowledge
               No value
               ranap.ResetAcknowledge

           ranap.ResetResource  ResetResource
               No value
               ranap.ResetResource

           ranap.ResetResourceAckItem  ResetResourceAckItem
               No value
               ranap.ResetResourceAckItem

           ranap.ResetResourceAckList  ResetResourceAckList
               Unsigned 32-bit integer
               ranap.ResetResourceAckList

           ranap.ResetResourceAcknowledge  ResetResourceAcknowledge
               No value
               ranap.ResetResourceAcknowledge

           ranap.ResetResourceItem  ResetResourceItem
               No value
               ranap.ResetResourceItem

           ranap.ResetResourceList  ResetResourceList
               Unsigned 32-bit integer
               ranap.ResetResourceList

           ranap.ResponseTime  ResponseTime
               Unsigned 32-bit integer
               ranap.ResponseTime

           ranap.SAI  SAI
               No value
               ranap.SAI

           ranap.SAPI  SAPI
               Unsigned 32-bit integer
               ranap.SAPI

           ranap.SDU_FormatInformationParameters_item  SDU-FormatInformationParameters item
               No value
               ranap.SDU_FormatInformationParameters_item

           ranap.SDU_Parameters_item  SDU-Parameters item
               No value
               ranap.SDU_Parameters_item

           ranap.SNAC  SNAC
               Unsigned 32-bit integer
               ranap.SNAC

           ranap.SNA_Access_Information  SNA-Access-Information
               No value
               ranap.SNA_Access_Information

           ranap.SRB_TrCH_Mapping  SRB-TrCH-Mapping
               Unsigned 32-bit integer
               ranap.SRB_TrCH_Mapping

           ranap.SRB_TrCH_MappingItem  SRB-TrCH-MappingItem
               No value
               ranap.SRB_TrCH_MappingItem

           ranap.SRNS_ContextRequest  SRNS-ContextRequest
               No value
               ranap.SRNS_ContextRequest

           ranap.SRNS_ContextResponse  SRNS-ContextResponse
               No value
               ranap.SRNS_ContextResponse

           ranap.SRNS_DataForwardCommand  SRNS-DataForwardCommand
               No value
               ranap.SRNS_DataForwardCommand

           ranap.SRVCC_CSKeysRequest  SRVCC-CSKeysRequest
               No value
               ranap.SRVCC_CSKeysRequest

           ranap.SRVCC_CSKeysResponse  SRVCC-CSKeysResponse
               No value
               ranap.SRVCC_CSKeysResponse

           ranap.SRVCC_HO_Indication  SRVCC-HO-Indication
               Unsigned 32-bit integer
               ranap.SRVCC_HO_Indication

           ranap.SRVCC_Information  SRVCC-Information
               No value
               ranap.SRVCC_Information

           ranap.SecurityModeCommand  SecurityModeCommand
               No value
               ranap.SecurityModeCommand

           ranap.SecurityModeComplete  SecurityModeComplete
               No value
               ranap.SecurityModeComplete

           ranap.SecurityModeReject  SecurityModeReject
               No value
               ranap.SecurityModeReject

           ranap.SessionUpdateID  SessionUpdateID
               Unsigned 32-bit integer
               ranap.SessionUpdateID

           ranap.SignallingIndication  SignallingIndication
               Unsigned 32-bit integer
               ranap.SignallingIndication

           ranap.SourceBSS_ToTargetBSS_TransparentContainer  SourceBSS-ToTargetBSS-TransparentContainer
               Byte array
               ranap.SourceBSS_ToTargetBSS_TransparentContainer

           ranap.SourceID  SourceID
               Unsigned 32-bit integer
               ranap.SourceID

           ranap.SourceRNC_ToTargetRNC_TransparentContainer  SourceRNC-ToTargetRNC-TransparentContainer
               No value
               ranap.SourceRNC_ToTargetRNC_TransparentContainer

           ranap.Source_ToTarget_TransparentContainer  Source-ToTarget-TransparentContainer
               Byte array
               ranap.Source_ToTarget_TransparentContainer

           ranap.SubscriberProfileIDforRFP  SubscriberProfileIDforRFP
               Unsigned 32-bit integer
               ranap.SubscriberProfileIDforRFP

           ranap.SupportedBitrate  SupportedBitrate
               Unsigned 32-bit integer
               ranap.SupportedBitrate

           ranap.SupportedRAB_ParameterBitrateList  SupportedRAB-ParameterBitrateList
               Unsigned 32-bit integer
               ranap.SupportedRAB_ParameterBitrateList

           ranap.TMGI  TMGI
               No value
               ranap.TMGI

           ranap.TargetBSS_ToSourceBSS_TransparentContainer  TargetBSS-ToSourceBSS-TransparentContainer
               Byte array
               ranap.TargetBSS_ToSourceBSS_TransparentContainer

           ranap.TargetID  TargetID
               Unsigned 32-bit integer
               ranap.TargetID

           ranap.TargetRNC_ToSourceRNC_TransparentContainer  TargetRNC-ToSourceRNC-TransparentContainer
               No value
               ranap.TargetRNC_ToSourceRNC_TransparentContainer

           ranap.Target_ToSource_TransparentContainer  Target-ToSource-TransparentContainer
               Byte array
               ranap.Target_ToSource_TransparentContainer

           ranap.TemporaryUE_ID  TemporaryUE-ID
               Unsigned 32-bit integer
               ranap.TemporaryUE_ID

           ranap.TimeToMBMSDataTransfer  TimeToMBMSDataTransfer
               Byte array
               ranap.TimeToMBMSDataTransfer

           ranap.TrCH_ID  TrCH-ID
               No value
               ranap.TrCH_ID

           ranap.TracePropagationParameters  TracePropagationParameters
               No value
               ranap.TracePropagationParameters

           ranap.TraceRecordingSessionInformation  TraceRecordingSessionInformation
               No value
               ranap.TraceRecordingSessionInformation

           ranap.TraceReference  TraceReference
               Byte array
               ranap.TraceReference

           ranap.TraceType  TraceType
               Byte array
               ranap.TraceType

           ranap.TransportLayerAddress  TransportLayerAddress
               Byte array
               ranap.TransportLayerAddress

           ranap.TransportLayerInformation  TransportLayerInformation
               No value
               ranap.TransportLayerInformation

           ranap.TriggerID  TriggerID
               Byte array
               ranap.TriggerID

           ranap.TypeOfError  TypeOfError
               Unsigned 32-bit integer
               ranap.TypeOfError

           ranap.UESBI_Iu  UESBI-Iu
               No value
               ranap.UESBI_Iu

           ranap.UESpecificInformationIndication  UESpecificInformationIndication
               No value
               ranap.UESpecificInformationIndication

           ranap.UE_History_Information  UE-History-Information
               Byte array
               ranap.UE_History_Information

           ranap.UE_ID  UE-ID
               Unsigned 32-bit integer
               ranap.UE_ID

           ranap.UnsuccessfulLinking_IEs  UnsuccessfulLinking-IEs
               Unsigned 32-bit integer
               ranap.UnsuccessfulLinking_IEs

           ranap.UnsuccessfulLinking_IEs_item  UnsuccessfulLinking-IEs item
               No value
               ranap.UnsuccessfulLinking_IEs_item

           ranap.UplinkInformationExchangeFailure  UplinkInformationExchangeFailure
               No value
               ranap.UplinkInformationExchangeFailure

           ranap.UplinkInformationExchangeRequest  UplinkInformationExchangeRequest
               No value
               ranap.UplinkInformationExchangeRequest

           ranap.UplinkInformationExchangeResponse  UplinkInformationExchangeResponse
               No value
               ranap.UplinkInformationExchangeResponse

           ranap.VelocityEstimate  VelocityEstimate
               Unsigned 32-bit integer
               ranap.VelocityEstimate

           ranap.VerticalAccuracyCode  VerticalAccuracyCode
               Unsigned 32-bit integer
               ranap.VerticalAccuracyCode

           ranap.aPN  aPN
               Byte array
               ranap.APN

           ranap.accuracyCode  accuracyCode
               Unsigned 32-bit integer
               ranap.INTEGER_0_127

           ranap.ageOfSAI  ageOfSAI
               Unsigned 32-bit integer
               ranap.INTEGER_0_32767

           ranap.allocationOrRetentionPriority  allocationOrRetentionPriority
               No value
               ranap.AllocationOrRetentionPriority

           ranap.altExtendedGuaranteedBitrateType  altExtendedGuaranteedBitrateType
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_GuaranteedBitrateType

           ranap.altExtendedGuaranteedBitrates  altExtendedGuaranteedBitrates
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_ExtendedGuaranteedBitrates

           ranap.altExtendedMaxBitrateType  altExtendedMaxBitrateType
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_MaxBitrateType

           ranap.altExtendedMaxBitrates  altExtendedMaxBitrates
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_ExtendedMaxBitrates

           ranap.altGuaranteedBitRateInf  altGuaranteedBitRateInf
               No value
               ranap.Alt_RAB_Parameter_GuaranteedBitrateInf

           ranap.altGuaranteedBitrateType  altGuaranteedBitrateType
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_GuaranteedBitrateType

           ranap.altGuaranteedBitrates  altGuaranteedBitrates
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_GuaranteedBitrates

           ranap.altMaxBitrateInf  altMaxBitrateInf
               No value
               ranap.Alt_RAB_Parameter_MaxBitrateInf

           ranap.altMaxBitrateType  altMaxBitrateType
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_MaxBitrateType

           ranap.altMaxBitrates  altMaxBitrates
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_MaxBitrates

           ranap.altSupportedGuaranteedBitrateType  altSupportedGuaranteedBitrateType
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_GuaranteedBitrateType

           ranap.altSupportedGuaranteedBitrates  altSupportedGuaranteedBitrates
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_SupportedGuaranteedBitrates

           ranap.altSupportedMaxBitrateType  altSupportedMaxBitrateType
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_MaxBitrateType

           ranap.altSupportedMaxBitrates  altSupportedMaxBitrates
               Unsigned 32-bit integer
               ranap.Alt_RAB_Parameter_SupportedMaxBitrates

           ranap.alt_RAB_Parameters  alt-RAB-Parameters
               No value
               ranap.Alt_RAB_Parameters

           ranap.altitude  altitude
               Unsigned 32-bit integer
               ranap.INTEGER_0_32767

           ranap.altitudeAndDirection  altitudeAndDirection
               No value
               ranap.GA_AltitudeAndDirection

           ranap.assGuaranteedBitRateInf  assGuaranteedBitRateInf
               Unsigned 32-bit integer
               ranap.Ass_RAB_Parameter_GuaranteedBitrateList

           ranap.assMaxBitrateInf  assMaxBitrateInf
               Unsigned 32-bit integer
               ranap.Ass_RAB_Parameter_MaxBitrateList

           ranap.ass_RAB_Parameters  ass-RAB-Parameters
               No value
               ranap.Ass_RAB_Parameters

           ranap.authorisedPLMNs  authorisedPLMNs
               Unsigned 32-bit integer
               ranap.AuthorisedPLMNs

           ranap.authorisedSNAsList  authorisedSNAsList
               Unsigned 32-bit integer
               ranap.AuthorisedSNAs

           ranap.bearing  bearing
               Unsigned 32-bit integer
               ranap.INTEGER_0_359

           ranap.bindingID  bindingID
               Byte array
               ranap.BindingID

           ranap.cGI  cGI
               No value
               ranap.CGI

           ranap.cI  cI
               Byte array
               ranap.CI

           ranap.cN_DomainIndicator  cN-DomainIndicator
               Unsigned 32-bit integer
               ranap.CN_DomainIndicator

           ranap.cN_ID  cN-ID
               Unsigned 32-bit integer
               ranap.CN_ID

           ranap.cause  cause
               Unsigned 32-bit integer
               ranap.Cause

           ranap.cell_Capacity_Class_Value  cell-Capacity-Class-Value
               Unsigned 32-bit integer
               ranap.Cell_Capacity_Class_Value

           ranap.chosenEncryptionAlgorithForCS  chosenEncryptionAlgorithForCS
               Unsigned 32-bit integer
               ranap.ChosenEncryptionAlgorithm

           ranap.chosenEncryptionAlgorithForPS  chosenEncryptionAlgorithForPS
               Unsigned 32-bit integer
               ranap.ChosenEncryptionAlgorithm

           ranap.chosenEncryptionAlgorithForSignalling  chosenEncryptionAlgorithForSignalling
               Unsigned 32-bit integer
               ranap.ChosenEncryptionAlgorithm

           ranap.chosenIntegrityProtectionAlgorithm  chosenIntegrityProtectionAlgorithm
               Unsigned 32-bit integer
               ranap.ChosenIntegrityProtectionAlgorithm

           ranap.cipheringKey  cipheringKey
               Byte array
               ranap.EncryptionKey

           ranap.cipheringKeyFlag  cipheringKeyFlag
               Byte array
               ranap.BIT_STRING_SIZE_1

           ranap.confidence  confidence
               Unsigned 32-bit integer
               ranap.INTEGER_0_127

           ranap.criticality  criticality
               Unsigned 32-bit integer
               ranap.Criticality

           ranap.currentDecipheringKey  currentDecipheringKey
               Byte array
               ranap.BIT_STRING_SIZE_56

           ranap.dCH_ID  dCH-ID
               Unsigned 32-bit integer
               ranap.DCH_ID

           ranap.dL_GTP_PDU_SequenceNumber  dL-GTP-PDU-SequenceNumber
               Unsigned 32-bit integer
               ranap.DL_GTP_PDU_SequenceNumber

           ranap.dSCH_ID  dSCH-ID
               Unsigned 32-bit integer
               ranap.DSCH_ID

           ranap.d_RNTI  d-RNTI
               Unsigned 32-bit integer
               ranap.D_RNTI

           ranap.dataForwardingInformation  dataForwardingInformation
               No value
               ranap.TNLInformationEnhRelInfoReq

           ranap.dataVolumeReference  dataVolumeReference
               Unsigned 32-bit integer
               ranap.DataVolumeReference

           ranap.dataVolumeReportingIndication  dataVolumeReportingIndication
               Unsigned 32-bit integer
               ranap.DataVolumeReportingIndication

           ranap.deliveryOfErroneousSDU  deliveryOfErroneousSDU
               Unsigned 32-bit integer
               ranap.DeliveryOfErroneousSDU

           ranap.deliveryOrder  deliveryOrder
               Unsigned 32-bit integer
               ranap.DeliveryOrder

           ranap.directionOfAltitude  directionOfAltitude
               Unsigned 32-bit integer
               ranap.T_directionOfAltitude

           ranap.dl_GTP_PDU_SequenceNumber  dl-GTP-PDU-SequenceNumber
               Unsigned 32-bit integer
               ranap.DL_GTP_PDU_SequenceNumber

           ranap.dl_N_PDU_SequenceNumber  dl-N-PDU-SequenceNumber
               Unsigned 32-bit integer
               ranap.DL_N_PDU_SequenceNumber

           ranap.dl_UnsuccessfullyTransmittedDataVolume  dl-UnsuccessfullyTransmittedDataVolume
               Unsigned 32-bit integer
               ranap.DataVolumeList

           ranap.dl_dataVolumes  dl-dataVolumes
               Unsigned 32-bit integer
               ranap.DataVolumeList

           ranap.dl_forwardingTransportAssociation  dl-forwardingTransportAssociation
               Unsigned 32-bit integer
               ranap.IuTransportAssociation

           ranap.dl_forwardingTransportLayerAddress  dl-forwardingTransportLayerAddress
               Byte array
               ranap.TransportLayerAddress

           ranap.downlinkCellLoadInformation  downlinkCellLoadInformation
               No value
               ranap.CellLoadInformation

           ranap.eNB_ID  eNB-ID
               Unsigned 32-bit integer
               ranap.ENB_ID

           ranap.ellipsoidArc  ellipsoidArc
               No value
               ranap.GA_EllipsoidArc

           ranap.emptyFullRAListofIdleModeUEs  emptyFullRAListofIdleModeUEs
               Unsigned 32-bit integer
               ranap.T_emptyFullRAListofIdleModeUEs

           ranap.equipmentsToBeTraced  equipmentsToBeTraced
               Unsigned 32-bit integer
               ranap.EquipmentsToBeTraced

           ranap.event  event
               Unsigned 32-bit integer
               ranap.Event

           ranap.exponent  exponent
               Unsigned 32-bit integer
               ranap.INTEGER_1_8

           ranap.extensionValue  extensionValue
               No value
               ranap.T_extensionValue

           ranap.firstCriticality  firstCriticality
               Unsigned 32-bit integer
               ranap.Criticality

           ranap.firstValue  firstValue
               No value
               ranap.T_firstValue

           ranap.gERAN_Cell_ID  gERAN-Cell-ID
               No value
               ranap.GERAN_Cell_ID

           ranap.gERAN_Classmark  gERAN-Classmark
               Byte array
               ranap.GERAN_Classmark

           ranap.gTPDLTEID  gTPDLTEID
               Unsigned 32-bit integer
               ranap.GTP_TEI

           ranap.gTP_TEI  gTP-TEI
               Unsigned 32-bit integer
               ranap.GTP_TEI

           ranap.geographicalArea  geographicalArea
               Unsigned 32-bit integer
               ranap.GeographicalArea

           ranap.geographicalCoordinates  geographicalCoordinates
               No value
               ranap.GeographicalCoordinates

           ranap.global  global
               Object Identifier
               ranap.OBJECT_IDENTIFIER

           ranap.guaranteedBitRate  guaranteedBitRate
               Unsigned 32-bit integer
               ranap.RAB_Parameter_GuaranteedBitrateList

           ranap.homeENB_ID  homeENB-ID
               Byte array
               ranap.BIT_STRING_SIZE_28

           ranap.horizontalSpeed  horizontalSpeed
               Unsigned 32-bit integer
               ranap.INTEGER_0_2047

           ranap.horizontalSpeedAndBearing  horizontalSpeedAndBearing
               No value
               ranap.HorizontalSpeedAndBearing

           ranap.horizontalUncertaintySpeed  horizontalUncertaintySpeed
               Unsigned 32-bit integer
               ranap.INTEGER_0_255

           ranap.horizontalVelocity  horizontalVelocity
               No value
               ranap.HorizontalVelocity

           ranap.horizontalVelocityWithUncertainty  horizontalVelocityWithUncertainty
               No value
               ranap.HorizontalVelocityWithUncertainty

           ranap.horizontalWithVeritcalVelocityAndUncertainty  horizontalWithVeritcalVelocityAndUncertainty
               No value
               ranap.HorizontalWithVerticalVelocityAndUncertainty

           ranap.horizontalWithVerticalVelocity  horizontalWithVerticalVelocity
               No value
               ranap.HorizontalWithVerticalVelocity

           ranap.iECriticality  iECriticality
               Unsigned 32-bit integer
               ranap.Criticality

           ranap.iE_Extensions  iE-Extensions
               Unsigned 32-bit integer
               ranap.ProtocolExtensionContainer

           ranap.iE_ID  iE-ID
               Unsigned 32-bit integer
               ranap.ProtocolIE_ID

           ranap.iEsCriticalityDiagnostics  iEsCriticalityDiagnostics
               Unsigned 32-bit integer
               ranap.CriticalityDiagnostics_IE_List

           ranap.iMEI  iMEI
               Byte array
               ranap.IMEI

           ranap.iMEIMask  iMEIMask
               Byte array
               ranap.BIT_STRING_SIZE_7

           ranap.iMEISV  iMEISV
               Byte array
               ranap.IMEISV

           ranap.iMEISVMask  iMEISVMask
               Byte array
               ranap.BIT_STRING_SIZE_7

           ranap.iMEISVgroup  iMEISVgroup
               No value
               ranap.IMEISVGroup

           ranap.iMEISVlist  iMEISVlist
               Unsigned 32-bit integer
               ranap.IMEISVList

           ranap.iMEIgroup  iMEIgroup
               No value
               ranap.IMEIGroup

           ranap.iMEIlist  iMEIlist
               Unsigned 32-bit integer
               ranap.IMEIList

           ranap.iMSI  iMSI
               Byte array
               ranap.IMSI

           ranap.iPMulticastAddress  iPMulticastAddress
               Byte array
               ranap.IPMulticastAddress

           ranap.id  id
               Unsigned 32-bit integer
               ranap.ProtocolIE_ID

           ranap.imei  imei
               Byte array
               ranap.IMEI

           ranap.imeisv  imeisv
               Byte array
               ranap.IMEISV

           ranap.imsi  imsi
               Byte array
               ranap.IMSI

           ranap.imsi_digits  IMSI digits
               String
               IMSI digits

           ranap.includedAngle  includedAngle
               Unsigned 32-bit integer
               ranap.INTEGER_0_179

           ranap.initiatingMessage  initiatingMessage
               No value
               ranap.InitiatingMessage

           ranap.innerRadius  innerRadius
               Unsigned 32-bit integer
               ranap.INTEGER_0_65535

           ranap.integrityProtectionKey  integrityProtectionKey
               Byte array
               ranap.IntegrityProtectionKey

           ranap.interface  interface
               Unsigned 32-bit integer
               ranap.T_interface

           ranap.iuSigConId  iuSigConId
               Byte array
               ranap.IuSignallingConnectionIdentifier

           ranap.iuTransportAssociation  iuTransportAssociation
               Unsigned 32-bit integer
               ranap.IuTransportAssociation

           ranap.iuTransportAssociationReq1  iuTransportAssociationReq1
               Unsigned 32-bit integer
               ranap.IuTransportAssociation

           ranap.iuTransportAssociationRes1  iuTransportAssociationRes1
               Unsigned 32-bit integer
               ranap.IuTransportAssociation

           ranap.joinedMBMSBearerService_IEs  joinedMBMSBearerService-IEs
               Unsigned 32-bit integer
               ranap.JoinedMBMSBearerService_IEs

           ranap.key  key
               Byte array
               ranap.EncryptionKey

           ranap.lAC  lAC
               Byte array
               ranap.LAC

           ranap.lAI  lAI
               No value
               ranap.LAI

           ranap.lA_LIST  lA-LIST
               Unsigned 32-bit integer
               ranap.LA_LIST

           ranap.latitude  latitude
               Unsigned 32-bit integer
               ranap.INTEGER_0_8388607

           ranap.latitudeSign  latitudeSign
               Unsigned 32-bit integer
               ranap.T_latitudeSign

           ranap.listOF_SNAs  listOF-SNAs
               Unsigned 32-bit integer
               ranap.ListOF_SNAs

           ranap.listOfInterfacesToTrace  listOfInterfacesToTrace
               Unsigned 32-bit integer
               ranap.ListOfInterfacesToTrace

           ranap.loadValue  loadValue
               Unsigned 32-bit integer
               ranap.LoadValue

           ranap.local  local
               Unsigned 32-bit integer
               ranap.INTEGER_0_65535

           ranap.longitude  longitude
               Signed 32-bit integer
               ranap.INTEGER_M8388608_8388607

           ranap.mBMSHCIndicator  mBMSHCIndicator
               Unsigned 32-bit integer
               ranap.MBMSHCIndicator

           ranap.mBMSIPMulticastAddressandAPNRequest  mBMSIPMulticastAddressandAPNRequest
               Unsigned 32-bit integer
               ranap.MBMSIPMulticastAddressandAPNRequest

           ranap.mBMS_PTP_RAB_ID  mBMS-PTP-RAB-ID
               Byte array
               ranap.MBMS_PTP_RAB_ID

           ranap.macroENB_ID  macroENB-ID
               Byte array
               ranap.BIT_STRING_SIZE_20

           ranap.mantissa  mantissa
               Unsigned 32-bit integer
               ranap.INTEGER_1_9

           ranap.maxBitrate  maxBitrate
               Unsigned 32-bit integer
               ranap.RAB_Parameter_MaxBitrateList

           ranap.maxSDU_Size  maxSDU-Size
               Unsigned 32-bit integer
               ranap.MaxSDU_Size

           ranap.misc  misc
               Unsigned 32-bit integer
               ranap.CauseMisc

           ranap.nAS  nAS
               Unsigned 32-bit integer
               ranap.CauseNAS

           ranap.nAS_PDU  nAS-PDU
               Byte array
               ranap.NAS_PDU

           ranap.nAS_SynchronisationIndicator  nAS-SynchronisationIndicator
               Byte array
               ranap.NAS_SynchronisationIndicator

           ranap.nRTLoadInformationValue  nRTLoadInformationValue
               Unsigned 32-bit integer
               ranap.NRTLoadInformationValue

           ranap.newRAListofIdleModeUEs  newRAListofIdleModeUEs
               Unsigned 32-bit integer
               ranap.NewRAListofIdleModeUEs

           ranap.nextDecipheringKey  nextDecipheringKey
               Byte array
               ranap.BIT_STRING_SIZE_56

           ranap.non_Standard  non-Standard
               Unsigned 32-bit integer
               ranap.CauseNon_Standard

           ranap.nonce  nonce
               Byte array
               ranap.BIT_STRING_SIZE_128

           ranap.notEmptyRAListofIdleModeUEs  notEmptyRAListofIdleModeUEs
               No value
               ranap.NotEmptyRAListofIdleModeUEs

           ranap.numberOfIuInstances  numberOfIuInstances
               Unsigned 32-bit integer
               ranap.NumberOfIuInstances

           ranap.offsetAngle  offsetAngle
               Unsigned 32-bit integer
               ranap.INTEGER_0_179

           ranap.orientationOfMajorAxis  orientationOfMajorAxis
               Unsigned 32-bit integer
               ranap.INTEGER_0_179

           ranap.outcome  outcome
               No value
               ranap.Outcome

           ranap.pDP_TypeInformation  pDP-TypeInformation
               Unsigned 32-bit integer
               ranap.PDP_TypeInformation

           ranap.pLMNidentity  pLMNidentity
               Byte array
               ranap.PLMNidentity

           ranap.pLMNs_in_shared_network  pLMNs-in-shared-network
               Unsigned 32-bit integer
               ranap.PLMNs_in_shared_network

           ranap.p_TMSI  p-TMSI
               Byte array
               ranap.P_TMSI

           ranap.permanentNAS_UE_ID  permanentNAS-UE-ID
               Unsigned 32-bit integer
               ranap.PermanentNAS_UE_ID

           ranap.permittedAlgorithms  permittedAlgorithms
               Unsigned 32-bit integer
               ranap.PermittedEncryptionAlgorithms

           ranap.point  point
               No value
               ranap.GA_Point

           ranap.pointWithAltitude  pointWithAltitude
               No value
               ranap.GA_PointWithAltitude

           ranap.pointWithAltitudeAndUncertaintyEllipsoid  pointWithAltitudeAndUncertaintyEllipsoid
               No value
               ranap.GA_PointWithAltitudeAndUncertaintyEllipsoid

           ranap.pointWithUnCertainty  pointWithUnCertainty
               No value
               ranap.GA_PointWithUnCertainty

           ranap.pointWithUncertaintyEllipse  pointWithUncertaintyEllipse
               No value
               ranap.GA_PointWithUnCertaintyEllipse

           ranap.polygon  polygon
               Unsigned 32-bit integer
               ranap.GA_Polygon

           ranap.positioningDataDiscriminator  positioningDataDiscriminator
               Byte array
               ranap.PositioningDataDiscriminator

           ranap.positioningDataSet  positioningDataSet
               Unsigned 32-bit integer
               ranap.PositioningDataSet

           ranap.pre_emptionCapability  pre-emptionCapability
               Unsigned 32-bit integer
               ranap.Pre_emptionCapability

           ranap.pre_emptionVulnerability  pre-emptionVulnerability
               Unsigned 32-bit integer
               ranap.Pre_emptionVulnerability

           ranap.priorityLevel  priorityLevel
               Unsigned 32-bit integer
               ranap.PriorityLevel

           ranap.privateIEs  privateIEs
               Unsigned 32-bit integer
               ranap.PrivateIE_Container

           ranap.procedureCode  procedureCode
               Unsigned 32-bit integer
               ranap.ProcedureCode

           ranap.procedureCriticality  procedureCriticality
               Unsigned 32-bit integer
               ranap.Criticality

           ranap.protocol  protocol
               Unsigned 32-bit integer
               ranap.CauseProtocol

           ranap.protocolExtensions  protocolExtensions
               Unsigned 32-bit integer
               ranap.ProtocolExtensionContainer

           ranap.protocolIEs  protocolIEs
               Unsigned 32-bit integer
               ranap.ProtocolIE_Container

           ranap.queuingAllowed  queuingAllowed
               Unsigned 32-bit integer
               ranap.QueuingAllowed

           ranap.rAB_AsymmetryIndicator  rAB-AsymmetryIndicator
               Unsigned 32-bit integer
               ranap.RAB_AsymmetryIndicator

           ranap.rAB_ID  rAB-ID
               Byte array
               ranap.RAB_ID

           ranap.rAB_Parameters  rAB-Parameters
               No value
               ranap.RAB_Parameters

           ranap.rAB_SubflowCombinationBitRate  rAB-SubflowCombinationBitRate
               Unsigned 32-bit integer
               ranap.RAB_SubflowCombinationBitRate

           ranap.rAB_TrCH_Mapping  rAB-TrCH-Mapping
               Unsigned 32-bit integer
               ranap.RAB_TrCH_Mapping

           ranap.rAC  rAC
               Byte array
               ranap.RAC

           ranap.rAI  rAI
               No value
               ranap.RAI

           ranap.rAListwithNoIdleModeUEsAnyMore  rAListwithNoIdleModeUEsAnyMore
               Unsigned 32-bit integer
               ranap.RAListwithNoIdleModeUEsAnyMore

           ranap.rAofIdleModeUEs  rAofIdleModeUEs
               Unsigned 32-bit integer
               ranap.RAofIdleModeUEs

           ranap.rIMInformation  rIMInformation
               Byte array
               ranap.RIMInformation

           ranap.rIMRoutingAddress  rIMRoutingAddress
               Unsigned 32-bit integer
               ranap.RIMRoutingAddress

           ranap.rIM_Transfer  rIM-Transfer
               No value
               ranap.RIM_Transfer

           ranap.rNCTraceInformation  rNCTraceInformation
               No value
               ranap.RNCTraceInformation

           ranap.rNC_ID  rNC-ID
               Unsigned 32-bit integer
               ranap.RNC_ID

           ranap.rRC_Container  rRC-Container
               Byte array
               ranap.RRC_Container

           ranap.rTLoadValue  rTLoadValue
               Unsigned 32-bit integer
               ranap.RTLoadValue

           ranap.rab2beReleasedList  rab2beReleasedList
               Unsigned 32-bit integer
               ranap.RAB_ToBeReleasedList_EnhancedRelocCompleteRes

           ranap.radioNetwork  radioNetwork
               Unsigned 32-bit integer
               ranap.CauseRadioNetwork

           ranap.radioNetworkExtension  radioNetworkExtension
               Unsigned 32-bit integer
               ranap.CauseRadioNetworkExtension

           ranap.relocationRequirement  relocationRequirement
               Unsigned 32-bit integer
               ranap.RelocationRequirement

           ranap.relocationType  relocationType
               Unsigned 32-bit integer
               ranap.RelocationType

           ranap.repetitionNumber  repetitionNumber
               Unsigned 32-bit integer
               ranap.RepetitionNumber0

           ranap.reportArea  reportArea
               Unsigned 32-bit integer
               ranap.ReportArea

           ranap.reportingAmount  reportingAmount
               Unsigned 32-bit integer
               ranap.INTEGER_1_8639999_

           ranap.reportingInterval  reportingInterval
               Unsigned 32-bit integer
               ranap.INTEGER_1_8639999_

           ranap.requestedGPSAssistanceData  requestedGPSAssistanceData
               Byte array
               ranap.RequestedGPSAssistanceData

           ranap.requestedGuaranteedBitrates  requestedGuaranteedBitrates
               Unsigned 32-bit integer
               ranap.Requested_RAB_Parameter_GuaranteedBitrateList

           ranap.requestedLocationRelatedDataType  requestedLocationRelatedDataType
               Unsigned 32-bit integer
               ranap.RequestedLocationRelatedDataType

           ranap.requestedMBMSIPMulticastAddressandAPNRequest  requestedMBMSIPMulticastAddressandAPNRequest
               Unsigned 32-bit integer
               ranap.RequestedMBMSIPMulticastAddressandAPNRequest

           ranap.requestedMaxBitrates  requestedMaxBitrates
               Unsigned 32-bit integer
               ranap.Requested_RAB_Parameter_MaxBitrateList

           ranap.requestedMulticastServiceList  requestedMulticastServiceList
               Unsigned 32-bit integer
               ranap.RequestedMulticastServiceList

           ranap.requested_RAB_Parameter_Values  requested-RAB-Parameter-Values
               No value
               ranap.Requested_RAB_Parameter_Values

           ranap.residualBitErrorRatio  residualBitErrorRatio
               No value
               ranap.ResidualBitErrorRatio

           ranap.sAC  sAC
               Byte array
               ranap.SAC

           ranap.sAI  sAI
               No value
               ranap.SAI

           ranap.sAPI  sAPI
               Unsigned 32-bit integer
               ranap.SAPI

           ranap.sDU_ErrorRatio  sDU-ErrorRatio
               No value
               ranap.SDU_ErrorRatio

           ranap.sDU_FormatInformationParameters  sDU-FormatInformationParameters
               Unsigned 32-bit integer
               ranap.SDU_FormatInformationParameters

           ranap.sDU_Parameters  sDU-Parameters
               Unsigned 32-bit integer
               ranap.SDU_Parameters

           ranap.sRB_ID  sRB-ID
               Unsigned 32-bit integer
               ranap.SRB_ID

           ranap.secondCriticality  secondCriticality
               Unsigned 32-bit integer
               ranap.Criticality

           ranap.secondValue  secondValue
               No value
               ranap.T_secondValue

           ranap.selectedTAI  selectedTAI
               No value
               ranap.TAI

           ranap.serviceID  serviceID
               Byte array
               ranap.OCTET_STRING_SIZE_3

           ranap.service_Handover  service-Handover
               Unsigned 32-bit integer
               ranap.Service_Handover

           ranap.shared_network_information  shared-network-information
               No value
               ranap.Shared_Network_Information

           ranap.sourceCellID  sourceCellID
               Unsigned 32-bit integer
               ranap.SourceCellID

           ranap.sourceGERANCellID  sourceGERANCellID
               No value
               ranap.CGI

           ranap.sourceRNC_ID  sourceRNC-ID
               No value
               ranap.SourceRNC_ID

           ranap.sourceSideIuULTNLInfo  sourceSideIuULTNLInfo
               No value
               ranap.TNLInformationEnhRelInfoReq

           ranap.sourceStatisticsDescriptor  sourceStatisticsDescriptor
               Unsigned 32-bit integer
               ranap.SourceStatisticsDescriptor

           ranap.sourceUTRANCellID  sourceUTRANCellID
               No value
               ranap.SourceUTRANCellID

           ranap.subflowSDU_Size  subflowSDU-Size
               Unsigned 32-bit integer
               ranap.SubflowSDU_Size

           ranap.successfulOutcome  successfulOutcome
               No value
               ranap.SuccessfulOutcome

           ranap.tAC  tAC
               Byte array
               ranap.TAC

           ranap.tMGI  tMGI
               No value
               ranap.TMGI

           ranap.tMSI  tMSI
               Byte array
               ranap.TMSI

           ranap.targetCellId  targetCellId
               Unsigned 32-bit integer
               ranap.TargetCellId

           ranap.targetRNC_ID  targetRNC-ID
               No value
               ranap.TargetRNC_ID

           ranap.targeteNB_ID  targeteNB-ID
               No value
               ranap.Global_ENB_ID

           ranap.trCH_ID  trCH-ID
               No value
               ranap.TrCH_ID

           ranap.trCH_ID_List  trCH-ID-List
               Unsigned 32-bit integer
               ranap.TrCH_ID_List

           ranap.traceActivationIndicator  traceActivationIndicator
               Unsigned 32-bit integer
               ranap.T_traceActivationIndicator

           ranap.traceDepth  traceDepth
               Unsigned 32-bit integer
               ranap.TraceDepth

           ranap.traceRecordingSessionReference  traceRecordingSessionReference
               Unsigned 32-bit integer
               ranap.TraceRecordingSessionReference

           ranap.traceReference  traceReference
               Byte array
               ranap.TraceReference

           ranap.trafficClass  trafficClass
               Unsigned 32-bit integer
               ranap.TrafficClass

           ranap.trafficHandlingPriority  trafficHandlingPriority
               Unsigned 32-bit integer
               ranap.TrafficHandlingPriority

           ranap.transferDelay  transferDelay
               Unsigned 32-bit integer
               ranap.TransferDelay

           ranap.transmissionNetwork  transmissionNetwork
               Unsigned 32-bit integer
               ranap.CauseTransmissionNetwork

           ranap.transportLayerAddress  transportLayerAddress
               Byte array
               ranap.TransportLayerAddress

           ranap.transportLayerAddressReq1  transportLayerAddressReq1
               Byte array
               ranap.TransportLayerAddress

           ranap.transportLayerAddressRes1  transportLayerAddressRes1
               Byte array
               ranap.TransportLayerAddress

           ranap.transportLayerAddress_ipv4  transportLayerAddress IPv4
               IPv4 address

           ranap.transportLayerAddress_ipv6  transportLayerAddress IPv6
               IPv6 address

           ranap.transportLayerInformation  transportLayerInformation
               No value
               ranap.TransportLayerInformation

           ranap.triggeringMessage  triggeringMessage
               Unsigned 32-bit integer
               ranap.TriggeringMessage

           ranap.uESBI_IuA  uESBI-IuA
               Byte array
               ranap.UESBI_IuA

           ranap.uESBI_IuB  uESBI-IuB
               Byte array
               ranap.UESBI_IuB

           ranap.uL_GTP_PDU_SequenceNumber  uL-GTP-PDU-SequenceNumber
               Unsigned 32-bit integer
               ranap.UL_GTP_PDU_SequenceNumber

           ranap.uP_ModeVersions  uP-ModeVersions
               Byte array
               ranap.UP_ModeVersions

           ranap.uSCH_ID  uSCH-ID
               Unsigned 32-bit integer
               ranap.USCH_ID

           ranap.ul_GTP_PDU_SequenceNumber  ul-GTP-PDU-SequenceNumber
               Unsigned 32-bit integer
               ranap.UL_GTP_PDU_SequenceNumber

           ranap.ul_N_PDU_SequenceNumber  ul-N-PDU-SequenceNumber
               Unsigned 32-bit integer
               ranap.UL_N_PDU_SequenceNumber

           ranap.uncertaintyAltitude  uncertaintyAltitude
               Unsigned 32-bit integer
               ranap.INTEGER_0_127

           ranap.uncertaintyCode  uncertaintyCode
               Unsigned 32-bit integer
               ranap.INTEGER_0_127

           ranap.uncertaintyEllipse  uncertaintyEllipse
               No value
               ranap.GA_UncertaintyEllipse

           ranap.uncertaintyRadius  uncertaintyRadius
               Unsigned 32-bit integer
               ranap.INTEGER_0_127

           ranap.uncertaintySemi_major  uncertaintySemi-major
               Unsigned 32-bit integer
               ranap.INTEGER_0_127

           ranap.uncertaintySemi_minor  uncertaintySemi-minor
               Unsigned 32-bit integer
               ranap.INTEGER_0_127

           ranap.uncertaintySpeed  uncertaintySpeed
               Unsigned 32-bit integer
               ranap.INTEGER_0_255

           ranap.unsuccessfulOutcome  unsuccessfulOutcome
               No value
               ranap.UnsuccessfulOutcome

           ranap.uplinkCellLoadInformation  uplinkCellLoadInformation
               No value
               ranap.CellLoadInformation

           ranap.userPlaneInformation  userPlaneInformation
               No value
               ranap.UserPlaneInformation

           ranap.userPlaneMode  userPlaneMode
               Unsigned 32-bit integer
               ranap.UserPlaneMode

           ranap.value  value
               No value
               ranap.T_ie_field_value

           ranap.veritcalSpeed  veritcalSpeed
               Unsigned 32-bit integer
               ranap.INTEGER_0_255

           ranap.veritcalSpeedDirection  veritcalSpeedDirection
               Unsigned 32-bit integer
               ranap.VerticalSpeedDirection

           ranap.veritcalVelocity  veritcalVelocity
               No value
               ranap.VerticalVelocity

           ranap.verticalUncertaintySpeed  verticalUncertaintySpeed
               Unsigned 32-bit integer
               ranap.INTEGER_0_255

   Radio Resource Control (RRC) protocol (rrc)
           rrc.AC_To_ASC_Mapping  AC-To-ASC-Mapping
               Unsigned 32-bit integer
               rrc.AC_To_ASC_Mapping

           rrc.AP_Signature  AP-Signature
               Unsigned 32-bit integer
               rrc.AP_Signature

           rrc.AP_Signature_VCAM  AP-Signature-VCAM
               No value
               rrc.AP_Signature_VCAM

           rrc.AP_Subchannel  AP-Subchannel
               Unsigned 32-bit integer
               rrc.AP_Subchannel

           rrc.ASCSetting_FDD  ASCSetting-FDD
               No value
               rrc.ASCSetting_FDD

           rrc.ASCSetting_TDD  ASCSetting-TDD
               No value
               rrc.ASCSetting_TDD

           rrc.ASCSetting_TDD_LCR_r4  ASCSetting-TDD-LCR-r4
               No value
               rrc.ASCSetting_TDD_LCR_r4

           rrc.ASCSetting_TDD_r7  ASCSetting-TDD-r7
               No value
               rrc.ASCSetting_TDD_r7

           rrc.AccessClassBarred  AccessClassBarred
               Unsigned 32-bit integer
               rrc.AccessClassBarred

           rrc.AcquisitionSatInfo  AcquisitionSatInfo
               No value
               rrc.AcquisitionSatInfo

           rrc.AdditionalPRACH_TF_and_TFCS_CCCH  AdditionalPRACH-TF-and-TFCS-CCCH
               No value
               rrc.AdditionalPRACH_TF_and_TFCS_CCCH

           rrc.AllowedTFI_List_item  AllowedTFI-List item
               Unsigned 32-bit integer
               rrc.INTEGER_0_31

           rrc.AlmanacSatInfo  AlmanacSatInfo
               No value
               rrc.AlmanacSatInfo

           rrc.AvailableMinimumSF_VCAM  AvailableMinimumSF-VCAM
               No value
               rrc.AvailableMinimumSF_VCAM

           rrc.BCCH_BCH_Message  BCCH-BCH-Message
               No value
               rrc.BCCH_BCH_Message

           rrc.BCCH_FACH_Message  BCCH-FACH-Message
               No value
               rrc.BCCH_FACH_Message

           rrc.BLER_MeasurementResults  BLER-MeasurementResults
               No value
               rrc.BLER_MeasurementResults

           rrc.BadSatList_item  BadSatList item
               Unsigned 32-bit integer
               rrc.INTEGER_0_63

           rrc.CDMA2000_Message  CDMA2000-Message
               No value
               rrc.CDMA2000_Message

           rrc.CD_AccessSlotSubchannel  CD-AccessSlotSubchannel
               Unsigned 32-bit integer
               rrc.CD_AccessSlotSubchannel

           rrc.CD_SignatureCode  CD-SignatureCode
               Unsigned 32-bit integer
               rrc.CD_SignatureCode

           rrc.CN_DomainInformation  CN-DomainInformation
               No value
               rrc.CN_DomainInformation

           rrc.CN_DomainInformationFull  CN-DomainInformationFull
               No value
               rrc.CN_DomainInformationFull

           rrc.CN_DomainInformation_v390ext  CN-DomainInformation-v390ext
               No value
               rrc.CN_DomainInformation_v390ext

           rrc.CN_DomainSysInfo  CN-DomainSysInfo
               No value
               rrc.CN_DomainSysInfo

           rrc.COUNT_CSingle  COUNT-CSingle
               No value
               rrc.COUNT_CSingle

           rrc.CPCH_PersistenceLevels  CPCH-PersistenceLevels
               No value
               rrc.CPCH_PersistenceLevels

           rrc.CPCH_SetInfo  CPCH-SetInfo
               No value
               rrc.CPCH_SetInfo

           rrc.CellIdentity  CellIdentity
               Byte array
               rrc.CellIdentity

           rrc.CellMeasuredResults  CellMeasuredResults
               No value
               rrc.CellMeasuredResults

           rrc.CellSelectReselectInfo_v590ext  CellSelectReselectInfo-v590ext
               No value
               rrc.CellSelectReselectInfo_v590ext

           rrc.CellToReport  CellToReport
               No value
               rrc.CellToReport

           rrc.CipheringInfoPerRB  CipheringInfoPerRB
               No value
               rrc.CipheringInfoPerRB

           rrc.CipheringInfoPerRB_r4  CipheringInfoPerRB-r4
               No value
               rrc.CipheringInfoPerRB_r4

           rrc.CipheringStatusCNdomain  CipheringStatusCNdomain
               No value
               rrc.CipheringStatusCNdomain

           rrc.CipheringStatusCNdomain_r4  CipheringStatusCNdomain-r4
               No value
               rrc.CipheringStatusCNdomain_r4

           rrc.CodeChangeStatus  CodeChangeStatus
               No value
               rrc.CodeChangeStatus

           rrc.CommonDynamicTF_Info  CommonDynamicTF-Info
               No value
               rrc.CommonDynamicTF_Info

           rrc.CommonDynamicTF_Info_DynamicTTI  CommonDynamicTF-Info-DynamicTTI
               No value
               rrc.CommonDynamicTF_Info_DynamicTTI

           rrc.Common_MAC_ehs_ReorderingQueue  Common-MAC-ehs-ReorderingQueue
               No value
               rrc.Common_MAC_ehs_ReorderingQueue

           rrc.CompleteSIBshort  CompleteSIBshort
               No value
               rrc.CompleteSIBshort

           rrc.CompressedModeMeasCapabFDD  CompressedModeMeasCapabFDD
               No value
               rrc.CompressedModeMeasCapabFDD

           rrc.CompressedModeMeasCapabFDD2  CompressedModeMeasCapabFDD2
               No value
               rrc.CompressedModeMeasCapabFDD2

           rrc.CompressedModeMeasCapabFDD_ext  CompressedModeMeasCapabFDD-ext
               No value
               rrc.CompressedModeMeasCapabFDD_ext

           rrc.CompressedModeMeasCapabGSM  CompressedModeMeasCapabGSM
               No value
               rrc.CompressedModeMeasCapabGSM

           rrc.CompressedModeMeasCapabTDD  CompressedModeMeasCapabTDD
               No value
               rrc.CompressedModeMeasCapabTDD

           rrc.DGANSSInfo  DGANSSInfo
               No value
               rrc.DGANSSInfo

           rrc.DGANSSSignalInformation  DGANSSSignalInformation
               No value
               rrc.DGANSSSignalInformation

           rrc.DGPS_CorrectionSatInfo  DGPS-CorrectionSatInfo
               No value
               rrc.DGPS_CorrectionSatInfo

           rrc.DL_AddReconfTransChInformation  DL-AddReconfTransChInformation
               No value
               rrc.DL_AddReconfTransChInformation

           rrc.DL_AddReconfTransChInformation2  DL-AddReconfTransChInformation2
               No value
               rrc.DL_AddReconfTransChInformation2

           rrc.DL_AddReconfTransChInformation_r4  DL-AddReconfTransChInformation-r4
               No value
               rrc.DL_AddReconfTransChInformation_r4

           rrc.DL_AddReconfTransChInformation_r5  DL-AddReconfTransChInformation-r5
               No value
               rrc.DL_AddReconfTransChInformation_r5

           rrc.DL_AddReconfTransChInformation_r7  DL-AddReconfTransChInformation-r7
               No value
               rrc.DL_AddReconfTransChInformation_r7

           rrc.DL_CCCH_Message  DL-CCCH-Message
               No value
               rrc.DL_CCCH_Message

           rrc.DL_CCTrCh  DL-CCTrCh
               No value
               rrc.DL_CCTrCh

           rrc.DL_CCTrCh_r4  DL-CCTrCh-r4
               No value
               rrc.DL_CCTrCh_r4

           rrc.DL_CCTrCh_r7  DL-CCTrCh-r7
               No value
               rrc.DL_CCTrCh_r7

           rrc.DL_ChannelisationCode  DL-ChannelisationCode
               No value
               rrc.DL_ChannelisationCode

           rrc.DL_DCCH_Message  DL-DCCH-Message
               No value
               rrc.DL_DCCH_Message

           rrc.DL_HSPDSCH_MultiCarrier_Information_item  DL-HSPDSCH-MultiCarrier-Information item
               No value
               rrc.DL_HSPDSCH_MultiCarrier_Information_item

           rrc.DL_HSPDSCH_TS_Configuration_VHCR_item  DL-HSPDSCH-TS-Configuration-VHCR item
               No value
               rrc.DL_HSPDSCH_TS_Configuration_VHCR_item

           rrc.DL_HSPDSCH_TS_Configuration_item  DL-HSPDSCH-TS-Configuration item
               No value
               rrc.DL_HSPDSCH_TS_Configuration_item

           rrc.DL_InformationPerRL  DL-InformationPerRL
               No value
               rrc.DL_InformationPerRL

           rrc.DL_InformationPerRL_PostFDD  DL-InformationPerRL-PostFDD
               No value
               rrc.DL_InformationPerRL_PostFDD

           rrc.DL_InformationPerRL_r4  DL-InformationPerRL-r4
               No value
               rrc.DL_InformationPerRL_r4

           rrc.DL_InformationPerRL_r5  DL-InformationPerRL-r5
               No value
               rrc.DL_InformationPerRL_r5

           rrc.DL_InformationPerRL_r5bis  DL-InformationPerRL-r5bis
               No value
               rrc.DL_InformationPerRL_r5bis

           rrc.DL_InformationPerRL_r6  DL-InformationPerRL-r6
               No value
               rrc.DL_InformationPerRL_r6

           rrc.DL_InformationPerRL_r7  DL-InformationPerRL-r7
               No value
               rrc.DL_InformationPerRL_r7

           rrc.DL_InformationPerRL_v6b0ext  DL-InformationPerRL-v6b0ext
               No value
               rrc.DL_InformationPerRL_v6b0ext

           rrc.DL_LogicalChannelMapping  DL-LogicalChannelMapping
               No value
               rrc.DL_LogicalChannelMapping

           rrc.DL_LogicalChannelMapping_r5  DL-LogicalChannelMapping-r5
               No value
               rrc.DL_LogicalChannelMapping_r5

           rrc.DL_LogicalChannelMapping_r7  DL-LogicalChannelMapping-r7
               No value
               rrc.DL_LogicalChannelMapping_r7

           rrc.DL_SHCCH_Message  DL-SHCCH-Message
               No value
               rrc.DL_SHCCH_Message

           rrc.DL_TPC_PowerOffsetPerRL  DL-TPC-PowerOffsetPerRL
               No value
               rrc.DL_TPC_PowerOffsetPerRL

           rrc.DL_TS_ChannelisationCode  DL-TS-ChannelisationCode
               Unsigned 32-bit integer
               rrc.DL_TS_ChannelisationCode

           rrc.DL_TransportChannelIdentity  DL-TransportChannelIdentity
               No value
               rrc.DL_TransportChannelIdentity

           rrc.DL_TransportChannelIdentity_r5  DL-TransportChannelIdentity-r5
               No value
               rrc.DL_TransportChannelIdentity_r5

           rrc.DL_TransportChannelIdentity_r7  DL-TransportChannelIdentity-r7
               No value
               rrc.DL_TransportChannelIdentity_r7

           rrc.DRAC_StaticInformation  DRAC-StaticInformation
               No value
               rrc.DRAC_StaticInformation

           rrc.DRAC_SysInfo  DRAC-SysInfo
               No value
               rrc.DRAC_SysInfo

           rrc.DSCH_Mapping  DSCH-Mapping
               No value
               rrc.DSCH_Mapping

           rrc.DSCH_TransportChannelsInfo_item  DSCH-TransportChannelsInfo item
               No value
               rrc.DSCH_TransportChannelsInfo_item

           rrc.DataBitAssistance  DataBitAssistance
               No value
               rrc.DataBitAssistance

           rrc.DataBitAssistanceSat