wireshark-filter - Wireshark filter syntax and reference
wireshark [other options] [ -R ``filter expression'' ]
tshark [other options] [ -R ``filter expression'' ]
Wireshark and TShark share a powerful filter engine that helps remove the noise from a packet trace and lets you see only the packets that interest you. If a packet meets the requirements expressed in your filter, then it is displayed in the list of packets. Display filters let you compare the fields within a protocol against a specific value, compare fields against fields, and check the existence of specified fields or protocols.
Filters are also used by other features such as statistics generation and packet list colorization (the latter is only available to Wireshark). This manual page describes their syntax and provides a comprehensive reference of filter fields.
The simplest filter allows you to check for the existence of a protocol or field. If you want to see all packets which contain the IP protocol, the filter would be ``ip'' (without the quotation marks). To see all packets that contain a Token-Ring RIF field, use ``tr.rif''.
Think of a protocol or field in a filter as implicitly having the ``exists'' operator.
Note: all protocol and field names that are available in Wireshark and TShark filters are listed in the comprehensive FILTER PROTOCOL REFERENCE (see below).
Fields can also be compared against values. The comparison operators can be expressed either through English-like abbreviations or through C-like symbols:
eq, == Equal
ne, != Not Equal
gt, > Greater Than
lt, < Less Than
ge, >= Greater than or Equal to
le, <= Less than or Equal to
Additional operators exist expressed only in English, not C-like syntax:
contains Does the protocol, field or slice contain a value
matches Does the protocol or text string match the given Perl
regular expression
The ``contains'' operator allows a filter to search for a sequence of characters, expressed as a string (quoted or unquoted), or bytes, expressed as a byte array. For example, to search for a given HTTP URL in a capture, the following filter can be used:
http contains "http://www.wireshark.org"
The ``contains'' operator cannot be used on atomic fields, such as numbers or IP addresses.
The ``matches'' operator allows a filter to apply to a specified Perl-compatible regular expression (PCRE). The ``matches'' operator is only implemented for protocols and for protocol fields with a text string representation. For example, to search for a given WAP WSP User-Agent, you can write:
wsp.user_agent matches "(?i)cldc"
This example shows an interesting PCRE feature: pattern match options have to
be specified with the (?option) construct. For instance, (?i) performs
a case-insensitive pattern match. More information on PCRE can be found in the
pcrepattern(3) man page (Perl Regular Expressions are explained in
http://www.perldoc.com/perl5.8.0/pod/perlre.html).
Note: the ``matches'' operator is only available if Wireshark or TShark have been compiled with the PCRE library. This can be checked by running:
wireshark -v
tshark -v
or selecting the ``About Wireshark'' item from the ``Help'' menu in Wireshark.
The filter language has the following functions:
upper(string-field) - converts a string field to uppercase
lower(string-field) - converts a string field to lowercase
upper() and lower() are useful for performing case-insensitive string
comparisons. For example:
upper(ncp.nds_stream_name) contains "MACRO"
lower(mount.dump.hostname) == "angel"
Each protocol field is typed. The types are:
Unsigned integer (8-bit, 16-bit, 24-bit, or 32-bit)
Signed integer (8-bit, 16-bit, 24-bit, or 32-bit)
Boolean
Ethernet address (6 bytes)
Byte array
IPv4 address
IPv6 address
IPX network number
Text string
Double-precision floating point number
An integer may be expressed in decimal, octal, or hexadecimal notation. The following three display filters are equivalent:
frame.pkt_len > 10
frame.pkt_len > 012
frame.pkt_len > 0xa
Boolean values are either true or false. In a display filter expression testing the value of a Boolean field, ``true'' is expressed as 1 or any other non-zero value, and ``false'' is expressed as zero. For example, a token-ring packet's source route field is Boolean. To find any source-routed packets, a display filter would be:
tr.sr == 1
Non source-routed packets can be found with:
tr.sr == 0
Ethernet addresses and byte arrays are represented by hex digits. The hex digits may be separated by colons, periods, or hyphens:
eth.dst eq ff:ff:ff:ff:ff:ff
aim.data == 0.1.0.d
fddi.src == aa-aa-aa-aa-aa-aa
echo.data == 7a
IPv4 addresses can be represented in either dotted decimal notation or by using the hostname:
ip.dst eq www.mit.edu
ip.src == 192.168.1.1
IPv4 addresses can be compared with the same logical relations as numbers: eq, ne, gt, ge, lt, and le. The IPv4 address is stored in host order, so you do not have to worry about the endianness of an IPv4 address when using it in a display filter.
Classless InterDomain Routing (CIDR) notation can be used to test if an IPv4 address is in a certain subnet. For example, this display filter will find all packets in the 129.111 Class-B network:
ip.addr == 129.111.0.0/16
Remember, the number after the slash represents the number of bits used to represent the network. CIDR notation can also be used with hostnames, as in this example of finding IP addresses on the same Class C network as 'sneezy':
ip.addr eq sneezy/24
The CIDR notation can only be used on IP addresses or hostnames, not in variable names. So, a display filter like ``ip.src/24 == ip.dst/24'' is not valid (yet).
IPX networks are represented by unsigned 32-bit integers. Most likely you will be using hexadecimal when testing IPX network values:
ipx.src.net == 0xc0a82c00
Strings are enclosed in double quotes:
http.request.method == "POST"
Inside double quotes, you may use a backslash to embed a double quote or an arbitrary byte represented in either octal or hexadecimal.
browser.comment == "An embedded \" double-quote"
Use of hexadecimal to look for ``HEAD'':
http.request.method == "\x48EAD"
Use of octal to look for ``HEAD'':
http.request.method == "\110EAD"
This means that you must escape backslashes with backslashes inside double quotes.
smb.path contains "\\\\SERVER\\SHARE"
looks for \\SERVER\SHARE in ``smb.path''.
You can take a slice of a field if the field is a text string or a byte array. For example, you can filter on the vendor portion of an ethernet address (the first three bytes) like this:
eth.src[0:3] == 00:00:83
Another example is:
http.content_type[0:4] == "text"
You can use the slice operator on a protocol name, too. The ``frame'' protocol can be useful, encompassing all the data captured by Wireshark or TShark.
token[0:5] ne 0.0.0.1.1
llc[0] eq aa
frame[100-199] contains "wireshark"
The following syntax governs slices:
[i:j] i = start_offset, j = length
[i-j] i = start_offset, j = end_offset, inclusive.
[i] i = start_offset, length = 1
[:j] start_offset = 0, length = j
[i:] start_offset = i, end_offset = end_of_field
Offsets can be negative, in which case they indicate the offset from the end of the field. The last byte of the field is at offset -1, the last but one byte is at offset -2, and so on. Here's how to check the last four bytes of a frame:
frame[-4:4] == 0.1.2.3
or
frame[-4:] == 0.1.2.3
You can concatenate slices using the comma operator:
ftp[1,3-5,9:] == 01:03:04:05:09:0a:0b
This concatenates offset 1, offsets 3-5, and offset 9 to the end of the ftp data.
If a field is a text string or a byte array, it can be expressed in whichever way is most convenient.
So, for instance, the following filters are equivalent:
http.request.method == "GET"
http.request.method == 47.45.54
A range can also be expressed in either way:
frame[60:2] gt 50.51
frame[60:2] gt "PQ"
It is also possible to define tests with bit field operations. Currently the following bit field operation is supported:
bitwise_and, & Bitwise AND
The bitwise AND operation allows testing to see if one or more bits are set. Bitwise AND operates on integer protocol fields and slices.
When testing for TCP SYN packets, you can write:
tcp.flags & 0x02
That expression will match all packets that contain a ``tcp.flags'' field with the 0x02 bit, i.e. the SYN bit, set.
Similarly, filtering for all WSP GET and extended GET methods is achieved with:
wsp.pdu_type & 0x40
When using slices, the bit mask must be specified as a byte string, and it must have the same number of bytes as the slice itself, as in:
ip[42:2] & 40:ff
Tests can be combined using logical expressions. These too are expressable in C-like syntax or with English-like abbreviations:
and, && Logical AND
or, || Logical OR
not, ! Logical NOT
Expressions can be grouped by parentheses as well. The following are all valid display filter expressions:
tcp.port == 80 and ip.src == 192.168.2.1
not llc
http and frame[100-199] contains "wireshark"
(ipx.src.net == 0xbad && ipx.src.node == 0.0.0.0.0.1) || ip
Remember that whenever a protocol or field name occurs in an expression, the ``exists'' operator is implicitly called. The ``exists'' operator has the highest priority. This means that the first filter expression must be read as ``show me the packets for which tcp.port exists and equals 80, and ip.src exists and equals 192.168.2.1''. The second filter expression means ``show me the packets where not (llc exists)'', or in other words ``where llc does not exist'' and hence will match all packets that do not contain the llc protocol. The third filter expression includes the constraint that offset 199 in the frame exists, in other words the length of the frame is at least 200.
A special caveat must be given regarding fields that occur more than once per packet. ``ip.addr'' occurs twice per IP packet, once for the source address, and once for the destination address. Likewise, ``tr.rif.ring'' fields can occur more than once per packet. The following two expressions are not equivalent:
ip.addr ne 192.168.4.1
not ip.addr eq 192.168.4.1
The first filter says ``show me packets where an ip.addr exists that does not equal 192.168.4.1''. That is, as long as one ip.addr in the packet does not equal 192.168.4.1, the packet passes the display filter. The other ip.addr could equal 192.168.4.1 and the packet would still be displayed. The second filter says ``don't show me any packets that have an ip.addr field equal to 192.168.4.1''. If one ip.addr is 192.168.4.1, the packet does not pass. If neither ip.addr field is 192.168.4.1, then the packet is displayed.
It is easy to think of the 'ne' and 'eq' operators as having an implict ``exists'' modifier when dealing with multiply-recurring fields. ``ip.addr ne 192.168.4.1'' can be thought of as ``there exists an ip.addr that does not equal 192.168.4.1''. ``not ip.addr eq 192.168.4.1'' can be thought of as ``there does not exist an ip.addr equal to 192.168.4.1''.
Be careful with multiply-recurring fields; they can be confusing.
Care must also be taken when using the display filter to remove noise from the packet trace. If, for example, you want to filter out all IP multicast packets to address 224.1.2.3, then using:
ip.dst ne 224.1.2.3
may be too restrictive. Filtering with ``ip.dst'' selects only those IP packets that satisfy the rule. Any other packets, including all non-IP packets, will not be displayed. To display the non-IP packets as well, you can use one of the following two expressions:
not ip or ip.dst ne 224.1.2.3
not ip.addr eq 224.1.2.3
The first filter uses ``not ip'' to include all non-IP packets and then lets ``ip.dst ne 224.1.2.3'' filter out the unwanted IP packets. The second filter has already been explained above where filtering with multiply occuring fields was discussed.
Each entry below provides an abbreviated protocol or field name. Every one of these fields can be used in a display filter. The type of the field is also given.
3comxns.type Type
Unsigned 16-bit integer
a11.ackstat Reply Status
Unsigned 8-bit integer
A11 Registration Ack Status.
a11.auth.auth Authenticator
Byte array
Authenticator.
a11.auth.spi SPI
Unsigned 32-bit integer
Authentication Header Security Parameter Index.
a11.b Broadcast Datagrams
Boolean
Broadcast Datagrams requested
a11.coa Care of Address
IPv4 address
Care of Address.
a11.code Reply Code
Unsigned 8-bit integer
A11 Registration Reply code.
a11.d Co-located Care-of Address
Boolean
MN using Co-located Care-of address
a11.ext.apptype Application Type
Unsigned 8-bit integer
Application Type.
a11.ext.ase.key GRE Key
Unsigned 32-bit integer
GRE Key.
a11.ext.ase.len Entry Length
Unsigned 8-bit integer
Entry Length.
a11.ext.ase.pcfip PCF IP Address
IPv4 address
PCF IP Address.
a11.ext.ase.ptype GRE Protocol Type
Unsigned 16-bit integer
GRE Protocol Type.
a11.ext.ase.srid Service Reference ID (SRID)
Unsigned 8-bit integer
Service Reference ID (SRID).
a11.ext.ase.srvopt Service Option
Unsigned 16-bit integer
Service Option.
a11.ext.auth.subtype Gen Auth Ext SubType
Unsigned 8-bit integer
Mobile IP Auth Extension Sub Type.
a11.ext.canid CANID
Byte array
CANID
a11.ext.code Reply Code
Unsigned 8-bit integer
PDSN Code.
a11.ext.dormant All Dormant Indicator
Unsigned 16-bit integer
All Dormant Indicator.
a11.ext.fqi.dscp Forward DSCP
Unsigned 8-bit integer
Forward Flow DSCP.
a11.ext.fqi.entrylen Entry Length
Unsigned 8-bit integer
Forward Entry Length.
a11.ext.fqi.flags Flags
Unsigned 8-bit integer
Forward Flow Entry Flags.
a11.ext.fqi.flowcount Forward Flow Count
Unsigned 8-bit integer
Forward Flow Count.
a11.ext.fqi.flowid Forward Flow Id
Unsigned 8-bit integer
Forward Flow Id.
a11.ext.fqi.flowstate Forward Flow State
Unsigned 8-bit integer
Forward Flow State.
a11.ext.fqi.graqos Granted QoS
Byte array
Forward Granted QoS.
a11.ext.fqi.graqoslen Granted QoS Length
Unsigned 8-bit integer
Forward Granted QoS Length.
a11.ext.fqi.length Length
Unsigned 16-bit integer
a11.ext.fqi.reqqos Requested QoS
Byte array
Forward Requested QoS.
a11.ext.fqi.reqqoslen Requested QoS Length
Unsigned 8-bit integer
Forward Requested QoS Length.
a11.ext.fqi.srid SRID
Unsigned 8-bit integer
Forward Flow Entry SRID.
a11.ext.fqui.flowcount Forward QoS Update Flow Count
Unsigned 8-bit integer
Forward QoS Update Flow Count.
a11.ext.fqui.updatedqos 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
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
vlan.cfi CFI
Unsigned 16-bit integer
Canonical Format Identifier
vlan.etype Type
Unsigned 16-bit integer
Ethertype
vlan.id ID
Unsigned 16-bit integer
VLAN ID
vlan.len Length
Unsigned 16-bit integer
vlan.priority Priority
Unsigned 16-bit integer
User Priority
vlan.trailer Trailer
Byte array
VLAN Trailer
eapol.keydes.data WPA Key
Byte array
WPA Key Data
eapol.keydes.datalen WPA Key Length
Unsigned 16-bit integer
WPA Key Data Length
eapol.keydes.id WPA Key ID
Byte array
WPA Key ID(RSN Reserved)
eapol.keydes.index.indexnum Index Number
Unsigned 8-bit integer
Key Index number
eapol.keydes.index.keytype Key Type
Boolean
Key Type (unicast/broadcast)
eapol.keydes.key Key
Byte array
Key
eapol.keydes.key_info Key Information
Unsigned 16-bit integer
WPA key info
eapol.keydes.key_info.encr_key_data Encrypted Key Data flag
Boolean
Encrypted Key Data flag
eapol.keydes.key_info.error Error flag
Boolean
Error flag
eapol.keydes.key_info.install Install flag
Boolean
Install flag
eapol.keydes.key_info.key_ack Key Ack flag
Boolean
Key Ack flag
eapol.keydes.key_info.key_index Key Index
Unsigned 16-bit integer
Key Index (0-3) (RSN: Reserved)
eapol.keydes.key_info.key_mic Key MIC flag
Boolean
Key MIC flag
eapol.keydes.key_info.key_type Key Type
Boolean
Key Type (Pairwise or Group)
eapol.keydes.key_info.keydes_ver Key Descriptor Version
Unsigned 16-bit integer
Key Descriptor Version Type
eapol.keydes.key_info.request Request flag
Boolean
Request flag
eapol.keydes.key_info.secure Secure flag
Boolean
Secure flag
eapol.keydes.key_iv Key IV
Byte array
Key Initialization Vector
eapol.keydes.key_signature Key Signature
Byte array
Key Signature
eapol.keydes.keylen Key Length
Unsigned 16-bit integer
Key Length
eapol.keydes.mic WPA Key MIC
Byte array
WPA Key Message Integrity Check
eapol.keydes.nonce Nonce
Byte array
WPA Key Nonce
eapol.keydes.replay_counter Replay Counter
Unsigned 64-bit integer
Replay Counter
eapol.keydes.rsc WPA Key RSC
Byte array
WPA Key Receive Sequence Counter
eapol.keydes.type Descriptor Type
Unsigned 8-bit integer
Key Descriptor Type
eapol.len Length
Unsigned 16-bit integer
Length
eapol.type Type
Unsigned 8-bit integer
eapol.version Version
Unsigned 8-bit integer
alcap.acc.level Congestion Level
Unsigned 8-bit integer
alcap.alc.bitrate.avg.bw Average Backwards Bit Rate
Unsigned 16-bit integer
alcap.alc.bitrate.avg.fw Average Forward Bit Rate
Unsigned 16-bit integer
alcap.alc.bitrate.max.bw Maximum Backwards Bit Rate
Unsigned 16-bit integer
alcap.alc.bitrate.max.fw Maximum Forward Bit Rate
Unsigned 16-bit integer
alcap.alc.sdusize.avg.bw Average Backwards CPS SDU Size
Unsigned 8-bit integer
alcap.alc.sdusize.avg.fw Average Forward CPS SDU Size
Unsigned 8-bit integer
alcap.alc.sdusize.max.bw Maximum Backwards CPS SDU Size
Unsigned 8-bit integer
alcap.alc.sdusize.max.fw Maximum Forward CPS SDU Size
Unsigned 8-bit integer
alcap.cau.coding Cause Coding
Unsigned 8-bit integer
alcap.cau.diag Diagnostic
Byte array
alcap.cau.diag.field_num Field Number
Unsigned 8-bit integer
alcap.cau.diag.len Length
Unsigned 8-bit integer
Diagnostics Length
alcap.cau.diag.msg Message Identifier
Unsigned 8-bit integer
alcap.cau.diag.param Parameter Identifier
Unsigned 8-bit integer
alcap.cau.value Cause Value (ITU)
Unsigned 8-bit integer
alcap.ceid.cid CID
Unsigned 8-bit integer
alcap.ceid.pathid Path ID
Unsigned 32-bit integer
alcap.compat Message Compatibility
Byte array
alcap.compat.general.ii General II
Unsigned 8-bit integer
Instruction Indicator
alcap.compat.general.sni General SNI
Unsigned 8-bit integer
Send Notificaation Indicator
alcap.compat.pass.ii Pass-On II
Unsigned 8-bit integer
Instruction Indicator
alcap.compat.pass.sni Pass-On SNI
Unsigned 8-bit integer
Send Notificaation Indicator
alcap.cp.level Level
Unsigned 8-bit integer
alcap.dnsea.addr Address
Byte array
alcap.dsaid DSAID
Unsigned 32-bit integer
Destination Service Association ID
alcap.fbw.bitrate.bw CPS Backwards Bitrate
Unsigned 24-bit integer
alcap.fbw.bitrate.fw CPS Forward Bitrate
Unsigned 24-bit integer
alcap.fbw.bucket_size.bw Backwards CPS Bucket Size
Unsigned 16-bit integer
alcap.fbw.bucket_size.fw Forward CPS Bucket Size
Unsigned 16-bit integer
alcap.fbw.max_size.bw Backwards CPS Packet Size
Unsigned 8-bit integer
alcap.fbw.max_size.fw Forward CPS Packet Size
Unsigned 8-bit integer
alcap.hc.codepoint Codepoint
Unsigned 8-bit integer
alcap.leg.cause Leg's cause value in REL
Unsigned 8-bit integer
alcap.leg.cid Leg's channel id
Unsigned 32-bit integer
alcap.leg.dnsea Leg's destination NSAP
String
alcap.leg.dsaid Leg's ECF OSA id
Unsigned 32-bit integer
alcap.leg.msg a message of this leg
Frame number
alcap.leg.onsea Leg's originating NSAP
String
alcap.leg.osaid Leg's ERQ OSA id
Unsigned 32-bit integer
alcap.leg.pathid Leg's path id
Unsigned 32-bit integer
alcap.leg.sugr Leg's SUGR
Unsigned 32-bit integer
alcap.msg_type Message Type
Unsigned 8-bit integer
alcap.onsea.addr Address
Byte array
alcap.osaid OSAID
Unsigned 32-bit integer
Originating Service Association ID
alcap.param Parameter
Unsigned 8-bit integer
Parameter Id
alcap.param.len Length
Unsigned 8-bit integer
Parameter Length
alcap.pfbw.bitrate.bw CPS Backwards Bitrate
Unsigned 24-bit integer
alcap.pfbw.bitrate.fw CPS Forward Bitrate
Unsigned 24-bit integer
alcap.pfbw.bucket_size.bw Backwards CPS Bucket Size
Unsigned 16-bit integer
alcap.pfbw.bucket_size.fw Forward CPS Bucket Size
Unsigned 16-bit integer
alcap.pfbw.max_size.bw Backwards CPS Packet Size
Unsigned 8-bit integer
alcap.pfbw.max_size.fw Forward CPS Packet Size
Unsigned 8-bit integer
alcap.plc.bitrate.avg.bw Average Backwards Bit Rate
Unsigned 16-bit integer
alcap.plc.bitrate.avg.fw Average Forward Bit Rate
Unsigned 16-bit integer
alcap.plc.bitrate.max.bw Maximum Backwards Bit Rate
Unsigned 16-bit integer
alcap.plc.bitrate.max.fw Maximum Forward Bit Rate
Unsigned 16-bit integer
alcap.plc.sdusize.max.bw Maximum Backwards CPS SDU Size
Unsigned 8-bit integer
alcap.plc.sdusize.max.fw Maximum Forward CPS SDU Size
Unsigned 8-bit integer
alcap.pssiae.cas CAS
Unsigned 8-bit integer
Channel Associated Signalling
alcap.pssiae.cmd Circuit Mode
Unsigned 8-bit integer
alcap.pssiae.dtmf DTMF
Unsigned 8-bit integer
alcap.pssiae.fax Fax
Unsigned 8-bit integer
Facsimile
alcap.pssiae.frm Frame Mode
Unsigned 8-bit integer
alcap.pssiae.lb Loopback
Unsigned 8-bit integer
alcap.pssiae.max_fmdata_len Max Len of FM Data
Unsigned 16-bit integer
alcap.pssiae.mfr1 Multi-Frequency R1
Unsigned 8-bit integer
alcap.pssiae.mfr2 Multi-Frequency R2
Unsigned 8-bit integer
alcap.pssiae.oui OUI
Byte array
Organizational Unique Identifier
alcap.pssiae.pcm PCM Mode
Unsigned 8-bit integer
alcap.pssiae.profile.id Profile Id
Unsigned 8-bit integer
alcap.pssiae.profile.type Profile Type
Unsigned 8-bit integer
I.366.2 Profile Type
alcap.pssiae.rc Rate 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.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
String
acp133.PrintableString_SIZE_1_55
acp133.Capability Capability
No value
acp133.Capability
acp133.Classification Classification
Unsigned 32-bit integer
acp133.Classification
acp133.Community Community
Unsigned 32-bit integer
acp133.Community
acp133.DLPolicy DLPolicy
No value
acp133.DLPolicy
acp133.DLSubmitPermission DLSubmitPermission
Unsigned 32-bit integer
acp133.DLSubmitPermission
acp133.DistributionCode DistributionCode
String
acp133.DistributionCode
acp133.JPEG JPEG
Byte array
acp133.JPEG
acp133.Kmid Kmid
Byte array
acp133.Kmid
acp133.MLReceiptPolicy MLReceiptPolicy
Unsigned 32-bit integer
acp133.MLReceiptPolicy
acp133.MonthlyUKMs MonthlyUKMs
No value
acp133.MonthlyUKMs
acp133.OnSupported OnSupported
Byte array
acp133.OnSupported
acp133.RIParameters RIParameters
No value
acp133.RIParameters
acp133.Remarks Remarks
Unsigned 32-bit integer
acp133.Remarks
acp133.Remarks_item Remarks
String
acp133.PrintableString
acp133.acp127-nn acp127-nn
Boolean
acp133.acp127-pn acp127-pn
Boolean
acp133.acp127-tn acp127-tn
Boolean
acp133.address address
No value
x411.ORAddress
acp133.algorithm_identifier algorithm-identifier
No value
x509af.AlgorithmIdentifier
acp133.capabilities capabilities
Unsigned 32-bit integer
acp133.SET_OF_Capability
acp133.capabilities_item capabilities
No value
acp133.Capability
acp133.classification classification
Unsigned 32-bit integer
acp133.Classification
acp133.content_types content-types
Unsigned 32-bit integer
acp133.SET_OF_ExtendedContentType
acp133.content_types_item content-types
x411.ExtendedContentType
acp133.conversion_with_loss_prohibited conversion-with-loss-prohibited
Unsigned 32-bit integer
acp133.T_conversion_with_loss_prohibited
acp133.date date
String
acp133.UTCTime
acp133.description description
String
acp133.GeneralString
acp133.disclosure_of_other_recipients disclosure-of-other-recipients
Unsigned 32-bit integer
acp133.T_disclosure_of_other_recipients
acp133.edition edition
Signed 32-bit integer
acp133.INTEGER
acp133.encoded_information_types_constraints encoded-information-types-constraints
No value
x411.EncodedInformationTypesConstraints
acp133.encrypted encrypted
Byte array
acp133.BIT_STRING
acp133.further_dl_expansion_allowed further-dl-expansion-allowed
Boolean
acp133.BOOLEAN
acp133.implicit_conversion_prohibited implicit-conversion-prohibited
Unsigned 32-bit integer
acp133.T_implicit_conversion_prohibited
acp133.inAdditionTo inAdditionTo
Unsigned 32-bit integer
acp133.SEQUENCE_OF_GeneralNames
acp133.inAdditionTo_item inAdditionTo
Unsigned 32-bit integer
x509ce.GeneralNames
acp133.individual individual
No value
x411.ORName
acp133.insteadOf insteadOf
Unsigned 32-bit integer
acp133.SEQUENCE_OF_GeneralNames
acp133.insteadOf_item insteadOf
Unsigned 32-bit integer
x509ce.GeneralNames
acp133.kmid kmid
Byte array
acp133.Kmid
acp133.maximum_content_length maximum-content-length
Unsigned 32-bit integer
x411.ContentLength
acp133.member_of_dl member-of-dl
No value
x411.ORName
acp133.member_of_group member-of-group
Unsigned 32-bit integer
x509if.Name
acp133.minimize minimize
Boolean
acp133.BOOLEAN
acp133.none none
No value
acp133.NULL
acp133.originating_MTA_report originating-MTA-report
Signed 32-bit integer
acp133.T_originating_MTA_report
acp133.originator_certificate_selector originator-certificate-selector
No value
x509ce.CertificateAssertion
acp133.originator_report originator-report
Signed 32-bit integer
acp133.T_originator_report
acp133.originator_requested_alternate_recipient_removed originator-requested-alternate-recipient-removed
Boolean
acp133.BOOLEAN
acp133.pattern_match pattern-match
No value
acp133.ORNamePattern
acp133.priority priority
Signed 32-bit integer
acp133.T_priority
acp133.proof_of_delivery proof-of-delivery
Signed 32-bit integer
acp133.T_proof_of_delivery
acp133.rI rI
String
acp133.PrintableString
acp133.rIType rIType
Unsigned 32-bit integer
acp133.T_rIType
acp133.recipient_certificate_selector recipient-certificate-selector
No value
x509ce.CertificateAssertion
acp133.removed removed
No value
acp133.NULL
acp133.replaced replaced
Unsigned 32-bit integer
x411.RequestedDeliveryMethod
acp133.report_from_dl report-from-dl
Signed 32-bit integer
acp133.T_report_from_dl
acp133.report_propagation report-propagation
Signed 32-bit integer
acp133.T_report_propagation
acp133.requested_delivery_method requested-delivery-method
Unsigned 32-bit integer
acp133.T_requested_delivery_method
acp133.return_of_content return-of-content
Unsigned 32-bit integer
acp133.T_return_of_content
acp133.sHD sHD
String
acp133.PrintableString
acp133.security_labels security-labels
Unsigned 32-bit integer
x411.SecurityContext
acp133.tag tag
No value
acp133.PairwiseTag
acp133.token_encryption_algorithm_preference token-encryption-algorithm-preference
Unsigned 32-bit integer
acp133.SEQUENCE_OF_AlgorithmInformation
acp133.token_encryption_algorithm_preference_item token-encryption-algorithm-preference
No value
acp133.AlgorithmInformation
acp133.token_signature_algorithm_preference token-signature-algorithm-preference
Unsigned 32-bit integer
acp133.SEQUENCE_OF_AlgorithmInformation
acp133.token_signature_algorithm_preference_item token-signature-algorithm-preference
No value
acp133.AlgorithmInformation
acp133.ukm ukm
Byte array
acp133.OCTET_STRING
acp133.ukm_entries ukm-entries
Unsigned 32-bit integer
acp133.SEQUENCE_OF_UKMEntry
acp133.ukm_entries_item ukm-entries
No value
acp133.UKMEntry
acp133.unchanged unchanged
No value
acp133.NULL
aim_admin.acctinfo.code Account Information Request Code
Unsigned 16-bit integer
aim_admin.acctinfo.permissions Account Permissions
Unsigned 16-bit integer
aim_admin.confirm_status Confirmation status
Unsigned 16-bit integer
aim_buddylist.userinfo.warninglevel Warning Level
Unsigned 16-bit integer
aim_generic.client_verification.hash Client Verification MD5 Hash
Byte array
aim_generic.client_verification.length Client Verification Request Length
Unsigned 32-bit integer
aim_generic.client_verification.offset Client Verification Request Offset
Unsigned 32-bit integer
aim_generic.evil.new_warn_level New warning level
Unsigned 16-bit integer
aim_generic.ext_status.data Extended Status Data
Byte array
aim_generic.ext_status.flags Extended Status Flags
Unsigned 8-bit integer
aim_generic.ext_status.length Extended Status Length
Unsigned 8-bit integer
aim_generic.ext_status.type Extended Status Type
Unsigned 16-bit integer
aim_generic.idle_time Idle time (seconds)
Unsigned 32-bit integer
aim_generic.migrate.numfams Number of families to migrate
Unsigned 16-bit integer
aim_generic.motd.motdtype MOTD Type
Unsigned 16-bit integer
aim_generic.privilege_flags Privilege flags
Unsigned 32-bit integer
aim_generic.privilege_flags.allow_idle Allow other users to see idle time
Boolean
aim_generic.privilege_flags.allow_member Allow other users to see how long account has been a member
Boolean
aim_generic.ratechange.msg Rate Change Message
Unsigned 16-bit integer
aim_generic.rateinfo.class.alertlevel Alert Level
Unsigned 32-bit integer
aim_generic.rateinfo.class.clearlevel Clear Level
Unsigned 32-bit integer
aim_generic.rateinfo.class.currentlevel Current Level
Unsigned 32-bit integer
aim_generic.rateinfo.class.curstate Current State
Unsigned 8-bit integer
aim_generic.rateinfo.class.disconnectlevel Disconnect Level
Unsigned 32-bit integer
aim_generic.rateinfo.class.id Class ID
Unsigned 16-bit integer
aim_generic.rateinfo.class.lasttime Last Time
Unsigned 32-bit integer
aim_generic.rateinfo.class.limitlevel Limit Level
Unsigned 32-bit integer
aim_generic.rateinfo.class.maxlevel Max Level
Unsigned 32-bit integer
aim_generic.rateinfo.class.numpairs Number of Family/Subtype pairs
Unsigned 16-bit integer
aim_generic.rateinfo.class.window_size Window Size
Unsigned 32-bit integer
aim_generic.rateinfo.numclasses Number of Rateinfo Classes
Unsigned 16-bit integer
aim_generic.rateinfoack.class Acknowledged Rate Class
Unsigned 16-bit integer
aim_generic.selfinfo.warn_level Warning level
Unsigned 16-bit integer
aim_generic.servicereq.service Requested Service
Unsigned 16-bit integer
aim_icq.chunk_size Data chunk size
Unsigned 16-bit integer
aim_icq.offline_msgs.dropped_flag Dropped messages flag
Unsigned 8-bit integer
aim_icq.owner_uid Owner UID
Unsigned 32-bit integer
aim_icq.request_seq_number Request Sequence Number
Unsigned 16-bit integer
aim_icq.request_type Request Type
Unsigned 16-bit integer
aim_icq.subtype Meta Request Subtype
Unsigned 16-bit integer
aim_location.buddyname Buddy Name
String
aim_location.buddynamelen Buddyname len
Unsigned 8-bit integer
aim_location.snac.request_user_info.infotype Infotype
Unsigned 16-bit integer
aim_location.userinfo.warninglevel Warning Level
Unsigned 16-bit integer
aim_messaging.channelid Message Channel ID
Unsigned 16-bit integer
aim_messaging.clientautoresp.client_caps_flags Client Capabilities Flags
Unsigned 32-bit integer
aim_messaging.clientautoresp.protocol_version Version
Unsigned 16-bit integer
aim_messaging.clientautoresp.reason Reason
Unsigned 16-bit integer
aim_messaging.evil.new_warn_level New warning level
Unsigned 16-bit integer
aim_messaging.evil.warn_level Old warning level
Unsigned 16-bit integer
aim_messaging.evilreq.origin Send Evil Bit As
Unsigned 16-bit integer
aim_messaging.icbm.channel Channel to setup
Unsigned 16-bit integer
aim_messaging.icbm.extended_data.message.flags Message Flags
Unsigned 8-bit integer
aim_messaging.icbm.extended_data.message.flags.auto Auto Message
Boolean
aim_messaging.icbm.extended_data.message.flags.normal Normal Message
Boolean
aim_messaging.icbm.extended_data.message.priority_code Priority Code
Unsigned 16-bit integer
aim_messaging.icbm.extended_data.message.status_code Status Code
Unsigned 16-bit integer
aim_messaging.icbm.extended_data.message.text Text
String
aim_messaging.icbm.extended_data.message.text_length Text Length
Unsigned 16-bit integer
aim_messaging.icbm.extended_data.message.type Message Type
Unsigned 8-bit integer
aim_messaging.icbm.flags Message Flags
Unsigned 32-bit integer
aim_messaging.icbm.max_receiver_warnlevel max receiver warn level
Unsigned 16-bit integer
aim_messaging.icbm.max_sender_warn-level Max sender warn level
Unsigned 16-bit integer
aim_messaging.icbm.max_snac Max SNAC Size
Unsigned 16-bit integer
aim_messaging.icbm.min_msg_interval Minimum message interval (seconds)
Unsigned 16-bit integer
aim_messaging.icbm.rendezvous.extended_data.message.flags.multi Multiple Recipients Message
Boolean
aim_messaging.icbm.unknown Unknown parameter
Unsigned 16-bit integer
aim_messaging.icbmcookie ICBM Cookie
Byte array
aim_messaging.notification.channel Notification Channel
Unsigned 16-bit integer
aim_messaging.notification.cookie Notification Cookie
Byte array
aim_messaging.notification.type Notification Type
Unsigned 16-bit integer
aim_messaging.rendezvous.msg_type Message Type
Unsigned 16-bit integer
aim_bos.data Data
Byte array
aim_bos.userclass User class
Unsigned 32-bit integer
aim_ssi.fnac.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_sst.icon Icon
Byte array
aim_sst.icon_size Icon Size
Unsigned 16-bit integer
aim_sst.md5 MD5 Hash
Byte array
aim_sst.md5.size MD5 Hash Size
Unsigned 8-bit integer
aim_sst.ref_num Reference Number
Unsigned 16-bit integer
aim_sst.unknown Unknown Data
Byte array
aim_signon.challenge Signon challenge
String
aim_signon.challengelen Signon challenge length
Unsigned 16-bit integer
aim_signon.infotype Infotype
Unsigned 16-bit integer
aim_lookup.email Email address looked for
String
Email address
ams.ads_adddn_req ADS Add Device Notification Request
No value
ams.ads_adddn_res ADS Add Device Notification Response
No value
ams.ads_cblength CbLength
Unsigned 32-bit integer
ams.ads_cbreadlength CBReadLength
Unsigned 32-bit integer
ams.ads_cbwritelength CBWriteLength
Unsigned 32-bit integer
ams.ads_cmpmax Cmp Mad
No value
ams.ads_cmpmin Cmp Min
No value
ams.ads_cycletime Cycle Time
Unsigned 32-bit integer
ams.ads_data Data
No value
ams.ads_deldn_req ADS Delete Device Notification Request
No value
ams.ads_deldn_res ADS Delete Device Notification Response
No value
ams.ads_devicename Device Name
String
ams.ads_devicestate DeviceState
Unsigned 16-bit integer
ams.ads_dn_req ADS Device Notification Request
No value
ams.ads_dn_res ADS Device Notification Response
No value
ams.ads_indexgroup IndexGroup
Unsigned 32-bit integer
ams.ads_indexoffset IndexOffset
Unsigned 32-bit integer
ams.ads_invokeid InvokeId
Unsigned 32-bit integer
ams.ads_maxdelay Max Delay
Unsigned 32-bit integer
ams.ads_noteattrib InvokeId
No value
ams.ads_noteblocks InvokeId
No value
ams.ads_noteblockssample Notification Sample
No value
ams.ads_noteblocksstamp Notification Stamp
No value
ams.ads_noteblocksstamps Count of Stamps
Unsigned 32-bit integer
ams.ads_notificationhandle NotificationHandle
Unsigned 32-bit integer
ams.ads_read_req ADS Read Request
No value
ams.ads_read_res ADS Read Respone
No value
ams.ads_readdinfo_req ADS Read Device Info Request
No value
ams.ads_readdinfo_res ADS Read Device Info Response
No value
ams.ads_readstate_req ADS Read State Request
No value
ams.ads_readstate_res ADS Read State Response
No value
ams.ads_readwrite_req ADS ReadWrite Request
No value
ams.ads_readwrite_res ADS ReadWrite Response
No value
ams.ads_samplecnt Count of Stamps
Unsigned 32-bit integer
ams.ads_state AdsState
Unsigned 16-bit integer
ams.ads_timestamp Time Stamp
Unsigned 64-bit integer
ams.ads_transmode Trans Mode
Unsigned 32-bit integer
ams.ads_version ADS Version
Unsigned 32-bit integer
ams.ads_versionbuild ADS Version Build
Unsigned 16-bit integer
ams.ads_versionrevision ADS Minor Version
Unsigned 8-bit integer
ams.ads_versionversion ADS Major Version
Unsigned 8-bit integer
ams.ads_write_req ADS Write Request
No value
ams.ads_write_res ADS Write Response
No value
ams.ads_writectrl_req ADS Write Ctrl Request
No value
ams.ads_writectrl_res ADS Write Ctrl Response
No value
ams.adsresult Result
Unsigned 32-bit integer
ams.cbdata cbData
Unsigned 32-bit integer
ams.cmdid CmdId
Unsigned 16-bit integer
ams.data Data
No value
ams.errorcode ErrorCode
Unsigned 32-bit integer
ams.invokeid InvokeId
Unsigned 32-bit integer
ams.sendernetid AMS Sender Net Id
String
ams.senderport AMS Sender port
Unsigned 16-bit integer
ams.state_adscmd ADS COMMAND
Boolean
ams.state_broadcast BROADCAST
Boolean
ams.state_highprio HIGH PRIORITY COMMAND
Boolean
ams.state_initcmd INIT COMMAND
Boolean
ams.state_noreturn NO RETURN
Boolean
ams.state_response RESPONSE
Boolean
ams.state_syscmd SYSTEM COMMAND
Boolean
ams.state_timestampadded TIMESTAMP ADDED
Boolean
ams.state_udp UDP COMMAND
Boolean
ams.stateflags StateFlags
Unsigned 16-bit integer
ams.targetnetid AMS Target Net Id
String
ams.targetport AMS Target port
Unsigned 16-bit integer
ansi_a_bsmap.a2p_bearer_ipv4_addr A2p Bearer IP Address
IPv4 address
ansi_a_bsmap.a2p_bearer_ipv6_addr A2p Bearer IP Address
IPv6 address
ansi_a_bsmap.a2p_bearer_udp_port A2p Bearer UDP Port
Unsigned 16-bit integer
ansi_a_bsmap.anchor_pdsn_ip_addr Anchor PDSN Address
IPv4 address
IP Address
ansi_a_bsmap.anchor_pp_ip_addr Anchor P-P Address
IPv4 address
IP Address
ansi_a_bsmap.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.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_637_tele.len Length
Unsigned 8-bit integer
ansi_637_tele.msg_id Message ID
Unsigned 24-bit integer
ansi_637_tele.msg_rsvd Reserved
Unsigned 24-bit integer
ansi_637_tele.msg_type Message Type
Unsigned 24-bit integer
ansi_637_tele.subparam_id Teleservice Subparam ID
Unsigned 8-bit integer
ansi_637_trans.bin_addr Binary Address
Byte array
ansi_637_trans.len Length
Unsigned 8-bit integer
ansi_637_trans.msg_type Message Type
Unsigned 24-bit integer
ansi_637_trans.param_id Transport Param ID
Unsigned 8-bit integer
ansi_683.for_msg_type Forward Link Message Type
Unsigned 8-bit integer
ansi_683.len Length
Unsigned 8-bit integer
ansi_683.none Sub tree
No value
ansi_683.rev_msg_type Reverse Link Message Type
Unsigned 8-bit integer
ansi_801.for_req_type Forward Request Type
Unsigned 8-bit integer
ansi_801.for_rsp_type Forward Response Type
Unsigned 8-bit integer
ansi_801.for_sess_tag Forward Session Tag
Unsigned 8-bit integer
ansi_801.rev_req_type Reverse Request Type
Unsigned 8-bit integer
ansi_801.rev_rsp_type Reverse Response Type
Unsigned 8-bit integer
ansi_801.rev_sess_tag Reverse Session Tag
Unsigned 8-bit integer
ansi_801.sess_tag Session Tag
Unsigned 8-bit integer
ansi_map.CDMABandClassList_item CDMABandClassList
No value
ansi_map.CDMABandClassInformation
ansi_map.CDMAChannelNumberList_item CDMAChannelNumberList
No value
ansi_map.CDMAChannelNumberList_item
ansi_map.CDMACodeChannelList_item CDMACodeChannelList
No value
ansi_map.CDMACodeChannelInformation
ansi_map.CDMAConnectionReferenceList_item CDMAConnectionReferenceList
No value
ansi_map.CDMAConnectionReferenceList_item
ansi_map.CDMAPSMMList_item CDMAPSMMList
No value
ansi_map.CDMAPSMMList_item
ansi_map.CDMAServiceOptionList_item CDMAServiceOptionList
Byte array
ansi_map.CDMAServiceOption
ansi_map.CDMATargetMAHOList_item CDMATargetMAHOList
No value
ansi_map.CDMATargetMAHOInformation
ansi_map.CDMATargetMeasurementList_item CDMATargetMeasurementList
No value
ansi_map.CDMATargetMeasurementInformation
ansi_map.CallRecoveryIDList_item CallRecoveryIDList
No value
ansi_map.CallRecoveryID
ansi_map.DataAccessElementList_item DataAccessElementList
No value
ansi_map.DataAccessElementList_item
ansi_map.DataUpdateResultList_item DataUpdateResultList
No value
ansi_map.DataUpdateResult
ansi_map.ModificationRequestList_item ModificationRequestList
No value
ansi_map.ModificationRequest
ansi_map.ModificationResultList_item ModificationResultList
Unsigned 32-bit integer
ansi_map.ModificationResult
ansi_map.PACA_Level PACA Level
Unsigned 8-bit integer
PACA Level
ansi_map.ServiceDataAccessElementList_item ServiceDataAccessElementList
No value
ansi_map.ServiceDataAccessElement
ansi_map.ServiceDataResultList_item ServiceDataResultList
No value
ansi_map.ServiceDataResult
ansi_map.TargetMeasurementList_item TargetMeasurementList
No value
ansi_map.TargetMeasurementInformation
ansi_map.TerminationList_item TerminationList
Unsigned 32-bit integer
ansi_map.TerminationList_item
ansi_map.aCGDirective aCGDirective
No value
ansi_map.ACGDirective
ansi_map.aKeyProtocolVersion aKeyProtocolVersion
Byte array
ansi_map.AKeyProtocolVersion
ansi_map.accessDeniedReason accessDeniedReason
Unsigned 32-bit integer
ansi_map.AccessDeniedReason
ansi_map.acgencountered acgencountered
Byte array
ansi_map.ACGEncountered
ansi_map.actionCode actionCode
Unsigned 8-bit integer
ansi_map.ActionCode
ansi_map.addService addService
No value
ansi_map.AddService
ansi_map.addServiceRes addServiceRes
No value
ansi_map.AddServiceRes
ansi_map.alertCode alertCode
Byte array
ansi_map.AlertCode
ansi_map.alertResult alertResult
Unsigned 8-bit integer
ansi_map.AlertResult
ansi_map.alertcode.alertaction Alert Action
Unsigned 8-bit integer
Alert Action
ansi_map.alertcode.cadence Cadence
Unsigned 8-bit integer
Cadence
ansi_map.alertcode.pitch Pitch
Unsigned 8-bit integer
Pitch
ansi_map.allOrNone allOrNone
Unsigned 32-bit integer
ansi_map.AllOrNone
ansi_map.analogRedirectInfo analogRedirectInfo
Byte array
ansi_map.AnalogRedirectInfo
ansi_map.analogRedirectRecord analogRedirectRecord
No value
ansi_map.AnalogRedirectRecord
ansi_map.analyzedInformation analyzedInformation
No value
ansi_map.AnalyzedInformation
ansi_map.analyzedInformationRes analyzedInformationRes
No value
ansi_map.AnalyzedInformationRes
ansi_map.announcementCode1 announcementCode1
Byte array
ansi_map.AnnouncementCode
ansi_map.announcementCode2 announcementCode2
Byte array
ansi_map.AnnouncementCode
ansi_map.announcementList announcementList
No value
ansi_map.AnnouncementList
ansi_map.announcementcode.class Tone
Unsigned 8-bit integer
Tone
ansi_map.announcementcode.cust_ann Custom Announcement
Unsigned 8-bit integer
Custom Announcement
ansi_map.announcementcode.std_ann Standard Announcement
Unsigned 8-bit integer
Standard Announcement
ansi_map.announcementcode.tone Tone
Unsigned 8-bit integer
Tone
ansi_map.authenticationAlgorithmVersion authenticationAlgorithmVersion
Byte array
ansi_map.AuthenticationAlgorithmVersion
ansi_map.authenticationCapability authenticationCapability
Unsigned 8-bit integer
ansi_map.AuthenticationCapability
ansi_map.authenticationData authenticationData
Byte array
ansi_map.AuthenticationData
ansi_map.authenticationDirective authenticationDirective
No value
ansi_map.AuthenticationDirective
ansi_map.authenticationDirectiveForward authenticationDirectiveForward
No value
ansi_map.AuthenticationDirectiveForward
ansi_map.authenticationDirectiveForwardRes authenticationDirectiveForwardRes
No value
ansi_map.AuthenticationDirectiveForwardRes
ansi_map.authenticationDirectiveRes authenticationDirectiveRes
No value
ansi_map.AuthenticationDirectiveRes
ansi_map.authenticationFailureReport authenticationFailureReport
No value
ansi_map.AuthenticationFailureReport
ansi_map.authenticationFailureReportRes authenticationFailureReportRes
No value
ansi_map.AuthenticationFailureReportRes
ansi_map.authenticationRequest authenticationRequest
No value
ansi_map.AuthenticationRequest
ansi_map.authenticationRequestRes authenticationRequestRes
No value
ansi_map.AuthenticationRequestRes
ansi_map.authenticationResponse authenticationResponse
Byte array
ansi_map.AuthenticationResponse
ansi_map.authenticationResponseBaseStation authenticationResponseBaseStation
Byte array
ansi_map.AuthenticationResponseBaseStation
ansi_map.authenticationResponseReauthentication authenticationResponseReauthentication
Byte array
ansi_map.AuthenticationResponseReauthentication
ansi_map.authenticationResponseUniqueChallenge authenticationResponseUniqueChallenge
Byte array
ansi_map.AuthenticationResponseUniqueChallenge
ansi_map.authenticationStatusReport authenticationStatusReport
No value
ansi_map.AuthenticationStatusReport
ansi_map.authenticationStatusReportRes authenticationStatusReportRes
No value
ansi_map.AuthenticationStatusReportRes
ansi_map.authorizationDenied authorizationDenied
Unsigned 32-bit integer
ansi_map.AuthorizationDenied
ansi_map.authorizationPeriod authorizationPeriod
Byte array
ansi_map.AuthorizationPeriod
ansi_map.authorizationperiod.period Period
Unsigned 8-bit integer
Period
ansi_map.availabilityType availabilityType
Unsigned 8-bit integer
ansi_map.AvailabilityType
ansi_map.baseStationChallenge baseStationChallenge
No value
ansi_map.BaseStationChallenge
ansi_map.baseStationChallengeRes baseStationChallengeRes
No value
ansi_map.BaseStationChallengeRes
ansi_map.baseStationManufacturerCode baseStationManufacturerCode
Byte array
ansi_map.BaseStationManufacturerCode
ansi_map.baseStationPartialKey baseStationPartialKey
Byte array
ansi_map.BaseStationPartialKey
ansi_map.bcd_digits BCD digits
String
BCD digits
ansi_map.billingID billingID
Byte array
ansi_map.BillingID
ansi_map.blocking blocking
No value
ansi_map.Blocking
ansi_map.borderCellAccess borderCellAccess
Unsigned 32-bit integer
ansi_map.BorderCellAccess
ansi_map.bsmcstatus bsmcstatus
Unsigned 8-bit integer
ansi_map.BSMCStatus
ansi_map.bulkDeregistration bulkDeregistration
No value
ansi_map.BulkDeregistration
ansi_map.bulkDisconnection bulkDisconnection
No value
ansi_map.BulkDisconnection
ansi_map.callControlDirective callControlDirective
No value
ansi_map.CallControlDirective
ansi_map.callControlDirectiveRes callControlDirectiveRes
No value
ansi_map.CallControlDirectiveRes
ansi_map.callHistoryCount callHistoryCount
Unsigned 32-bit integer
ansi_map.CallHistoryCount
ansi_map.callHistoryCountExpected callHistoryCountExpected
Unsigned 32-bit integer
ansi_map.CallHistoryCountExpected
ansi_map.callRecoveryIDList callRecoveryIDList
Unsigned 32-bit integer
ansi_map.CallRecoveryIDList
ansi_map.callRecoveryReport callRecoveryReport
No value
ansi_map.CallRecoveryReport
ansi_map.callStatus callStatus
Unsigned 32-bit integer
ansi_map.CallStatus
ansi_map.callTerminationReport callTerminationReport
No value
ansi_map.CallTerminationReport
ansi_map.callingFeaturesIndicator callingFeaturesIndicator
Byte array
ansi_map.CallingFeaturesIndicator
ansi_map.callingPartyCategory callingPartyCategory
Byte array
ansi_map.CallingPartyCategory
ansi_map.callingPartyName callingPartyName
Byte array
ansi_map.CallingPartyName
ansi_map.callingPartyNumberDigits1 callingPartyNumberDigits1
Byte array
ansi_map.CallingPartyNumberDigits1
ansi_map.callingPartyNumberDigits2 callingPartyNumberDigits2
Byte array
ansi_map.CallingPartyNumberDigits2
ansi_map.callingPartyNumberString1 callingPartyNumberString1
No value
ansi_map.CallingPartyNumberString1
ansi_map.callingPartyNumberString2 callingPartyNumberString2
No value
ansi_map.CallingPartyNumberString2
ansi_map.callingPartySubaddress callingPartySubaddress
Byte array
ansi_map.CallingPartySubaddress
ansi_map.callingfeaturesindicator.3wcfa Three-Way Calling FeatureActivity, 3WC-FA
Unsigned 8-bit integer
Three-Way Calling FeatureActivity, 3WC-FA
ansi_map.callingfeaturesindicator.ahfa Answer Hold: FeatureActivity AH-FA
Unsigned 8-bit integer
Answer Hold: FeatureActivity AH-FA
ansi_map.callingfeaturesindicator.ccsfa CDMA-Concurrent Service:FeatureActivity. CCS-FA
Unsigned 8-bit integer
CDMA-Concurrent Service:FeatureActivity. CCS-FA
ansi_map.callingfeaturesindicator.cdfa Call Delivery: FeatureActivity, CD-FA
Unsigned 8-bit integer
Call Delivery: FeatureActivity, CD-FA
ansi_map.callingfeaturesindicator.cfbafa Call Forwarding Busy FeatureActivity, CFB-FA
Unsigned 8-bit integer
Call Forwarding Busy FeatureActivity, CFB-FA
ansi_map.callingfeaturesindicator.cfnafa Call Forwarding No Answer FeatureActivity, CFNA-FA
Unsigned 8-bit integer
Call Forwarding No Answer FeatureActivity, CFNA-FA
ansi_map.callingfeaturesindicator.cfufa Call Forwarding Unconditional FeatureActivity, CFU-FA
Unsigned 8-bit integer
Call Forwarding Unconditional FeatureActivity, CFU-FA
ansi_map.callingfeaturesindicator.cnip1fa One number (network-provided only) Calling Number Identification Presentation: FeatureActivity CNIP1-FA
Unsigned 8-bit integer
One number (network-provided only) Calling Number Identification Presentation: FeatureActivity CNIP1-FA
ansi_map.callingfeaturesindicator.cnip2fa Two number (network-provided and user-provided) Calling Number Identification Presentation: FeatureActivity CNIP2-FA
Unsigned 8-bit integer
Two number (network-provided and user-provided) Calling Number Identification Presentation: FeatureActivity CNIP2-FA
ansi_map.callingfeaturesindicator.cnirfa Calling Number Identification Restriction: FeatureActivity CNIR-FA
Unsigned 8-bit integer
Calling Number Identification Restriction: FeatureActivity CNIR-FA
ansi_map.callingfeaturesindicator.cniroverfa Calling Number Identification Restriction Override FeatureActivity CNIROver-FA
Unsigned 8-bit integer
ansi_map.callingfeaturesindicator.cpdfa CDMA-Packet Data Service: FeatureActivity. CPDS-FA
Unsigned 8-bit integer
CDMA-Packet Data Service: FeatureActivity. CPDS-FA
ansi_map.callingfeaturesindicator.ctfa Call Transfer: FeatureActivity, CT-FA
Unsigned 8-bit integer
Call Transfer: FeatureActivity, CT-FA
ansi_map.callingfeaturesindicator.cwfa Call Waiting: FeatureActivity, CW-FA
Unsigned 8-bit integer
Call Waiting: FeatureActivity, CW-FA
ansi_map.callingfeaturesindicator.dpfa Data Privacy Feature Activity DP-FA
Unsigned 8-bit integer
Data Privacy Feature Activity DP-FA
ansi_map.callingfeaturesindicator.epefa TDMA Enhanced Privacy and Encryption:FeatureActivity.TDMA EPE-FA
Unsigned 8-bit integer
TDMA Enhanced Privacy and Encryption:FeatureActivity.TDMA EPE-FA
ansi_map.callingfeaturesindicator.pcwfa Priority Call Waiting FeatureActivity PCW-FA
Unsigned 8-bit integer
Priority Call Waiting FeatureActivity PCW-FA
ansi_map.callingfeaturesindicator.uscfmsfa USCF divert to mobile station provided DN:FeatureActivity.USCFms-FA
Unsigned 8-bit integer
USCF divert to mobile station provided DN:FeatureActivity.USCFms-FA
ansi_map.callingfeaturesindicator.uscfvmfa USCF divert to voice mail: FeatureActivity USCFvm-FA
Unsigned 8-bit integer
USCF divert to voice mail: FeatureActivity USCFvm-FA
ansi_map.callingfeaturesindicator.vpfa Voice Privacy FeatureActivity, VP-FA
Unsigned 8-bit integer
Voice Privacy FeatureActivity, VP-FA
ansi_map.cancellationDenied cancellationDenied
Unsigned 32-bit integer
ansi_map.CancellationDenied
ansi_map.cancellationType cancellationType
Unsigned 8-bit integer
ansi_map.CancellationType
ansi_map.carrierDigits carrierDigits
Byte array
ansi_map.CarrierDigits
ansi_map.cdma2000HandoffInvokeIOSData cdma2000HandoffInvokeIOSData
Byte array
ansi_map.CDMA2000HandoffInvokeIOSData
ansi_map.cdma2000HandoffResponseIOSData cdma2000HandoffResponseIOSData
Byte array
ansi_map.CDMA2000HandoffResponseIOSData
ansi_map.cdmaBandClass cdmaBandClass
Byte array
ansi_map.CDMABandClass
ansi_map.cdmaBandClassList cdmaBandClassList
Unsigned 32-bit integer
ansi_map.CDMABandClassList
ansi_map.cdmaCallMode cdmaCallMode
Byte array
ansi_map.CDMACallMode
ansi_map.cdmaChannelData cdmaChannelData
Byte array
ansi_map.CDMAChannelData
ansi_map.cdmaChannelNumber cdmaChannelNumber
Byte array
ansi_map.CDMAChannelNumber
ansi_map.cdmaChannelNumber2 cdmaChannelNumber2
Byte array
ansi_map.CDMAChannelNumber
ansi_map.cdmaChannelNumberList cdmaChannelNumberList
Unsigned 32-bit integer
ansi_map.CDMAChannelNumberList
ansi_map.cdmaCodeChannel cdmaCodeChannel
Byte array
ansi_map.CDMACodeChannel
ansi_map.cdmaCodeChannelList cdmaCodeChannelList
Unsigned 32-bit integer
ansi_map.CDMACodeChannelList
ansi_map.cdmaConnectionReference cdmaConnectionReference
Byte array
ansi_map.CDMAConnectionReference
ansi_map.cdmaConnectionReferenceInformation cdmaConnectionReferenceInformation
No value
ansi_map.CDMAConnectionReferenceInformation
ansi_map.cdmaConnectionReferenceInformation2 cdmaConnectionReferenceInformation2
No value
ansi_map.CDMAConnectionReferenceInformation
ansi_map.cdmaConnectionReferenceList cdmaConnectionReferenceList
Unsigned 32-bit integer
ansi_map.CDMAConnectionReferenceList
ansi_map.cdmaMSMeasuredChannelIdentity cdmaMSMeasuredChannelIdentity
Byte array
ansi_map.CDMAMSMeasuredChannelIdentity
ansi_map.cdmaMobileCapabilities cdmaMobileCapabilities
Byte array
ansi_map.CDMAMobileCapabilities
ansi_map.cdmaMobileProtocolRevision cdmaMobileProtocolRevision
Byte array
ansi_map.CDMAMobileProtocolRevision
ansi_map.cdmaNetworkIdentification cdmaNetworkIdentification
Byte array
ansi_map.CDMANetworkIdentification
ansi_map.cdmaPSMMCount cdmaPSMMCount
Byte array
ansi_map.CDMAPSMMCount
ansi_map.cdmaPSMMList cdmaPSMMList
Unsigned 32-bit integer
ansi_map.CDMAPSMMList
ansi_map.cdmaPilotPN cdmaPilotPN
Byte array
ansi_map.CDMAPilotPN
ansi_map.cdmaPilotStrength cdmaPilotStrength
Byte array
ansi_map.CDMAPilotStrength
ansi_map.cdmaPowerCombinedIndicator cdmaPowerCombinedIndicator
Byte array
ansi_map.CDMAPowerCombinedIndicator
ansi_map.cdmaPrivateLongCodeMask cdmaPrivateLongCodeMask
Byte array
ansi_map.CDMAPrivateLongCodeMask
ansi_map.cdmaRedirectRecord cdmaRedirectRecord
No value
ansi_map.CDMARedirectRecord
ansi_map.cdmaSearchParameters cdmaSearchParameters
Byte array
ansi_map.CDMASearchParameters
ansi_map.cdmaSearchWindow cdmaSearchWindow
Byte array
ansi_map.CDMASearchWindow
ansi_map.cdmaServiceConfigurationRecord cdmaServiceConfigurationRecord
Byte array
ansi_map.CDMAServiceConfigurationRecord
ansi_map.cdmaServiceOption cdmaServiceOption
Byte array
ansi_map.CDMAServiceOption
ansi_map.cdmaServiceOptionConnectionIdentifier cdmaServiceOptionConnectionIdentifier
Byte array
ansi_map.CDMAServiceOptionConnectionIdentifier
ansi_map.cdmaServiceOptionList cdmaServiceOptionList
Unsigned 32-bit integer
ansi_map.CDMAServiceOptionList
ansi_map.cdmaServingOneWayDelay cdmaServingOneWayDelay
Byte array
ansi_map.CDMAServingOneWayDelay
ansi_map.cdmaServingOneWayDelay2 cdmaServingOneWayDelay2
Byte array
ansi_map.CDMAServingOneWayDelay2
ansi_map.cdmaSignalQuality cdmaSignalQuality
Byte array
ansi_map.CDMASignalQuality
ansi_map.cdmaSlotCycleIndex cdmaSlotCycleIndex
Byte array
ansi_map.CDMASlotCycleIndex
ansi_map.cdmaState cdmaState
Byte array
ansi_map.CDMAState
ansi_map.cdmaStationClassMark cdmaStationClassMark
Byte array
ansi_map.CDMAStationClassMark
ansi_map.cdmaStationClassMark2 cdmaStationClassMark2
Byte array
ansi_map.CDMAStationClassMark2
ansi_map.cdmaTargetMAHOList cdmaTargetMAHOList
Unsigned 32-bit integer
ansi_map.CDMATargetMAHOList
ansi_map.cdmaTargetMAHOList2 cdmaTargetMAHOList2
Unsigned 32-bit integer
ansi_map.CDMATargetMAHOList
ansi_map.cdmaTargetMeasurementList cdmaTargetMeasurementList
Unsigned 32-bit integer
ansi_map.CDMATargetMeasurementList
ansi_map.cdmaTargetOneWayDelay cdmaTargetOneWayDelay
Byte array
ansi_map.CDMATargetOneWayDelay
ansi_map.cdmacallmode.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.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.qualificationRequestRes qualificationRequestRes
No value
ansi_map.QualificationRequestRes
ansi_map.randValidTime randValidTime
Byte array
ansi_map.RANDValidTime
ansi_map.randc randc
Byte array
ansi_map.RANDC
ansi_map.randomVariable randomVariable
Byte array
ansi_map.RandomVariable
ansi_map.randomVariableBaseStation randomVariableBaseStation
Byte array
ansi_map.RandomVariableBaseStation
ansi_map.randomVariableReauthentication randomVariableReauthentication
Byte array
ansi_map.RandomVariableReauthentication
ansi_map.randomVariableRequest randomVariableRequest
No value
ansi_map.RandomVariableRequest
ansi_map.randomVariableRequestRes randomVariableRequestRes
No value
ansi_map.RandomVariableRequestRes
ansi_map.randomVariableSSD randomVariableSSD
Byte array
ansi_map.RandomVariableSSD
ansi_map.randomVariableUniqueChallenge randomVariableUniqueChallenge
Byte array
ansi_map.RandomVariableUniqueChallenge
ansi_map.range range
Signed 32-bit integer
ansi_map.Range
ansi_map.reasonList reasonList
Unsigned 32-bit integer
ansi_map.ReasonList
ansi_map.reauthenticationReport reauthenticationReport
Unsigned 8-bit integer
ansi_map.ReauthenticationReport
ansi_map.receivedSignalQuality receivedSignalQuality
Unsigned 32-bit integer
ansi_map.ReceivedSignalQuality
ansi_map.record_Type record-Type
Byte array
ansi_map.Record_Type
ansi_map.redirectingNumberDigits redirectingNumberDigits
Byte array
ansi_map.RedirectingNumberDigits
ansi_map.redirectingNumberString redirectingNumberString
Byte array
ansi_map.RedirectingNumberString
ansi_map.redirectingPartyName redirectingPartyName
Byte array
ansi_map.RedirectingPartyName
ansi_map.redirectingSubaddress redirectingSubaddress
Byte array
ansi_map.RedirectingSubaddress
ansi_map.redirectionDirective redirectionDirective
No value
ansi_map.RedirectionDirective
ansi_map.redirectionReason redirectionReason
Unsigned 32-bit integer
ansi_map.RedirectionReason
ansi_map.redirectionRequest redirectionRequest
No value
ansi_map.RedirectionRequest
ansi_map.registrationCancellation registrationCancellation
No value
ansi_map.RegistrationCancellation
ansi_map.registrationCancellationRes registrationCancellationRes
No value
ansi_map.RegistrationCancellationRes
ansi_map.registrationNotification registrationNotification
No value
ansi_map.RegistrationNotification
ansi_map.registrationNotificationRes registrationNotificationRes
No value
ansi_map.RegistrationNotificationRes
ansi_map.releaseCause releaseCause
Unsigned 32-bit integer
ansi_map.ReleaseCause
ansi_map.releaseReason releaseReason
Unsigned 32-bit integer
ansi_map.ReleaseReason
ansi_map.remoteUserInteractionDirective remoteUserInteractionDirective
No value
ansi_map.RemoteUserInteractionDirective
ansi_map.remoteUserInteractionDirectiveRes remoteUserInteractionDirectiveRes
No value
ansi_map.RemoteUserInteractionDirectiveRes
ansi_map.reportType reportType
Unsigned 32-bit integer
ansi_map.ReportType
ansi_map.reportType2 reportType2
Unsigned 32-bit integer
ansi_map.ReportType
ansi_map.requiredParametersMask requiredParametersMask
Byte array
ansi_map.RequiredParametersMask
ansi_map.reserved_bitED Reserved
Unsigned 8-bit integer
Reserved
ansi_map.reserved_bitFED Reserved
Unsigned 8-bit integer
Reserved
ansi_map.reserved_bitH Reserved
Boolean
Reserved
ansi_map.reserved_bitHG Reserved
Unsigned 8-bit integer
Reserved
ansi_map.reserved_bitHGFE Reserved
Unsigned 8-bit integer
Reserved
ansi_map.resetCircuit resetCircuit
No value
ansi_map.ResetCircuit
ansi_map.resetCircuitRes resetCircuitRes
No value
ansi_map.ResetCircuitRes
ansi_map.restrictionDigits restrictionDigits
Byte array
ansi_map.RestrictionDigits
ansi_map.resumePIC resumePIC
Unsigned 32-bit integer
ansi_map.ResumePIC
ansi_map.roamerDatabaseVerificationRequest roamerDatabaseVerificationRequest
No value
ansi_map.RoamerDatabaseVerificationRequest
ansi_map.roamerDatabaseVerificationRequestRes roamerDatabaseVerificationRequestRes
No value
ansi_map.RoamerDatabaseVerificationRequestRes
ansi_map.roamingIndication roamingIndication
Byte array
ansi_map.RoamingIndication
ansi_map.routingDigits routingDigits
Byte array
ansi_map.RoutingDigits
ansi_map.routingRequest routingRequest
No value
ansi_map.RoutingRequest
ansi_map.routingRequestRes routingRequestRes
No value
ansi_map.RoutingRequestRes
ansi_map.sCFOverloadGapInterval sCFOverloadGapInterval
Unsigned 32-bit integer
ansi_map.SCFOverloadGapInterval
ansi_map.sMSDeliveryBackward sMSDeliveryBackward
No value
ansi_map.SMSDeliveryBackward
ansi_map.sMSDeliveryBackwardRes sMSDeliveryBackwardRes
No value
ansi_map.SMSDeliveryBackwardRes
ansi_map.sMSDeliveryForward sMSDeliveryForward
No value
ansi_map.SMSDeliveryForward
ansi_map.sMSDeliveryForwardRes sMSDeliveryForwardRes
No value
ansi_map.SMSDeliveryForwardRes
ansi_map.sMSDeliveryPointToPoint sMSDeliveryPointToPoint
No value
ansi_map.SMSDeliveryPointToPoint
ansi_map.sMSDeliveryPointToPointRes sMSDeliveryPointToPointRes
No value
ansi_map.SMSDeliveryPointToPointRes
ansi_map.sMSNotification sMSNotification
No value
ansi_map.SMSNotification
ansi_map.sMSNotificationRes sMSNotificationRes
No value
ansi_map.SMSNotificationRes
ansi_map.sMSRequest sMSRequest
No value
ansi_map.SMSRequest
ansi_map.sMSRequestRes sMSRequestRes
No value
ansi_map.SMSRequestRes
ansi_map.sOCStatus sOCStatus
Unsigned 8-bit integer
ansi_map.SOCStatus
ansi_map.sRFDirective sRFDirective
No value
ansi_map.SRFDirective
ansi_map.sRFDirectiveRes sRFDirectiveRes
No value
ansi_map.SRFDirectiveRes
ansi_map.scriptArgument scriptArgument
Byte array
ansi_map.ScriptArgument
ansi_map.scriptName scriptName
Byte array
ansi_map.ScriptName
ansi_map.scriptResult scriptResult
Byte array
ansi_map.ScriptResult
ansi_map.search search
No value
ansi_map.Search
ansi_map.searchRes searchRes
No value
ansi_map.SearchRes
ansi_map.segcount Segment Counter
Unsigned 8-bit integer
Segment Counter
ansi_map.seizeResource seizeResource
No value
ansi_map.SeizeResource
ansi_map.seizeResourceRes seizeResourceRes
No value
ansi_map.SeizeResourceRes
ansi_map.seizureType seizureType
Unsigned 32-bit integer
ansi_map.SeizureType
ansi_map.senderIdentificationNumber senderIdentificationNumber
No value
ansi_map.SenderIdentificationNumber
ansi_map.serviceDataAccessElementList serviceDataAccessElementList
Unsigned 32-bit integer
ansi_map.ServiceDataAccessElementList
ansi_map.serviceDataResultList serviceDataResultList
Unsigned 32-bit integer
ansi_map.ServiceDataResultList
ansi_map.serviceID serviceID
Byte array
ansi_map.ServiceID
ansi_map.serviceIndicator serviceIndicator
Unsigned 8-bit integer
ansi_map.ServiceIndicator
ansi_map.serviceManagementSystemGapInterval serviceManagementSystemGapInterval
Unsigned 32-bit integer
ansi_map.ServiceManagementSystemGapInterval
ansi_map.serviceRedirectionCause serviceRedirectionCause
Unsigned 8-bit integer
ansi_map.ServiceRedirectionCause
ansi_map.serviceRedirectionInfo serviceRedirectionInfo
Byte array
ansi_map.ServiceRedirectionInfo
ansi_map.serviceRequest serviceRequest
No value
ansi_map.ServiceRequest
ansi_map.serviceRequestRes serviceRequestRes
No value
ansi_map.ServiceRequestRes
ansi_map.servicesResult servicesResult
Unsigned 8-bit integer
ansi_map.ServicesResult
ansi_map.servingCellID servingCellID
Byte array
ansi_map.ServingCellID
ansi_map.setupResult setupResult
Unsigned 8-bit integer
ansi_map.SetupResult
ansi_map.sharedSecretData sharedSecretData
Byte array
ansi_map.SharedSecretData
ansi_map.si Screening indication
Unsigned 8-bit integer
Screening indication
ansi_map.signalQuality signalQuality
Unsigned 32-bit integer
ansi_map.SignalQuality
ansi_map.signalingMessageEncryptionKey signalingMessageEncryptionKey
Byte array
ansi_map.SignalingMessageEncryptionKey
ansi_map.signalingMessageEncryptionReport signalingMessageEncryptionReport
Unsigned 8-bit integer
ansi_map.SignalingMessageEncryptionReport
ansi_map.sms_AccessDeniedReason sms-AccessDeniedReason
Unsigned 8-bit integer
ansi_map.SMS_AccessDeniedReason
ansi_map.sms_Address sms-Address
No value
ansi_map.SMS_Address
ansi_map.sms_BearerData sms-BearerData
Byte array
ansi_map.SMS_BearerData
ansi_map.sms_CauseCode sms-CauseCode
Unsigned 8-bit integer
ansi_map.SMS_CauseCode
ansi_map.sms_ChargeIndicator sms-ChargeIndicator
Unsigned 8-bit integer
ansi_map.SMS_ChargeIndicator
ansi_map.sms_DestinationAddress sms-DestinationAddress
No value
ansi_map.SMS_DestinationAddress
ansi_map.sms_MessageCount sms-MessageCount
Byte array
ansi_map.SMS_MessageCount
ansi_map.sms_MessageWaitingIndicator sms-MessageWaitingIndicator
No value
ansi_map.SMS_MessageWaitingIndicator
ansi_map.sms_NotificationIndicator sms-NotificationIndicator
Unsigned 8-bit integer
ansi_map.SMS_NotificationIndicator
ansi_map.sms_OriginalDestinationAddress sms-OriginalDestinationAddress
No value
ansi_map.SMS_OriginalDestinationAddress
ansi_map.sms_OriginalDestinationSubaddress sms-OriginalDestinationSubaddress
Byte array
ansi_map.SMS_OriginalDestinationSubaddress
ansi_map.sms_OriginalOriginatingAddress sms-OriginalOriginatingAddress
No value
ansi_map.SMS_OriginalOriginatingAddress
ansi_map.sms_OriginalOriginatingSubaddress sms-OriginalOriginatingSubaddress
Byte array
ansi_map.SMS_OriginalOriginatingSubaddress
ansi_map.sms_OriginatingAddress sms-OriginatingAddress
No value
ansi_map.SMS_OriginatingAddress
ansi_map.sms_OriginationRestrictions sms-OriginationRestrictions
Byte array
ansi_map.SMS_OriginationRestrictions
ansi_map.sms_TeleserviceIdentifier sms-TeleserviceIdentifier
Byte array
ansi_map.SMS_TeleserviceIdentifier
ansi_map.sms_TerminationRestrictions sms-TerminationRestrictions
Byte array
ansi_map.SMS_TerminationRestrictions
ansi_map.specializedResource specializedResource
Byte array
ansi_map.SpecializedResource
ansi_map.spiniTriggers spiniTriggers
Byte array
ansi_map.SPINITriggers
ansi_map.spinipin spinipin
Byte array
ansi_map.SPINIPIN
ansi_map.ssdUpdateReport ssdUpdateReport
Unsigned 16-bit integer
ansi_map.SSDUpdateReport
ansi_map.ssdnotShared ssdnotShared
Unsigned 32-bit integer
ansi_map.SSDNotShared
ansi_map.stationClassMark stationClassMark
Byte array
ansi_map.StationClassMark
ansi_map.statusRequest statusRequest
No value
ansi_map.StatusRequest
ansi_map.statusRequestRes statusRequestRes
No value
ansi_map.StatusRequestRes
ansi_map.subaddr_odd_even Odd/Even Indicator
Boolean
Odd/Even Indicator
ansi_map.subaddr_type Type of Subaddress
Unsigned 8-bit integer
Type of Subaddress
ansi_map.suspiciousAccess suspiciousAccess
Unsigned 32-bit integer
ansi_map.SuspiciousAccess
ansi_map.swno Switch Number (SWNO)
Unsigned 8-bit integer
Switch Number (SWNO)
ansi_map.systemAccessData systemAccessData
Byte array
ansi_map.SystemAccessData
ansi_map.systemAccessType systemAccessType
Unsigned 32-bit integer
ansi_map.SystemAccessType
ansi_map.systemCapabilities systemCapabilities
Byte array
ansi_map.SystemCapabilities
ansi_map.systemMyTypeCode systemMyTypeCode
Unsigned 32-bit integer
ansi_map.SystemMyTypeCode
ansi_map.systemOperatorCode systemOperatorCode
Byte array
ansi_map.SystemOperatorCode
ansi_map.systemcapabilities.auth Authentication Parameters Requested (AUTH)
Boolean
Authentication Parameters Requested (AUTH)
ansi_map.systemcapabilities.cave CAVE Algorithm Capable (CAVE)
Boolean
CAVE Algorithm Capable (CAVE)
ansi_map.systemcapabilities.dp Data Privacy (DP)
Boolean
Data Privacy (DP)
ansi_map.systemcapabilities.se Signaling Message Encryption Capable (SE )
Boolean
Signaling Message Encryption Capable (SE )
ansi_map.systemcapabilities.ssd Shared SSD (SSD)
Boolean
Shared SSD (SSD)
ansi_map.systemcapabilities.vp Voice Privacy Capable (VP )
Boolean
Voice Privacy Capable (VP )
ansi_map.tAnswer tAnswer
No value
ansi_map.TAnswer
ansi_map.tBusy tBusy
No value
ansi_map.TBusy
ansi_map.tBusyRes tBusyRes
No value
ansi_map.TBusyRes
ansi_map.tDisconnect tDisconnect
No value
ansi_map.TDisconnect
ansi_map.tDisconnectRes tDisconnectRes
No value
ansi_map.TDisconnectRes
ansi_map.tMSIDirective tMSIDirective
No value
ansi_map.TMSIDirective
ansi_map.tMSIDirectiveRes tMSIDirectiveRes
No value
ansi_map.TMSIDirectiveRes
ansi_map.tNoAnswer tNoAnswer
No value
ansi_map.TNoAnswer
ansi_map.tNoAnswerRes tNoAnswerRes
No value
ansi_map.TNoAnswerRes
ansi_map.targetCellID targetCellID
Byte array
ansi_map.TargetCellID
ansi_map.targetCellID1 targetCellID1
Byte array
ansi_map.TargetCellID
ansi_map.targetCellIDList targetCellIDList
No value
ansi_map.TargetCellIDList
ansi_map.targetMeasurementList targetMeasurementList
Unsigned 32-bit integer
ansi_map.TargetMeasurementList
ansi_map.tdmaBandwidth tdmaBandwidth
Unsigned 8-bit integer
ansi_map.TDMABandwidth
ansi_map.tdmaBurstIndicator tdmaBurstIndicator
Byte array
ansi_map.TDMABurstIndicator
ansi_map.tdmaCallMode tdmaCallMode
Byte array
ansi_map.TDMACallMode
ansi_map.tdmaChannelData tdmaChannelData
Byte array
ansi_map.TDMAChannelData
ansi_map.tdmaDataFeaturesIndicator tdmaDataFeaturesIndicator
Byte array
ansi_map.TDMADataFeaturesIndicator
ansi_map.tdmaDataMode tdmaDataMode
Byte array
ansi_map.TDMADataMode
ansi_map.tdmaServiceCode tdmaServiceCode
Unsigned 8-bit integer
ansi_map.TDMAServiceCode
ansi_map.tdmaTerminalCapability tdmaTerminalCapability
Byte array
ansi_map.TDMATerminalCapability
ansi_map.tdmaVoiceCoder tdmaVoiceCoder
Byte array
ansi_map.TDMAVoiceCoder
ansi_map.tdmaVoiceMode tdmaVoiceMode
Byte array
ansi_map.TDMAVoiceMode
ansi_map.tdma_MAHORequest tdma-MAHORequest
Byte array
ansi_map.TDMA_MAHORequest
ansi_map.tdma_MAHO_CELLID tdma-MAHO-CELLID
Byte array
ansi_map.TDMA_MAHO_CELLID
ansi_map.tdma_MAHO_CHANNEL tdma-MAHO-CHANNEL
Byte array
ansi_map.TDMA_MAHO_CHANNEL
ansi_map.tdma_TimeAlignment tdma-TimeAlignment
Byte array
ansi_map.TDMA_TimeAlignment
ansi_map.teleservice_Priority teleservice-Priority
Byte array
ansi_map.Teleservice_Priority
ansi_map.temporaryReferenceNumber temporaryReferenceNumber
Byte array
ansi_map.TemporaryReferenceNumber
ansi_map.terminalType terminalType
Unsigned 32-bit integer
ansi_map.TerminalType
ansi_map.terminationAccessType terminationAccessType
Unsigned 8-bit integer
ansi_map.TerminationAccessType
ansi_map.terminationList terminationList
Unsigned 32-bit integer
ansi_map.TerminationList
ansi_map.terminationRestrictionCode terminationRestrictionCode
Unsigned 32-bit integer
ansi_map.TerminationRestrictionCode
ansi_map.terminationTreatment terminationTreatment
Unsigned 8-bit integer
ansi_map.TerminationTreatment
ansi_map.terminationTriggers terminationTriggers
Byte array
ansi_map.TerminationTriggers
ansi_map.terminationtriggers.busy Busy
Unsigned 8-bit integer
Busy
ansi_map.terminationtriggers.na No Answer (NA)
Unsigned 8-bit integer
No Answer (NA)
ansi_map.terminationtriggers.npr No Page Response (NPR)
Unsigned 8-bit integer
No Page Response (NPR)
ansi_map.terminationtriggers.nr None Reachable (NR)
Unsigned 8-bit integer
None Reachable (NR)
ansi_map.terminationtriggers.rf Routing Failure (RF)
Unsigned 8-bit integer
Routing Failure (RF)
ansi_map.tgn Trunk Group Number (G)
Unsigned 8-bit integer
Trunk Group Number (G)
ansi_map.timeDateOffset timeDateOffset
Byte array
ansi_map.TimeDateOffset
ansi_map.timeOfDay timeOfDay
Signed 32-bit integer
ansi_map.TimeOfDay
ansi_map.trans_cap_ann Announcements (ANN)
Boolean
Announcements (ANN)
ansi_map.trans_cap_busy Busy Detection (BUSY)
Boolean
Busy Detection (BUSY)
ansi_map.trans_cap_multerm Multiple Terminations
Unsigned 8-bit integer
Multiple Terminations
ansi_map.trans_cap_nami NAME Capability Indicator (NAMI)
Boolean
NAME Capability Indicator (NAMI)
ansi_map.trans_cap_ndss NDSS Capability (NDSS)
Boolean
NDSS Capability (NDSS)
ansi_map.trans_cap_prof Profile (PROF)
Boolean
Profile (PROF)
ansi_map.trans_cap_rui Remote User Interaction (RUI)
Boolean
Remote User Interaction (RUI)
ansi_map.trans_cap_spini Subscriber PIN Intercept (SPINI)
Boolean
Subscriber PIN Intercept (SPINI)
ansi_map.trans_cap_tl TerminationList (TL)
Boolean
TerminationList (TL)
ansi_map.trans_cap_uzci UZ Capability Indicator (UZCI)
Boolean
UZ Capability Indicator (UZCI)
ansi_map.trans_cap_waddr WIN Addressing (WADDR)
Boolean
WIN Addressing (WADDR)
ansi_map.transactionCapability transactionCapability
Byte array
ansi_map.TransactionCapability
ansi_map.transferToNumberRequest transferToNumberRequest
No value
ansi_map.TransferToNumberRequest
ansi_map.transferToNumberRequestRes transferToNumberRequestRes
No value
ansi_map.TransferToNumberRequestRes
ansi_map.triggerAddressList triggerAddressList
No value
ansi_map.TriggerAddressList
ansi_map.triggerCapability triggerCapability
Byte array
ansi_map.TriggerCapability
ansi_map.triggerList triggerList
No value
ansi_map.TriggerList
ansi_map.triggerListOpt triggerListOpt
No value
ansi_map.TriggerList
ansi_map.triggerType triggerType
Unsigned 32-bit integer
ansi_map.TriggerType
ansi_map.triggercapability.all All_Calls (All)
Boolean
All_Calls (All)
ansi_map.triggercapability.at Advanced_Termination (AT)
Boolean
Advanced_Termination (AT)
ansi_map.triggercapability.cdraa Called_Routing_Address_Available (CdRAA)
Boolean
Called_Routing_Address_Available (CdRAA)
ansi_map.triggercapability.cgraa Calling_Routing_Address_Available (CgRAA)
Boolean
Calling_Routing_Address_Available (CgRAA)
ansi_map.triggercapability.init Introducing Star/Pound (INIT)
Boolean
Introducing Star/Pound (INIT)
ansi_map.triggercapability.it Initial_Termination (IT)
Boolean
Initial_Termination (IT)
ansi_map.triggercapability.kdigit K-digit (K-digit)
Boolean
K-digit (K-digit)
ansi_map.triggercapability.oaa Origination_Attempt_Authorized (OAA)
Boolean
Origination_Attempt_Authorized (OAA)
ansi_map.triggercapability.oans O_Answer (OANS)
Boolean
O_Answer (OANS)
ansi_map.triggercapability.odisc O_Disconnect (ODISC)
Boolean
O_Disconnect (ODISC)
ansi_map.triggercapability.ona O_No_Answer (ONA)
Boolean
O_No_Answer (ONA)
ansi_map.triggercapability.pa Prior_Agreement (PA)
Boolean
Prior_Agreement (PA)
ansi_map.triggercapability.rvtc Revertive_Call (RvtC)
Boolean
Revertive_Call (RvtC)
ansi_map.triggercapability.tans T_Answer (TANS)
Boolean
T_Answer (TANS)
ansi_map.triggercapability.tbusy T_Busy (TBusy)
Boolean
T_Busy (TBusy)
ansi_map.triggercapability.tdisc T_Disconnect (TDISC)
Boolean
T_Disconnect (TDISC)
ansi_map.triggercapability.tna T_No_Answer (TNA)
Boolean
T_No_Answer (TNA)
ansi_map.triggercapability.tra Terminating_Resource_Available (TRA)
Boolean
Terminating_Resource_Available (TRA)
ansi_map.triggercapability.unrec Unrecognized_Number (Unrec)
Boolean
Unrecognized_Number (Unrec)
ansi_map.trunkStatus trunkStatus
Unsigned 32-bit integer
ansi_map.TrunkStatus
ansi_map.trunkTest trunkTest
No value
ansi_map.TrunkTest
ansi_map.trunkTestDisconnect trunkTestDisconnect
No value
ansi_map.TrunkTestDisconnect
ansi_map.type_of_digits Type of Digits
Unsigned 8-bit integer
Type of Digits
ansi_map.type_of_pi Presentation Indication
Boolean
Presentation Indication
ansi_map.unblocking unblocking
No value
ansi_map.Unblocking
ansi_map.uniqueChallengeReport uniqueChallengeReport
Unsigned 8-bit integer
ansi_map.UniqueChallengeReport
ansi_map.unreliableCallData unreliableCallData
No value
ansi_map.UnreliableCallData
ansi_map.unreliableRoamerDataDirective unreliableRoamerDataDirective
No value
ansi_map.UnreliableRoamerDataDirective
ansi_map.unsolicitedResponse unsolicitedResponse
No value
ansi_map.UnsolicitedResponse
ansi_map.unsolicitedResponseRes unsolicitedResponseRes
No value
ansi_map.UnsolicitedResponseRes
ansi_map.updateCount updateCount
Unsigned 32-bit integer
ansi_map.UpdateCount
ansi_map.userGroup userGroup
Byte array
ansi_map.UserGroup
ansi_map.userZoneData userZoneData
Byte array
ansi_map.UserZoneData
ansi_map.value Value
Unsigned 8-bit integer
Value
ansi_map.vertical_Velocity vertical-Velocity
Byte array
ansi_map.Vertical_Velocity
ansi_map.voiceMailboxNumber voiceMailboxNumber
Byte array
ansi_map.VoiceMailboxNumber
ansi_map.voiceMailboxPIN voiceMailboxPIN
Byte array
ansi_map.VoiceMailboxPIN
ansi_map.voicePrivacyMask voicePrivacyMask
Byte array
ansi_map.VoicePrivacyMask
ansi_map.voicePrivacyReport voicePrivacyReport
Unsigned 8-bit integer
ansi_map.VoicePrivacyReport
ansi_map.wINOperationsCapability wINOperationsCapability
Byte array
ansi_map.WINOperationsCapability
ansi_map.wIN_TriggerList wIN-TriggerList
Byte array
ansi_map.WIN_TriggerList
ansi_map.winCapability winCapability
No value
ansi_map.WINCapability
ansi_map.winoperationscapability.ccdir CallControlDirective(CCDIR)
Boolean
CallControlDirective(CCDIR)
ansi_map.winoperationscapability.conn ConnectResource (CONN)
Boolean
ConnectResource (CONN)
ansi_map.winoperationscapability.pos PositionRequest (POS)
Boolean
PositionRequest (POS)
ansi_tcap._untag_item _untag
No value
ansi_tcap.EXTERNAL
ansi_tcap.abort abort
No value
ansi_tcap.T_abort
ansi_tcap.abortCause abortCause
Signed 32-bit integer
ansi_tcap.P_Abort_cause
ansi_tcap.applicationContext applicationContext
Unsigned 32-bit integer
ansi_tcap.T_applicationContext
ansi_tcap.causeInformation causeInformation
Unsigned 32-bit integer
ansi_tcap.T_causeInformation
ansi_tcap.componentID componentID
Byte array
ansi_tcap.T_componentID
ansi_tcap.componentIDs componentIDs
Byte array
ansi_tcap.T_componentIDs
ansi_tcap.componentPortion componentPortion
Unsigned 32-bit integer
ansi_tcap.ComponentSequence
ansi_tcap.confidentiality confidentiality
No value
ansi_tcap.Confidentiality
ansi_tcap.confidentialityId confidentialityId
Unsigned 32-bit integer
ansi_tcap.T_confidentialityId
ansi_tcap.conversationWithPerm conversationWithPerm
No value
ansi_tcap.T_conversationWithPerm
ansi_tcap.conversationWithoutPerm conversationWithoutPerm
No value
ansi_tcap.T_conversationWithoutPerm
ansi_tcap.dialogPortion dialogPortion
No value
ansi_tcap.DialoguePortion
ansi_tcap.dialoguePortion dialoguePortion
No value
ansi_tcap.DialoguePortion
ansi_tcap.errorCode errorCode
Unsigned 32-bit integer
ansi_tcap.ErrorCode
ansi_tcap.identifier identifier
Byte array
ansi_tcap.TransactionID
ansi_tcap.integerApplicationId integerApplicationId
Signed 32-bit integer
ansi_tcap.IntegerApplicationContext
ansi_tcap.integerConfidentialityId integerConfidentialityId
Signed 32-bit integer
ansi_tcap.INTEGER
ansi_tcap.integerSecurityId integerSecurityId
Signed 32-bit integer
ansi_tcap.INTEGER
ansi_tcap.invokeLast invokeLast
No value
ansi_tcap.Invoke
ansi_tcap.invokeNotLast invokeNotLast
No value
ansi_tcap.Invoke
ansi_tcap.national national
Signed 32-bit integer
ansi_tcap.T_national
ansi_tcap.objectApplicationId objectApplicationId
ansi_tcap.ObjectIDApplicationContext
ansi_tcap.objectConfidentialityId objectConfidentialityId
ansi_tcap.OBJECT_IDENTIFIER
ansi_tcap.objectSecurityId objectSecurityId
ansi_tcap.OBJECT_IDENTIFIER
ansi_tcap.operationCode operationCode
Unsigned 32-bit integer
ansi_tcap.OperationCode
ansi_tcap.paramSequence paramSequence
No value
ansi_tcap.T_paramSequence
ansi_tcap.paramSet paramSet
No value
ansi_tcap.T_paramSet
ansi_tcap.parameter parameter
Byte array
ansi_tcap.T_parameter
ansi_tcap.private private
Signed 32-bit integer
ansi_tcap.T_private
ansi_tcap.queryWithPerm queryWithPerm
No value
ansi_tcap.T_queryWithPerm
ansi_tcap.queryWithoutPerm queryWithoutPerm
No value
ansi_tcap.T_queryWithoutPerm
ansi_tcap.reject reject
No value
ansi_tcap.Reject
ansi_tcap.rejectProblem rejectProblem
Signed 32-bit integer
ansi_tcap.Problem
ansi_tcap.response response
No value
ansi_tcap.T_response
ansi_tcap.returnError returnError
No value
ansi_tcap.ReturnError
ansi_tcap.returnResultLast returnResultLast
No value
ansi_tcap.ReturnResult
ansi_tcap.returnResultNotLast returnResultNotLast
No value
ansi_tcap.ReturnResult
ansi_tcap.securityContext securityContext
Unsigned 32-bit integer
ansi_tcap.T_securityContext
ansi_tcap.srt.begin Begin Session
Frame number
SRT Begin of Session
ansi_tcap.srt.duplicate Request Duplicate
Unsigned 32-bit integer
ansi_tcap.srt.end End Session
Frame number
SRT End of Session
ansi_tcap.srt.session_id Session Id
Unsigned 32-bit integer
ansi_tcap.srt.sessiontime Session duration
Time duration
Duration of the TCAP session
ansi_tcap.unidirectional unidirectional
No value
ansi_tcap.T_unidirectional
ansi_tcap.userInformation userInformation
No value
ansi_tcap.UserAbortInformation
ansi_tcap.version version
Byte array
ansi_tcap.ProtocolVersion
aim.buddyname Buddy Name
String
aim.buddynamelen Buddyname len
Unsigned 8-bit integer
aim.channel Channel ID
Unsigned 8-bit integer
aim.cmd_start Command Start
Unsigned 8-bit integer
aim.data Data
Byte array
aim.datalen Data Field Length
Unsigned 16-bit integer
aim.dcinfo.addr Internal IP address
IPv4 address
aim.dcinfo.auth_cookie Authorization Cookie
Byte array
aim.dcinfo.client_futures Client Futures
Unsigned 32-bit integer
aim.dcinfo.last_ext_info_update Last Extended Info Update
Unsigned 32-bit integer
aim.dcinfo.last_ext_status_update Last Extended Status Update
Unsigned 32-bit integer
aim.dcinfo.last_info_update Last Info Update
Unsigned 32-bit integer
aim.dcinfo.proto_version Protocol Version
Unsigned 16-bit integer
aim.dcinfo.tcpport TCP Port
Unsigned 32-bit integer
aim.dcinfo.type Type
Unsigned 8-bit integer
aim.dcinfo.unknown Unknown
Unsigned 16-bit integer
aim.dcinfo.webport Web Front Port
Unsigned 32-bit integer
aim.fnac.family FNAC Family ID
Unsigned 16-bit integer
aim.fnac.flags FNAC Flags
Unsigned 16-bit integer
aim.fnac.flags.contains_version Contains Version of Family this SNAC is in
Boolean
aim.fnac.flags.next_is_related Followed By SNAC with related information
Boolean
aim.fnac.id FNAC ID
Unsigned 32-bit integer
aim.fnac.subtype FNAC Subtype ID
Unsigned 16-bit integer
aim.infotype Infotype
Unsigned 16-bit integer
aim.messageblock.charset Block Character set
Unsigned 16-bit integer
aim.messageblock.charsubset Block Character subset
Unsigned 16-bit integer
aim.messageblock.features Features
Byte array
aim.messageblock.featuresdes Features
Unsigned 16-bit integer
aim.messageblock.featureslen Features Length
Unsigned 16-bit integer
aim.messageblock.info Block info
Unsigned 16-bit integer
aim.messageblock.length Block length
Unsigned 16-bit integer
aim.messageblock.message Message
String
aim.seqno Sequence Number
Unsigned 16-bit integer
aim.signon.challenge Signon challenge
String
aim.signon.challengelen Signon challenge length
Unsigned 16-bit integer
aim.snac.error SNAC Error
Unsigned 16-bit integer
aim.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.dst Dest
Unsigned 8-bit integer
Dest ID
arcnet.exception_flag Exception Flag
Unsigned 8-bit integer
Exception flag
arcnet.offset Offset
Byte array
Offset
arcnet.protID Protocol ID
Unsigned 8-bit integer
Proto type
arcnet.sequence Sequence
Unsigned 16-bit integer
Sequence number
arcnet.split_flag Split Flag
Unsigned 8-bit integer
Split flag
arcnet.src Source
Unsigned 8-bit integer
Source ID
aoe.aflags.a A
Boolean
Whether this is an asynchronous write or not
aoe.aflags.d D
Boolean
aoe.aflags.e E
Boolean
Whether this is a normal or LBA48 command
aoe.aflags.w W
Boolean
Is this a command writing data to the device or not
aoe.ata.cmd ATA Cmd
Unsigned 8-bit integer
ATA command opcode
aoe.ata.status ATA Status
Unsigned 8-bit integer
ATA status bits
aoe.cmd Command
Unsigned 8-bit integer
AOE Command
aoe.err_feature Err/Feature
Unsigned 8-bit integer
Err/Feature
aoe.error Error
Unsigned 8-bit integer
Error code
aoe.lba Lba
Unsigned 64-bit integer
Lba address
aoe.major Major
Unsigned 16-bit integer
Major address
aoe.minor Minor
Unsigned 8-bit integer
Minor address
aoe.response Response flag
Boolean
Whether this is a response PDU or not
aoe.response_in Response In
Frame number
The response to this packet is in this frame
aoe.response_to Response To
Frame number
This is a response to the ATA command in this frame
aoe.sector_count Sector Count
Unsigned 8-bit integer
Sector Count
aoe.tag Tag
Unsigned 32-bit integer
Command Tag
aoe.time Time from request
Time duration
Time between Request and Reply for ATA calls
aoe.version Version
Unsigned 8-bit integer
Version of the AOE protocol
atm.aal AAL
Unsigned 8-bit integer
atm.cid CID
Unsigned 8-bit integer
atm.vci VCI
Unsigned 16-bit integer
atm.vpi VPI
Unsigned 8-bit integer
wlan.phytype PHY type
Unsigned 32-bit integer
wlancap.drops Known Dropped Frames
Unsigned 32-bit integer
wlancap.encoding Encoding Type
Unsigned 32-bit integer
wlancap.length Header length
Unsigned 32-bit integer
wlancap.magic Header magic
Unsigned 32-bit integer
wlancap.padding Padding
Byte array
wlancap.preamble Preamble
Unsigned 32-bit integer
wlancap.priority Priority
Unsigned 32-bit integer
wlancap.receiver_addr Receiver Address
6-byte Hardware (MAC) Address
Receiver Hardware Address
wlancap.sequence Receive sequence
Unsigned 32-bit integer
wlancap.ssi_noise SSI Noise
Signed 32-bit integer
wlancap.ssi_signal SSI Signal
Signed 32-bit integer
wlancap.ssi_type SSI Type
Unsigned 32-bit integer
wlancap.version Header revision
Unsigned 32-bit integer
ax4000.chassis Chassis Number
Unsigned 8-bit integer
ax4000.crc CRC (unchecked)
Unsigned 16-bit integer
ax4000.fill Fill Type
Unsigned 8-bit integer
ax4000.index Index
Unsigned 16-bit integer
ax4000.port Port Number
Unsigned 8-bit integer
ax4000.seq Sequence Number
Unsigned 32-bit integer
ax4000.timestamp Timestamp
Unsigned 32-bit integer
dssetup.dssetup_DsRoleFlags.DS_ROLE_PRIMARY_DOMAIN_GUID_PRESENT Ds Role Primary Domain Guid Present
Boolean
dssetup.dssetup_DsRoleFlags.DS_ROLE_PRIMARY_DS_MIXED_MODE Ds Role Primary Ds Mixed Mode
Boolean
dssetup.dssetup_DsRoleFlags.DS_ROLE_PRIMARY_DS_RUNNING Ds Role Primary Ds Running
Boolean
dssetup.dssetup_DsRoleFlags.DS_ROLE_UPGRADE_IN_PROGRESS Ds Role Upgrade In Progress
Boolean
dssetup.dssetup_DsRoleGetPrimaryDomainInformation.info Info
No value
dssetup.dssetup_DsRoleGetPrimaryDomainInformation.level Level
Unsigned 16-bit integer
dssetup.dssetup_DsRoleInfo.basic Basic
No value
dssetup.dssetup_DsRoleInfo.opstatus Opstatus
No value
dssetup.dssetup_DsRoleInfo.upgrade Upgrade
No value
dssetup.dssetup_DsRoleOpStatus.status Status
Unsigned 16-bit integer
dssetup.dssetup_DsRolePrimaryDomInfoBasic.dns_domain Dns Domain
String
dssetup.dssetup_DsRolePrimaryDomInfoBasic.domain Domain
String
dssetup.dssetup_DsRolePrimaryDomInfoBasic.domain_guid Domain Guid
dssetup.dssetup_DsRolePrimaryDomInfoBasic.flags Flags
Unsigned 32-bit integer
dssetup.dssetup_DsRolePrimaryDomInfoBasic.forest Forest
String
dssetup.dssetup_DsRolePrimaryDomInfoBasic.role Role
Unsigned 16-bit integer
dssetup.dssetup_DsRoleUpgradeStatus.previous_role Previous Role
Unsigned 16-bit integer
dssetup.dssetup_DsRoleUpgradeStatus.upgrading Upgrading
Unsigned 32-bit integer
dssetup.opnum Operation
Unsigned 16-bit integer
dssetup.werror Windows Error
Unsigned 32-bit integer
aodv.dest_ip Destination IP
IPv4 address
Destination IP Address
aodv.dest_ipv6 Destination IPv6
IPv6 address
Destination IPv6 Address
aodv.dest_seqno Destination Sequence Number
Unsigned 32-bit integer
Destination Sequence Number
aodv.destcount Destination Count
Unsigned 8-bit integer
Unreachable Destinations Count
aodv.ext_length Extension Length
Unsigned 8-bit integer
Extension Data Length
aodv.ext_type Extension Type
Unsigned 8-bit integer
Extension Format Type
aodv.flags Flags
Unsigned 16-bit integer
Flags
aodv.flags.rerr_nodelete RERR No Delete
Boolean
aodv.flags.rrep_ack RREP Acknowledgement
Boolean
aodv.flags.rrep_repair RREP Repair
Boolean
aodv.flags.rreq_destinationonly RREQ Destination only
Boolean
aodv.flags.rreq_gratuitous RREQ Gratuitous RREP
Boolean
aodv.flags.rreq_join RREQ Join
Boolean
aodv.flags.rreq_repair RREQ Repair
Boolean
aodv.flags.rreq_unknown RREQ Unknown Sequence Number
Boolean
aodv.hello_interval Hello Interval
Unsigned 32-bit integer
Hello Interval Extension
aodv.hopcount Hop Count
Unsigned 8-bit integer
Hop Count
aodv.lifetime Lifetime
Unsigned 32-bit integer
Lifetime
aodv.orig_ip Originator IP
IPv4 address
Originator IP Address
aodv.orig_ipv6 Originator IPv6
IPv6 address
Originator IPv6 Address
aodv.orig_seqno Originator Sequence Number
Unsigned 32-bit integer
Originator Sequence Number
aodv.prefix_sz Prefix Size
Unsigned 8-bit integer
Prefix Size
aodv.rreq_id RREQ Id
Unsigned 32-bit integer
RREQ Id
aodv.timestamp Timestamp
Unsigned 64-bit integer
Timestamp Extension
aodv.type Type
Unsigned 8-bit integer
AODV packet type
aodv.unreach_dest_ip Unreachable Destination IP
IPv4 address
Unreachable Destination IP Address
aodv.unreach_dest_ipv6 Unreachable Destination IPv6
IPv6 address
Unreachable Destination IPv6 Address
aodv.unreach_dest_seqno Unreachable Destination Sequence Number
Unsigned 32-bit integer
Unreachable Destination Sequence Number
amr.fqi FQI
Boolean
Frame quality indicator bit
amr.if1.sti SID Type Indicator
Boolean
SID Type Indicator
amr.if2.sti SID Type Indicator
Boolean
SID Type Indicator
amr.nb.cmr CMR
Unsigned 8-bit integer
codec mode request
amr.nb.if1.ft Frame Type
Unsigned 8-bit integer
Frame Type
amr.nb.if1.modeind Mode Type indication
Unsigned 8-bit integer
Mode Type indication
amr.nb.if1.modereq Mode Type request
Unsigned 8-bit integer
Mode Type request
amr.nb.if1.stimodeind Mode Type indication
Unsigned 8-bit integer
Mode Type indication
amr.nb.if2.ft Frame Type
Unsigned 8-bit integer
Frame Type
amr.nb.if2.stimodeind Mode Type indication
Unsigned 8-bit integer
Mode Type indication
amr.nb.toc.ft FT bits
Unsigned 8-bit integer
Frame type index
amr.reserved Reserved
Unsigned 8-bit integer
Reserved bits
amr.toc.f F bit
Boolean
F bit
amr.toc.q Q bit
Boolean
Frame quality indicator bit
amr.wb.cmr CMR
Unsigned 8-bit integer
codec mode request
amr.wb.if1.ft Frame Type
Unsigned 8-bit integer
Frame Type
amr.wb.if1.modeind Mode Type indication
Unsigned 8-bit integer
Mode Type indication
amr.wb.if1.modereq Mode Type request
Unsigned 8-bit integer
Mode Type request
amr.wb.if1.stimodeind Mode Type indication
Unsigned 8-bit integer
Mode Type indication
amr.wb.if2.ft Frame Type
Unsigned 8-bit integer
Frame Type
amr.wb.if2.stimodeind Mode Type indication
Unsigned 8-bit integer
Mode Type indication
amr.wb.toc.ft FT bits
Unsigned 8-bit integer
Frame type index
arp.dst.atm_num_e164 Target ATM number (E.164)
String
arp.dst.atm_num_nsap Target ATM number (NSAP)
Byte array
arp.dst.atm_subaddr Target ATM subaddress
Byte array
arp.dst.hlen Target ATM number length
Unsigned 8-bit integer
arp.dst.htype Target ATM number type
Boolean
arp.dst.hw Target hardware address
Byte array
arp.dst.hw_mac Target MAC address
6-byte Hardware (MAC) Address
arp.dst.pln Target protocol size
Unsigned 8-bit integer
arp.dst.proto Target protocol address
Byte array
arp.dst.proto_ipv4 Target IP address
IPv4 address
arp.dst.slen Target ATM subaddress length
Unsigned 8-bit integer
arp.dst.stype Target ATM subaddress type
Boolean
arp.duplicate-address-detected Duplicate IP address detected
No value
arp.duplicate-address-frame Frame showing earlier use of IP address
Frame number
arp.hw.size Hardware size
Unsigned 8-bit integer
arp.hw.type Hardware type
Unsigned 16-bit integer
arp.opcode Opcode
Unsigned 16-bit integer
arp.packet-storm-detected Packet storm detected
No value
arp.proto.size Protocol size
Unsigned 8-bit integer
arp.proto.type Protocol type
Unsigned 16-bit integer
arp.seconds-since-duplicate-address-frame Seconds since earlier frame seen
Unsigned 32-bit integer
arp.src.atm_num_e164 Sender ATM number (E.164)
String
arp.src.atm_num_nsap Sender ATM number (NSAP)
Byte array
arp.src.atm_subaddr Sender ATM subaddress
Byte array
arp.src.hlen Sender ATM number length
Unsigned 8-bit integer
arp.src.htype Sender ATM number type
Boolean
arp.src.hw Sender hardware address
Byte array
arp.src.hw_mac Sender MAC address
6-byte Hardware (MAC) Address
arp.src.pln Sender protocol size
Unsigned 8-bit integer
arp.src.proto Sender protocol address
Byte array
arp.src.proto_ipv4 Sender IP address
IPv4 address
arp.src.slen Sender ATM subaddress length
Unsigned 8-bit integer
arp.src.stype Sender ATM subaddress type
Boolean
amqp.channel Channel
Unsigned 16-bit integer
Channel ID
amqp.header.body-size Body size
Unsigned 64-bit integer
Body size
amqp.header.class Class ID
Unsigned 16-bit integer
Class ID
amqp.header.properties Properties
No value
Message properties
amqp.header.property-flags Property flags
Unsigned 16-bit integer
Property flags
amqp.header.weight Weight
Unsigned 16-bit integer
Weight
amqp.init.id_major Protocol ID Major
Unsigned 8-bit integer
Protocol ID major
amqp.init.id_minor Protocol ID Minor
Unsigned 8-bit integer
Protocol ID minor
amqp.init.protocol Protocol
String
Protocol name
amqp.init.version_major Version Major
Unsigned 8-bit integer
Protocol version major
amqp.init.version_minor Version Minor
Unsigned 8-bit integer
Protocol version minor
amqp.length Length
Unsigned 32-bit integer
Length of the frame
amqp.method.arguments Arguments
No value
Method arguments
amqp.method.arguments.active Active
Boolean
active
amqp.method.arguments.arguments Arguments
No value
arguments
amqp.method.arguments.auto_delete Auto-Delete
Boolean
auto-delete
amqp.method.arguments.capabilities Capabilities
String
capabilities
amqp.method.arguments.challenge Challenge
Byte array
challenge
amqp.method.arguments.channel_id Channel-Id
Byte array
channel-id
amqp.method.arguments.channel_max Channel-Max
Unsigned 16-bit integer
channel-max
amqp.method.arguments.class_id Class-Id
Unsigned 16-bit integer
class-id
amqp.method.arguments.client_properties Client-Properties
No value
client-properties
amqp.method.arguments.cluster_id Cluster-Id
String
cluster-id
amqp.method.arguments.consume_rate Consume-Rate
Unsigned 32-bit integer
consume-rate
amqp.method.arguments.consumer_count Consumer-Count
Unsigned 32-bit integer
consumer-count
amqp.method.arguments.consumer_tag Consumer-Tag
String
consumer-tag
amqp.method.arguments.content_size Content-Size
Unsigned 64-bit integer
content-size
amqp.method.arguments.delivery_tag Delivery-Tag
Unsigned 64-bit integer
delivery-tag
amqp.method.arguments.dtx_identifier Dtx-Identifier
String
dtx-identifier
amqp.method.arguments.durable Durable
Boolean
durable
amqp.method.arguments.exchange Exchange
String
exchange
amqp.method.arguments.exclusive Exclusive
Boolean
exclusive
amqp.method.arguments.filter Filter
No value
filter
amqp.method.arguments.frame_max Frame-Max
Unsigned 32-bit integer
frame-max
amqp.method.arguments.global Global
Boolean
global
amqp.method.arguments.heartbeat Heartbeat
Unsigned 16-bit integer
heartbeat
amqp.method.arguments.host Host
String
host
amqp.method.arguments.identifier Identifier
String
identifier
amqp.method.arguments.if_empty If-Empty
Boolean
if-empty
amqp.method.arguments.if_unused If-Unused
Boolean
if-unused
amqp.method.arguments.immediate Immediate
Boolean
immediate
amqp.method.arguments.insist Insist
Boolean
insist
amqp.method.arguments.internal Internal
Boolean
internal
amqp.method.arguments.known_hosts Known-Hosts
String
known-hosts
amqp.method.arguments.locale Locale
String
locale
amqp.method.arguments.locales Locales
Byte array
locales
amqp.method.arguments.mandatory Mandatory
Boolean
mandatory
amqp.method.arguments.mechanism Mechanism
String
mechanism
amqp.method.arguments.mechanisms Mechanisms
Byte array
mechanisms
amqp.method.arguments.message_count Message-Count
Unsigned 32-bit integer
message-count
amqp.method.arguments.meta_data Meta-Data
No value
meta-data
amqp.method.arguments.method_id Method-Id
Unsigned 16-bit integer
method-id
amqp.method.arguments.multiple Multiple
Boolean
multiple
amqp.method.arguments.no_ack No-Ack
Boolean
no-ack
amqp.method.arguments.no_local No-Local
Boolean
no-local
amqp.method.arguments.nowait Nowait
Boolean
nowait
amqp.method.arguments.out_of_band Out-Of-Band
String
out-of-band
amqp.method.arguments.passive Passive
Boolean
passive
amqp.method.arguments.prefetch_count Prefetch-Count
Unsigned 16-bit integer
prefetch-count
amqp.method.arguments.prefetch_size Prefetch-Size
Unsigned 32-bit integer
prefetch-size
amqp.method.arguments.queue Queue
String
queue
amqp.method.arguments.read Read
Boolean
read
amqp.method.arguments.realm Realm
String
realm
amqp.method.arguments.redelivered Redelivered
Boolean
redelivered
amqp.method.arguments.reply_code Reply-Code
Unsigned 16-bit integer
reply-code
amqp.method.arguments.reply_text Reply-Text
String
reply-text
amqp.method.arguments.requeue Requeue
Boolean
requeue
amqp.method.arguments.response Response
Byte array
response
amqp.method.arguments.routing_key Routing-Key
String
routing-key
amqp.method.arguments.server_properties Server-Properties
No value
server-properties
amqp.method.arguments.staged_size Staged-Size
Unsigned 64-bit integer
staged-size
amqp.method.arguments.ticket Ticket
Unsigned 16-bit integer
ticket
amqp.method.arguments.type Type
String
type
amqp.method.arguments.version_major Version-Major
Unsigned 8-bit integer
version-major
amqp.method.arguments.version_minor Version-Minor
Unsigned 8-bit integer
version-minor
amqp.method.arguments.virtual_host Virtual-Host
String
virtual-host
amqp.method.arguments.write Write
Boolean
write
amqp.method.class Class
Unsigned 16-bit integer
Class ID
amqp.method.method Method
Unsigned 16-bit integer
Method ID
amqp.method.properties.app_id App-Id
String
app-id
amqp.method.properties.broadcast Broadcast
Unsigned 8-bit integer
broadcast
amqp.method.properties.cluster_id Cluster-Id
String
cluster-id
amqp.method.properties.content_encoding Content-Encoding
String
content-encoding
amqp.method.properties.content_type Content-Type
String
content-type
amqp.method.properties.correlation_id Correlation-Id
String
correlation-id
amqp.method.properties.data_name Data-Name
String
data-name
amqp.method.properties.delivery_mode Delivery-Mode
Unsigned 8-bit integer
delivery-mode
amqp.method.properties.durable Durable
Unsigned 8-bit integer
durable
amqp.method.properties.expiration Expiration
String
expiration
amqp.method.properties.filename Filename
String
filename
amqp.method.properties.headers Headers
No value
headers
amqp.method.properties.message_id Message-Id
String
message-id
amqp.method.properties.priority Priority
Unsigned 8-bit integer
priority
amqp.method.properties.proxy_name Proxy-Name
String
proxy-name
amqp.method.properties.reply_to Reply-To
String
reply-to
amqp.method.properties.timestamp Timestamp
Unsigned 64-bit integer
timestamp
amqp.method.properties.type Type
String
type
amqp.method.properties.user_id User-Id
String
user-id
amqp.payload Payload
Byte array
Message payload
amqp.type Type
Unsigned 8-bit integer
Frame type
agentx.c.reason Reason
Unsigned 8-bit integer
close reason
agentx.flags Flags
Unsigned 8-bit integer
header type
agentx.gb.mrepeat Max Repetition
Unsigned 16-bit integer
getBulk Max repetition
agentx.gb.nrepeat Repeaters
Unsigned 16-bit integer
getBulk Num. repeaters
agentx.n_subid Number subids
Unsigned 8-bit integer
Number subids
agentx.o.timeout Timeout
Unsigned 8-bit integer
open timeout
agentx.oid OID
String
OID
agentx.oid_include OID include
Unsigned 8-bit integer
OID include
agentx.oid_prefix OID prefix
Unsigned 8-bit integer
OID prefix
agentx.ostring Octet String
String
Octet String
agentx.ostring_len OString len
Unsigned 32-bit integer
Octet String Length
agentx.packet_id PacketID
Unsigned 32-bit integer
Packet ID
agentx.payload_len Payload length
Unsigned 32-bit integer
Payload length
agentx.r.error Resp. error
Unsigned 16-bit integer
response error
agentx.r.index Resp. index
Unsigned 16-bit integer
response index
agentx.r.priority Priority
Unsigned 8-bit integer
Register Priority
agentx.r.range_subid Range_subid
Unsigned 8-bit integer
Register range_subid
agentx.r.timeout Timeout
Unsigned 8-bit integer
Register timeout
agentx.r.upper_bound Upper bound
Unsigned 32-bit integer
Register upper bound
agentx.r.uptime sysUpTime
Unsigned 32-bit integer
sysUpTime
agentx.session_id sessionID
Unsigned 32-bit integer
Session ID
agentx.transaction_id TransactionID
Unsigned 32-bit integer
Transaction ID
agentx.type Type
Unsigned 8-bit integer
header type
agentx.u.priority Priority
Unsigned 8-bit integer
Unegister Priority
agentx.u.range_subid Range_subid
Unsigned 8-bit integer
Unegister range_subid
agentx.u.timeout Timeout
Unsigned 8-bit integer
Unregister timeout
agentx.u.upper_bound Upper bound
Unsigned 32-bit integer
Register upper bound
agentx.v.tag Variable type
Unsigned 16-bit integer
vtag
agentx.v.val32 Value(32)
Unsigned 32-bit integer
val32
agentx.v.val64 Value(64)
Unsigned 64-bit integer
val64
agentx.version Version
Unsigned 8-bit integer
header version
asap.cause_code Cause Code
Unsigned 16-bit integer
asap.cause_info Cause Info
Byte array
asap.cause_length Cause Length
Unsigned 16-bit integer
asap.cause_padding Padding
Byte array
asap.cookie Cookie
Byte array
asap.h_bit H Bit
Boolean
asap.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_slection_policy_degradation Policy Degradation
Unsigned 32-bit integer
asap.pool_member_slection_policy_load Policy Load
Unsigned 32-bit integer
asap.pool_member_slection_policy_priority Policy Priority
Unsigned 32-bit integer
asap.pool_member_slection_policy_type Policy Type
Unsigned 32-bit integer
asap.pool_member_slection_policy_value Policy Value
Byte array
asap.pool_member_slection_policy_weight Policy Weight
Unsigned 32-bit integer
asap.r_bit R Bit
Boolean
asap.sctp_transport_port Port
Unsigned 16-bit integer
asap.server_identifier Server Identifier
Unsigned 32-bit integer
asap.tcp_transport_port Port
Unsigned 16-bit integer
asap.transport_use Transport Use
Unsigned 16-bit integer
asap.udp_transport_port Port
Unsigned 16-bit integer
asap.udp_transport_reserved Reserved
Unsigned 16-bit integer
enrp.dccp_transport_port Port
Unsigned 16-bit integer
enrp.dccp_transport_reserved Reserved
Unsigned 16-bit integer
enrp.dccp_transport_service_code Service Code
Unsigned 16-bit integer
enrp.udp_lite_transport_port Port
Unsigned 16-bit integer
enrp.udp_lite_transport_reserved Reserved
Unsigned 16-bit integer
airopeek.unknown1 Unknown1
Byte array
airopeek.unknown2 caplength1
Unsigned 16-bit integer
airopeek.unknown3 caplength2
Unsigned 16-bit integer
airopeek.unknown4 Unknown4
Byte array
asf.iana IANA Enterprise Number
Unsigned 32-bit integer
ASF IANA Enterprise Number
asf.len Data Length
Unsigned 8-bit integer
ASF Data Length
asf.tag Message Tag
Unsigned 8-bit integer
ASF Message Tag
asf.type Message Type
Unsigned 8-bit integer
ASF Message Type
tpcp.caddr Client Source IP address
IPv4 address
tpcp.cid Client indent
Unsigned 16-bit integer
tpcp.cport Client Source Port
Unsigned 16-bit integer
tpcp.flags.redir No Redirect
Boolean
Don't redirect client
tpcp.flags.tcp UDP/TCP
Boolean
Protocol type
tpcp.flags.xoff XOFF
Boolean
tpcp.flags.xon XON
Boolean
tpcp.rasaddr RAS server IP address
IPv4 address
tpcp.saddr Server IP address
IPv4 address
tpcp.type Type
Unsigned 8-bit integer
PDU type
tpcp.vaddr Virtual Server IP address
IPv4 address
tpcp.version Version
Unsigned 8-bit integer
TPCP version
afs.backup Backup
Boolean
Backup Server
afs.backup.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.backup.opcode Operation
Unsigned 32-bit integer
Operation
afs.bos BOS
Boolean
Basic Oversee Server
afs.bos.baktime Backup Time
Date/Time stamp
Backup Time
afs.bos.cell Cell
String
Cell
afs.bos.cmd Command
String
Command
afs.bos.content Content
String
Content
afs.bos.data Data
Byte array
Data
afs.bos.date Date
Unsigned 32-bit integer
Date
afs.bos.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.bos.error Error
String
Error
afs.bos.file File
String
File
afs.bos.flags Flags
Unsigned 32-bit integer
Flags
afs.bos.host Host
String
Host
afs.bos.instance Instance
String
Instance
afs.bos.key Key
Byte array
key
afs.bos.keychecksum Key Checksum
Unsigned 32-bit integer
Key Checksum
afs.bos.keymodtime Key Modification Time
Date/Time stamp
Key Modification Time
afs.bos.keyspare2 Key Spare 2
Unsigned 32-bit integer
Key Spare 2
afs.bos.kvno Key Version Number
Unsigned 32-bit integer
Key Version Number
afs.bos.newtime New Time
Date/Time stamp
New Time
afs.bos.number Number
Unsigned 32-bit integer
Number
afs.bos.oldtime Old Time
Date/Time stamp
Old Time
afs.bos.opcode Operation
Unsigned 32-bit integer
Operation
afs.bos.parm Parm
String
Parm
afs.bos.path Path
String
Path
afs.bos.size Size
Unsigned 32-bit integer
Size
afs.bos.spare1 Spare1
String
Spare1
afs.bos.spare2 Spare2
String
Spare2
afs.bos.spare3 Spare3
String
Spare3
afs.bos.status Status
Signed 32-bit integer
Status
afs.bos.statusdesc Status Description
String
Status Description
afs.bos.type Type
String
Type
afs.bos.user User
String
User
afs.cb Callback
Boolean
Callback
afs.cb.callback.expires Expires
Date/Time stamp
Expires
afs.cb.callback.type Type
Unsigned 32-bit integer
Type
afs.cb.callback.version Version
Unsigned 32-bit integer
Version
afs.cb.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.cb.fid.uniq FileID (Uniqifier)
Unsigned 32-bit integer
File ID (Uniqifier)
afs.cb.fid.vnode FileID (VNode)
Unsigned 32-bit integer
File ID (VNode)
afs.cb.fid.volume FileID (Volume)
Unsigned 32-bit integer
File ID (Volume)
afs.cb.opcode Operation
Unsigned 32-bit integer
Operation
afs.error Error
Boolean
Error
afs.error.opcode Operation
Unsigned 32-bit integer
Operation
afs.fs File Server
Boolean
File Server
afs.fs.acl.a _A_dminister
Boolean
Administer
afs.fs.acl.count.negative ACL Count (Negative)
Unsigned 32-bit integer
Number of Negative ACLs
afs.fs.acl.count.positive ACL Count (Positive)
Unsigned 32-bit integer
Number of Positive ACLs
afs.fs.acl.d _D_elete
Boolean
Delete
afs.fs.acl.datasize ACL Size
Unsigned 32-bit integer
ACL Data Size
afs.fs.acl.entity Entity (User/Group)
String
ACL Entity (User/Group)
afs.fs.acl.i _I_nsert
Boolean
Insert
afs.fs.acl.k _L_ock
Boolean
Lock
afs.fs.acl.l _L_ookup
Boolean
Lookup
afs.fs.acl.r _R_ead
Boolean
Read
afs.fs.acl.w _W_rite
Boolean
Write
afs.fs.callback.expires Expires
Time duration
Expires
afs.fs.callback.type Type
Unsigned 32-bit integer
Type
afs.fs.callback.version Version
Unsigned 32-bit integer
Version
afs.fs.cps.spare1 CPS Spare1
Unsigned 32-bit integer
CPS Spare1
afs.fs.cps.spare2 CPS Spare2
Unsigned 32-bit integer
CPS Spare2
afs.fs.cps.spare3 CPS Spare3
Unsigned 32-bit integer
CPS Spare3
afs.fs.data Data
Byte array
Data
afs.fs.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.fs.fid.uniq FileID (Uniqifier)
Unsigned 32-bit integer
File ID (Uniqifier)
afs.fs.fid.vnode FileID (VNode)
Unsigned 32-bit integer
File ID (VNode)
afs.fs.fid.volume FileID (Volume)
Unsigned 32-bit integer
File ID (Volume)
afs.fs.flength FLength
Unsigned 32-bit integer
FLength
afs.fs.flength64 FLength64
Unsigned 64-bit integer
FLength64
afs.fs.ipaddr IP Addr
IPv4 address
IP Addr
afs.fs.length Length
Unsigned 32-bit integer
Length
afs.fs.length64 Length64
Unsigned 64-bit integer
Length64
afs.fs.motd Message of the Day
String
Message of the Day
afs.fs.name Name
String
Name
afs.fs.newname New Name
String
New Name
afs.fs.offlinemsg Offline Message
String
Volume Name
afs.fs.offset Offset
Unsigned 32-bit integer
Offset
afs.fs.offset64 Offset64
Unsigned 64-bit integer
Offset64
afs.fs.oldname Old Name
String
Old Name
afs.fs.opcode Operation
Unsigned 32-bit integer
Operation
afs.fs.status.anonymousaccess Anonymous Access
Unsigned 32-bit integer
Anonymous Access
afs.fs.status.author Author
Unsigned 32-bit integer
Author
afs.fs.status.calleraccess Caller Access
Unsigned 32-bit integer
Caller Access
afs.fs.status.clientmodtime Client Modification Time
Date/Time stamp
Client Modification Time
afs.fs.status.dataversion Data Version
Unsigned 32-bit integer
Data Version
afs.fs.status.dataversionhigh Data Version (High)
Unsigned 32-bit integer
Data Version (High)
afs.fs.status.filetype File Type
Unsigned 32-bit integer
File Type
afs.fs.status.group Group
Unsigned 32-bit integer
Group
afs.fs.status.interfaceversion Interface Version
Unsigned 32-bit integer
Interface Version
afs.fs.status.length Length
Unsigned 32-bit integer
Length
afs.fs.status.linkcount Link Count
Unsigned 32-bit integer
Link Count
afs.fs.status.mask Mask
Unsigned 32-bit integer
Mask
afs.fs.status.mask.fsync FSync
Boolean
FSync
afs.fs.status.mask.setgroup Set Group
Boolean
Set Group
afs.fs.status.mask.setmode Set Mode
Boolean
Set Mode
afs.fs.status.mask.setmodtime Set Modification Time
Boolean
Set Modification Time
afs.fs.status.mask.setowner Set Owner
Boolean
Set Owner
afs.fs.status.mask.setsegsize Set Segment Size
Boolean
Set Segment Size
afs.fs.status.mode Unix Mode
Unsigned 32-bit integer
Unix Mode
afs.fs.status.owner Owner
Unsigned 32-bit integer
Owner
afs.fs.status.parentunique Parent Unique
Unsigned 32-bit integer
Parent Unique
afs.fs.status.parentvnode Parent VNode
Unsigned 32-bit integer
Parent VNode
afs.fs.status.segsize Segment Size
Unsigned 32-bit integer
Segment Size
afs.fs.status.servermodtime Server Modification Time
Date/Time stamp
Server Modification Time
afs.fs.status.spare2 Spare 2
Unsigned 32-bit integer
Spare 2
afs.fs.status.spare3 Spare 3
Unsigned 32-bit integer
Spare 3
afs.fs.status.spare4 Spare 4
Unsigned 32-bit integer
Spare 4
afs.fs.status.synccounter Sync Counter
Unsigned 32-bit integer
Sync Counter
afs.fs.symlink.content Symlink Content
String
Symlink Content
afs.fs.symlink.name Symlink Name
String
Symlink Name
afs.fs.timestamp Timestamp
Date/Time stamp
Timestamp
afs.fs.token Token
Byte array
Token
afs.fs.viceid Vice ID
Unsigned 32-bit integer
Vice ID
afs.fs.vicelocktype Vice Lock Type
Unsigned 32-bit integer
Vice Lock Type
afs.fs.volid Volume ID
Unsigned 32-bit integer
Volume ID
afs.fs.volname Volume Name
String
Volume Name
afs.fs.volsync.spare1 Volume Creation Timestamp
Date/Time stamp
Volume Creation Timestamp
afs.fs.volsync.spare2 Spare 2
Unsigned 32-bit integer
Spare 2
afs.fs.volsync.spare3 Spare 3
Unsigned 32-bit integer
Spare 3
afs.fs.volsync.spare4 Spare 4
Unsigned 32-bit integer
Spare 4
afs.fs.volsync.spare5 Spare 5
Unsigned 32-bit integer
Spare 5
afs.fs.volsync.spare6 Spare 6
Unsigned 32-bit integer
Spare 6
afs.fs.xstats.clientversion Client Version
Unsigned 32-bit integer
Client Version
afs.fs.xstats.collnumber Collection Number
Unsigned 32-bit integer
Collection Number
afs.fs.xstats.timestamp XStats Timestamp
Unsigned 32-bit integer
XStats Timestamp
afs.fs.xstats.version XStats Version
Unsigned 32-bit integer
XStats Version
afs.kauth KAuth
Boolean
Kerberos Auth Server
afs.kauth.data Data
Byte array
Data
afs.kauth.domain Domain
String
Domain
afs.kauth.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.kauth.kvno Key Version Number
Unsigned 32-bit integer
Key Version Number
afs.kauth.name Name
String
Name
afs.kauth.opcode Operation
Unsigned 32-bit integer
Operation
afs.kauth.princ Principal
String
Principal
afs.kauth.realm Realm
String
Realm
afs.prot Protection
Boolean
Protection Server
afs.prot.count Count
Unsigned 32-bit integer
Count
afs.prot.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.prot.flag Flag
Unsigned 32-bit integer
Flag
afs.prot.gid Group ID
Unsigned 32-bit integer
Group ID
afs.prot.id ID
Unsigned 32-bit integer
ID
afs.prot.maxgid Maximum Group ID
Unsigned 32-bit integer
Maximum Group ID
afs.prot.maxuid Maximum User ID
Unsigned 32-bit integer
Maximum User ID
afs.prot.name Name
String
Name
afs.prot.newid New ID
Unsigned 32-bit integer
New ID
afs.prot.oldid Old ID
Unsigned 32-bit integer
Old ID
afs.prot.opcode Operation
Unsigned 32-bit integer
Operation
afs.prot.pos Position
Unsigned 32-bit integer
Position
afs.prot.uid User ID
Unsigned 32-bit integer
User ID
afs.repframe Reply Frame
Frame number
Reply Frame
afs.reqframe Request Frame
Frame number
Request Frame
afs.rmtsys Rmtsys
Boolean
Rmtsys
afs.rmtsys.opcode Operation
Unsigned 32-bit integer
Operation
afs.time Time from request
Time duration
Time between Request and Reply for AFS calls
afs.ubik Ubik
Boolean
Ubik
afs.ubik.activewrite Active Write
Unsigned 32-bit integer
Active Write
afs.ubik.addr Address
IPv4 address
Address
afs.ubik.amsyncsite Am Sync Site
Unsigned 32-bit integer
Am Sync Site
afs.ubik.anyreadlocks Any Read Locks
Unsigned 32-bit integer
Any Read Locks
afs.ubik.anywritelocks Any Write Locks
Unsigned 32-bit integer
Any Write Locks
afs.ubik.beaconsincedown Beacon Since Down
Unsigned 32-bit integer
Beacon Since Down
afs.ubik.currentdb Current DB
Unsigned 32-bit integer
Current DB
afs.ubik.currenttran Current Transaction
Unsigned 32-bit integer
Current Transaction
afs.ubik.epochtime Epoch Time
Date/Time stamp
Epoch Time
afs.ubik.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.ubik.file File
Unsigned 32-bit integer
File
afs.ubik.interface Interface Address
IPv4 address
Interface Address
afs.ubik.isclone Is Clone
Unsigned 32-bit integer
Is Clone
afs.ubik.lastbeaconsent Last Beacon Sent
Date/Time stamp
Last Beacon Sent
afs.ubik.lastvote Last Vote
Unsigned 32-bit integer
Last Vote
afs.ubik.lastvotetime Last Vote Time
Date/Time stamp
Last Vote Time
afs.ubik.lastyesclaim Last Yes Claim
Date/Time stamp
Last Yes Claim
afs.ubik.lastyeshost Last Yes Host
IPv4 address
Last Yes Host
afs.ubik.lastyesstate Last Yes State
Unsigned 32-bit integer
Last Yes State
afs.ubik.lastyesttime Last Yes Time
Date/Time stamp
Last Yes Time
afs.ubik.length Length
Unsigned 32-bit integer
Length
afs.ubik.lockedpages Locked Pages
Unsigned 32-bit integer
Locked Pages
afs.ubik.locktype Lock Type
Unsigned 32-bit integer
Lock Type
afs.ubik.lowesthost Lowest Host
IPv4 address
Lowest Host
afs.ubik.lowesttime Lowest Time
Date/Time stamp
Lowest Time
afs.ubik.now Now
Date/Time stamp
Now
afs.ubik.nservers Number of Servers
Unsigned 32-bit integer
Number of Servers
afs.ubik.opcode Operation
Unsigned 32-bit integer
Operation
afs.ubik.position Position
Unsigned 32-bit integer
Position
afs.ubik.recoverystate Recovery State
Unsigned 32-bit integer
Recovery State
afs.ubik.site Site
IPv4 address
Site
afs.ubik.state State
Unsigned 32-bit integer
State
afs.ubik.synchost Sync Host
IPv4 address
Sync Host
afs.ubik.syncsiteuntil Sync Site Until
Date/Time stamp
Sync Site Until
afs.ubik.synctime Sync Time
Date/Time stamp
Sync Time
afs.ubik.tidcounter TID Counter
Unsigned 32-bit integer
TID Counter
afs.ubik.up Up
Unsigned 32-bit integer
Up
afs.ubik.version.counter Counter
Unsigned 32-bit integer
Counter
afs.ubik.version.epoch Epoch
Date/Time stamp
Epoch
afs.ubik.voteend Vote Ends
Date/Time stamp
Vote Ends
afs.ubik.votestart Vote Started
Date/Time stamp
Vote Started
afs.ubik.votetype Vote Type
Unsigned 32-bit integer
Vote Type
afs.ubik.writelockedpages Write Locked Pages
Unsigned 32-bit integer
Write Locked Pages
afs.ubik.writetran Write Transaction
Unsigned 32-bit integer
Write Transaction
afs.update Update
Boolean
Update Server
afs.update.opcode Operation
Unsigned 32-bit integer
Operation
afs.vldb VLDB
Boolean
Volume Location Database Server
afs.vldb.bkvol Backup Volume ID
Unsigned 32-bit integer
Read-Only Volume ID
afs.vldb.bump Bumped Volume ID
Unsigned 32-bit integer
Bumped Volume ID
afs.vldb.clonevol Clone Volume ID
Unsigned 32-bit integer
Clone Volume ID
afs.vldb.count Volume Count
Unsigned 32-bit integer
Volume Count
afs.vldb.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.vldb.flags Flags
Unsigned 32-bit integer
Flags
afs.vldb.flags.bkexists Backup Exists
Boolean
Backup Exists
afs.vldb.flags.dfsfileset DFS Fileset
Boolean
DFS Fileset
afs.vldb.flags.roexists Read-Only Exists
Boolean
Read-Only Exists
afs.vldb.flags.rwexists Read/Write Exists
Boolean
Read/Write Exists
afs.vldb.id Volume ID
Unsigned 32-bit integer
Volume ID
afs.vldb.index Volume Index
Unsigned 32-bit integer
Volume Index
afs.vldb.name Volume Name
String
Volume Name
afs.vldb.nextindex Next Volume Index
Unsigned 32-bit integer
Next Volume Index
afs.vldb.numservers Number of Servers
Unsigned 32-bit integer
Number of Servers
afs.vldb.opcode Operation
Unsigned 32-bit integer
Operation
afs.vldb.partition Partition
String
Partition
afs.vldb.rovol Read-Only Volume ID
Unsigned 32-bit integer
Read-Only Volume ID
afs.vldb.rwvol Read-Write Volume ID
Unsigned 32-bit integer
Read-Only Volume ID
afs.vldb.server Server
IPv4 address
Server
afs.vldb.serverflags Server Flags
Unsigned 32-bit integer
Server Flags
afs.vldb.serverip Server IP
IPv4 address
Server IP
afs.vldb.serveruniq Server Unique Address
Unsigned 32-bit integer
Server Unique Address
afs.vldb.serveruuid Server UUID
Byte array
Server UUID
afs.vldb.spare1 Spare 1
Unsigned 32-bit integer
Spare 1
afs.vldb.spare2 Spare 2
Unsigned 32-bit integer
Spare 2
afs.vldb.spare3 Spare 3
Unsigned 32-bit integer
Spare 3
afs.vldb.spare4 Spare 4
Unsigned 32-bit integer
Spare 4
afs.vldb.spare5 Spare 5
Unsigned 32-bit integer
Spare 5
afs.vldb.spare6 Spare 6
Unsigned 32-bit integer
Spare 6
afs.vldb.spare7 Spare 7
Unsigned 32-bit integer
Spare 7
afs.vldb.spare8 Spare 8
Unsigned 32-bit integer
Spare 8
afs.vldb.spare9 Spare 9
Unsigned 32-bit integer
Spare 9
afs.vldb.type Volume Type
Unsigned 32-bit integer
Volume Type
afs.vol Volume Server
Boolean
Volume Server
afs.vol.count Volume Count
Unsigned 32-bit integer
Volume Count
afs.vol.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.vol.id Volume ID
Unsigned 32-bit integer
Volume ID
afs.vol.name Volume Name
String
Volume Name
afs.vol.opcode Operation
Unsigned 32-bit integer
Operation
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
ajp13.code Code
String
Type Code
ajp13.data Data
String
Data
ajp13.hname HNAME
String
Header Name
ajp13.hval HVAL
String
Header Value
ajp13.len Length
Unsigned 16-bit integer
Data Length
ajp13.magic Magic
Byte array
Magic Number
ajp13.method Method
String
HTTP Method
ajp13.nhdr NHDR
Unsigned 16-bit integer
Num Headers
ajp13.port PORT
Unsigned 16-bit integer
Port
ajp13.raddr RADDR
String
Remote Address
ajp13.reusep REUSEP
Unsigned 8-bit integer
Reuse Connection?
ajp13.rhost RHOST
String
Remote Host
ajp13.rlen RLEN
Unsigned 16-bit integer
Requested Length
ajp13.rmsg RSMSG
String
HTTP Status Message
ajp13.rstatus RSTATUS
Unsigned 16-bit integer
HTTP Status Code
ajp13.srv SRV
String
Server
ajp13.sslp SSLP
Unsigned 8-bit integer
Is SSL?
ajp13.uri URI
String
HTTP URI
ajp13.ver Version
String
HTTP Version
afp.AFPVersion AFP Version
String
Client AFP version
afp.UAM UAM
String
User Authentication Method
afp.access Access mode
Unsigned 8-bit integer
Fork access mode
afp.access.deny_read Deny read
Boolean
Deny read
afp.access.deny_write Deny write
Boolean
Deny write
afp.access.read Read
Boolean
Open for reading
afp.access.write Write
Boolean
Open for writing
afp.access_bitmap Bitmap
Unsigned 16-bit integer
Bitmap (reserved)
afp.ace_applicable ACE
Byte array
ACE applicable
afp.ace_flags Flags
Unsigned 32-bit integer
ACE flags
afp.ace_flags.allow Allow
Boolean
Allow rule
afp.ace_flags.deny Deny
Boolean
Deny rule
afp.ace_flags.directory_inherit Dir inherit
Boolean
Dir inherit
afp.ace_flags.file_inherit File inherit
Boolean
File inherit
afp.ace_flags.inherited Inherited
Boolean
Inherited
afp.ace_flags.limit_inherit Limit inherit
Boolean
Limit inherit
afp.ace_flags.only_inherit Only inherit
Boolean
Only inherit
afp.ace_rights Rights
Unsigned 32-bit integer
ACE flags
afp.acl_access_bitmap Bitmap
Unsigned 32-bit integer
ACL access bitmap
afp.acl_access_bitmap.append_data Append data/create subdir
Boolean
Append data to a file / create a subdirectory
afp.acl_access_bitmap.change_owner Change owner
Boolean
Change owner
afp.acl_access_bitmap.delete Delete
Boolean
Delete
afp.acl_access_bitmap.delete_child Delete dir
Boolean
Delete directory
afp.acl_access_bitmap.execute Execute/Search
Boolean
Execute a program
afp.acl_access_bitmap.generic_all Generic all
Boolean
Generic all
afp.acl_access_bitmap.generic_execute Generic execute
Boolean
Generic execute
afp.acl_access_bitmap.generic_read Generic read
Boolean
Generic read
afp.acl_access_bitmap.generic_write Generic write
Boolean
Generic write
afp.acl_access_bitmap.read_attrs Read attributes
Boolean
Read attributes
afp.acl_access_bitmap.read_data Read/List
Boolean
Read data / list directory
afp.acl_access_bitmap.read_extattrs Read extended attributes
Boolean
Read extended attributes
afp.acl_access_bitmap.read_security Read security
Boolean
Read access rights
afp.acl_access_bitmap.synchronize Synchronize
Boolean
Synchronize
afp.acl_access_bitmap.write_attrs Write attributes
Boolean
Write attributes
afp.acl_access_bitmap.write_data Write/Add file
Boolean
Write data to a file / add a file to a directory
afp.acl_access_bitmap.write_extattrs Write extended attributes
Boolean
Write extended attributes
afp.acl_access_bitmap.write_security Write security
Boolean
Write access rights
afp.acl_entrycount Count
Unsigned 32-bit integer
Number of ACL entries
afp.acl_flags ACL flags
Unsigned 32-bit integer
ACL flags
afp.acl_list_bitmap ACL bitmap
Unsigned 16-bit integer
ACL control list bitmap
afp.acl_list_bitmap.ACL ACL
Boolean
ACL
afp.acl_list_bitmap.GRPUUID GRPUUID
Boolean
Group UUID
afp.acl_list_bitmap.Inherit Inherit
Boolean
Inherit ACL
afp.acl_list_bitmap.REMOVEACL Remove ACL
Boolean
Remove ACL
afp.acl_list_bitmap.UUID UUID
Boolean
User UUID
afp.actual_count Count
Signed 32-bit integer
Number of bytes returned by read/write
afp.afp_login_flags Flags
Unsigned 16-bit integer
Login flags
afp.appl_index Index
Unsigned 16-bit integer
Application index
afp.appl_tag Tag
Unsigned 32-bit integer
Application tag
afp.backup_date Backup date
Date/Time stamp
Backup date
afp.cat_count Cat count
Unsigned 32-bit integer
Number of structures returned
afp.cat_position Position
Byte array
Reserved
afp.cat_req_matches Max answers
Signed 32-bit integer
Maximum number of matches to return.
afp.command Command
Unsigned 8-bit integer
AFP function
afp.comment Comment
String
File/folder comment
afp.create_flag Hard create
Boolean
Soft/hard create file
afp.creation_date Creation date
Date/Time stamp
Creation date
afp.data_fork_len Data fork size
Unsigned 32-bit integer
Data fork size
afp.did DID
Unsigned 32-bit integer
Parent directory ID
afp.dir_ar Access rights
Unsigned 32-bit integer
Directory access rights
afp.dir_ar.blank Blank access right
Boolean
Blank access right
afp.dir_ar.e_read Everyone has read access
Boolean
Everyone has read access
afp.dir_ar.e_search Everyone has search access
Boolean
Everyone has search access
afp.dir_ar.e_write Everyone has write access
Boolean
Everyone has write access
afp.dir_ar.g_read Group has read access
Boolean
Group has read access
afp.dir_ar.g_search Group has search access
Boolean
Group has search access
afp.dir_ar.g_write Group has write access
Boolean
Group has write access
afp.dir_ar.o_read Owner has read access
Boolean
Owner has read access
afp.dir_ar.o_search Owner has search access
Boolean
Owner has search access
afp.dir_ar.o_write Owner has write access
Boolean
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_type Type
Unsigned 8-bit integer
Map ID type
afp.map_name Name
String
User/Group name
afp.map_name_type Type
Unsigned 8-bit integer
Map name type
afp.message Message
String
Message
afp.message_bitmap Bitmap
Unsigned 16-bit integer
Message bitmap
afp.message_bitmap.requested Request message
Boolean
Message Requested
afp.message_bitmap.utf8 Message is UTF8
Boolean
Message is UTF8
afp.message_length Len
Unsigned 32-bit integer
Message length
afp.message_type Type
Unsigned 16-bit integer
Type of server message
afp.modification_date Modification date
Date/Time stamp
Modification date
afp.newline_char Newline char
Unsigned 8-bit integer
Value to compare ANDed bytes with when looking for newline
afp.newline_mask Newline mask
Unsigned 8-bit integer
Value to AND bytes with when looking for newline
afp.offset Offset
Signed 32-bit integer
Offset
afp.offset64 Offset
Signed 64-bit integer
Offset (64 bits)
afp.ofork Fork
Unsigned 16-bit integer
Open fork reference number
afp.ofork_len New length
Signed 32-bit integer
New length
afp.ofork_len64 New length
Signed 64-bit integer
New length (64 bits)
afp.pad Pad
No value
Pad Byte
afp.passwd Password
String
Password
afp.path_len Len
Unsigned 8-bit integer
Path length
afp.path_name Name
String
Path name
afp.path_type Type
Unsigned 8-bit integer
Type of names
afp.path_unicode_hint Unicode hint
Unsigned 32-bit integer
Unicode hint
afp.path_unicode_len Len
Unsigned 16-bit integer
Path length (unicode)
afp.random Random number
Byte array
UAM random number
afp.reply_size Reply size
Unsigned 16-bit integer
Reply size
afp.reply_size32 Reply size
Unsigned 32-bit integer
Reply size
afp.req_count Req count
Unsigned 16-bit integer
Maximum number of structures returned
afp.reqcount64 Count
Signed 64-bit integer
Request Count (64 bits)
afp.request_bitmap Request bitmap
Unsigned 32-bit integer
Request bitmap
afp.request_bitmap.UTF8_name UTF-8 name
Boolean
Search UTF-8 name
afp.request_bitmap.attributes Attributes
Boolean
Search attributes
afp.request_bitmap.backup_date Backup date
Boolean
Search backup date
afp.request_bitmap.create_date Creation date
Boolean
Search creation date
afp.request_bitmap.data_fork_len Data fork size
Boolean
Search data fork size
afp.request_bitmap.did DID
Boolean
Search parent directory ID
afp.request_bitmap.ex_data_fork_len Extended data fork size
Boolean
Search extended (>2GB) data fork size
afp.request_bitmap.ex_resource_fork_len Extended resource fork size
Boolean
Search extended (>2GB) resource fork size
afp.request_bitmap.finder_info Finder info
Boolean
Search finder info
afp.request_bitmap.long_name Long name
Boolean
Search long name
afp.request_bitmap.mod_date Modification date
Boolean
Search modification date
afp.request_bitmap.offspring_count Offspring count
Boolean
Search offspring count
afp.request_bitmap.partial_names Match on partial names
Boolean
Match on partial names
afp.request_bitmap.resource_fork_len Resource fork size
Boolean
Search resource fork size
afp.reserved Reserved
Byte array
Reserved
afp.resource_fork_len Resource fork size
Unsigned 32-bit integer
Resource fork size
afp.response_in Response in
Frame number
The response to this packet is in this packet
afp.response_to Response to
Frame number
This packet is a response to the packet in this frame
afp.rw_count Count
Signed 32-bit integer
Number of bytes to be read/written
afp.rw_count64 Count
Signed 64-bit integer
Number of bytes to be read/written (64 bits)
afp.server_time Server time
Date/Time stamp
Server time
afp.session_token Token
Byte array
Session token
afp.session_token_len Len
Unsigned 32-bit integer
Session token length
afp.session_token_timestamp Time stamp
Unsigned 32-bit integer
Session time stamp
afp.session_token_type Type
Unsigned 16-bit integer
Session token type
afp.short_name_offset Short name offset
Unsigned 16-bit integer
Short name offset in packet
afp.start_index Start index
Unsigned 16-bit integer
First structure returned
afp.start_index32 Start index
Unsigned 32-bit integer
First structure returned
afp.struct_size Struct size
Unsigned 8-bit integer
Sizeof of struct
afp.struct_size16 Struct size
Unsigned 16-bit integer
Sizeof of struct
afp.time Time from request
Time duration
Time between Request and Response for AFP cmds
afp.unicode_name_offset Unicode name offset
Unsigned 16-bit integer
Unicode name offset in packet
afp.unix_privs.gid GID
Unsigned 32-bit integer
Group ID
afp.unix_privs.permissions Permissions
Unsigned 32-bit integer
Permissions
afp.unix_privs.ua_permissions User's access rights
Unsigned 32-bit integer
User's access rights
afp.unix_privs.uid UID
Unsigned 32-bit integer
User ID
afp.user User
String
User
afp.user_ID User ID
Unsigned 32-bit integer
User ID
afp.user_bitmap Bitmap
Unsigned 16-bit integer
User Info bitmap
afp.user_bitmap.GID Primary group ID
Boolean
Primary group ID
afp.user_bitmap.UID User ID
Boolean
User ID
afp.user_bitmap.UUID UUID
Boolean
UUID
afp.user_flag Flag
Unsigned 8-bit integer
User Info flag
afp.user_len Len
Unsigned 16-bit integer
User name length (unicode)
afp.user_name User
String
User name (unicode)
afp.user_type Type
Unsigned 8-bit integer
Type of user name
afp.uuid UUID
Byte array
UUID
afp.vol_attribute.acls ACLs
Boolean
Supports access control lists
afp.vol_attribute.blank_access_privs Blank access privileges
Boolean
Supports blank access privileges
afp.vol_attribute.cat_search Catalog search
Boolean
Supports catalog search operations
afp.vol_attribute.extended_attributes Extended Attributes
Boolean
Supports Extended Attributes
afp.vol_attribute.fileIDs File IDs
Boolean
Supports file IDs
afp.vol_attribute.inherit_parent_privs Inherit parent privileges
Boolean
Inherit parent privileges
afp.vol_attribute.network_user_id No Network User ID
Boolean
No Network User ID
afp.vol_attribute.no_exchange_files No exchange files
Boolean
Exchange files not supported
afp.vol_attribute.passwd Volume password
Boolean
Has a volume password
afp.vol_attribute.read_only Read only
Boolean
Read only volume
afp.vol_attribute.unix_privs UNIX access privileges
Boolean
Supports UNIX access privileges
afp.vol_attribute.utf8_names UTF-8 names
Boolean
Supports UTF-8 names
afp.vol_attributes Attributes
Unsigned 16-bit integer
Volume attributes
afp.vol_backup_date Backup date
Date/Time stamp
Volume backup date
afp.vol_bitmap Bitmap
Unsigned 16-bit integer
Volume bitmap
afp.vol_bitmap.attributes Attributes
Boolean
Volume attributes
afp.vol_bitmap.backup_date Backup date
Boolean
Volume backup date
afp.vol_bitmap.block_size Block size
Boolean
Volume block size
afp.vol_bitmap.bytes_free Bytes free
Boolean
Volume free bytes
afp.vol_bitmap.bytes_total Bytes total
Boolean
Volume total bytes
afp.vol_bitmap.create_date Creation date
Boolean
Volume creation date
afp.vol_bitmap.ex_bytes_free Extended bytes free
Boolean
Volume extended (>2GB) free bytes
afp.vol_bitmap.ex_bytes_total Extended bytes total
Boolean
Volume extended (>2GB) total bytes
afp.vol_bitmap.id ID
Boolean
Volume ID
afp.vol_bitmap.mod_date Modification date
Boolean
Volume modification date
afp.vol_bitmap.name Name
Boolean
Volume name
afp.vol_bitmap.signature Signature
Boolean
Volume signature
afp.vol_block_size Block size
Unsigned 32-bit integer
Volume block size
afp.vol_bytes_free Bytes free
Unsigned 32-bit integer
Free space
afp.vol_bytes_total Bytes total
Unsigned 32-bit integer
Volume size
afp.vol_creation_date Creation date
Date/Time stamp
Volume creation date
afp.vol_ex_bytes_free Extended bytes free
Unsigned 64-bit integer
Extended (>2GB) free space
afp.vol_ex_bytes_total Extended bytes total
Unsigned 64-bit integer
Extended (>2GB) volume size
afp.vol_flag_passwd Password
Boolean
Volume is password-protected
afp.vol_flag_unix_priv Unix privs
Boolean
Volume has unix privileges
afp.vol_id Volume id
Unsigned 16-bit integer
Volume id
afp.vol_modification_date Modification date
Date/Time stamp
Volume modification date
afp.vol_name Volume
String
Volume name
afp.vol_name_offset Volume name offset
Unsigned 16-bit integer
Volume name offset in packet
afp.vol_signature Signature
Unsigned 16-bit integer
Volume signature
ap1394.dst Destination
Byte array
Destination address
ap1394.src Source
Byte array
Source address
ap1394.type Type
Unsigned 16-bit integer
asp.attn_code Attn code
Unsigned 16-bit integer
asp attention code
asp.error asp error
Signed 32-bit integer
return error code
asp.function asp function
Unsigned 8-bit integer
asp function
asp.init_error Error
Unsigned 16-bit integer
asp init error
asp.seq Sequence
Unsigned 16-bit integer
asp sequence number
asp.server_addr.len Length
Unsigned 8-bit integer
Address length.
asp.server_addr.type Type
Unsigned 8-bit integer
Address type.
asp.server_addr.value Value
Byte array
Address value
asp.server_directory Directory service
String
Server directory service
asp.server_flag Flag
Unsigned 16-bit integer
Server capabilities flag
asp.server_flag.copyfile Support copyfile
Boolean
Server support copyfile
asp.server_flag.directory Support directory services
Boolean
Server support directory services
asp.server_flag.fast_copy Support fast copy
Boolean
Server support fast copy
asp.server_flag.no_save_passwd Don't allow save password
Boolean
Don't allow save password
asp.server_flag.notify Support server notifications
Boolean
Server support notifications
asp.server_flag.passwd Support change password
Boolean
Server support change password
asp.server_flag.reconnect Support server reconnect
Boolean
Server support reconnect
asp.server_flag.srv_msg Support server message
Boolean
Support server message
asp.server_flag.srv_sig Support server signature
Boolean
Support server signature
asp.server_flag.tcpip Support TCP/IP
Boolean
Server support TCP/IP
asp.server_flag.utf8_name Support UTF8 server name
Boolean
Server support UTF8 server name
asp.server_icon Icon bitmap
Byte array
Server icon bitmap
asp.server_name Server name
String
Server name
asp.server_signature Server signature
Byte array
Server signature
asp.server_type Server type
String
Server type
asp.server_uams UAM
String
UAM
asp.server_utf8_name Server name (UTF8)
String
Server name (UTF8)
asp.server_utf8_name_len Server name length
Unsigned 16-bit integer
UTF8 server name length
asp.server_vers AFP version
String
AFP version
asp.session_id Session ID
Unsigned 8-bit integer
asp session id
asp.size size
Unsigned 16-bit integer
asp available size for reply
asp.socket Socket
Unsigned 8-bit integer
asp socket
asp.version Version
Unsigned 16-bit integer
asp version
asp.zero_value Pad (0)
Byte array
Pad
atp.bitmap Bitmap
Unsigned 8-bit integer
Bitmap or sequence number
atp.ctrlinfo Control info
Unsigned 8-bit integer
control info
atp.eom EOM
Boolean
End-of-message
atp.fragment ATP Fragment
Frame number
ATP Fragment
atp.fragments ATP Fragments
No value
ATP Fragments
atp.function Function
Unsigned 8-bit integer
function code
atp.reassembled_in Reassembled ATP in frame
Frame number
This ATP packet is reassembled in this frame
atp.segment.error Desegmentation error
Frame number
Desegmentation error due to illegal segments
atp.segment.multipletails Multiple tail segments found
Boolean
Several tails were found when desegmenting the packet
atp.segment.overlap Segment overlap
Boolean
Segment overlaps with other segments
atp.segment.overlap.conflict Conflicting data in segment overlap
Boolean
Overlapping segments contained conflicting data
atp.segment.toolongsegment Segment too long
Boolean
Segment contained data past end of packet
atp.sts STS
Boolean
Send transaction status
atp.tid TID
Unsigned 16-bit integer
Transaction id
atp.treltimer TRel timer
Unsigned 8-bit integer
TRel timer
atp.user_bytes User bytes
Unsigned 32-bit integer
User bytes
atp.xo XO
Boolean
Exactly-once flag
aarp.dst.hw Target hardware address
Byte array
aarp.dst.hw_mac Target MAC address
6-byte Hardware (MAC) Address
aarp.dst.proto Target protocol address
Byte array
aarp.dst.proto_id Target ID
Byte array
aarp.hard.size Hardware size
Unsigned 8-bit integer
aarp.hard.type Hardware type
Unsigned 16-bit integer
aarp.opcode Opcode
Unsigned 16-bit integer
aarp.proto.size Protocol size
Unsigned 8-bit integer
aarp.proto.type Protocol type
Unsigned 16-bit integer
aarp.src.hw Sender hardware address
Byte array
aarp.src.hw_mac Sender MAC address
6-byte Hardware (MAC) Address
aarp.src.proto Sender protocol address
Byte array
aarp.src.proto_id Sender ID
Byte array
acap.request Request
Boolean
TRUE if ACAP request
acap.response Response
Boolean
TRUE if ACAP response
acn.acn_reciprocal_channel Reciprocal Channel Number
Unsigned 16-bit integer
Reciprocal Channel
acn.acn_refuse_code Refuse Code
Unsigned 8-bit integer
acn.association Association
Unsigned 16-bit integer
acn.channel_number Channel Number
Unsigned 16-bit integer
acn.cid CID
acn.client_protocol_id Client Protocol ID
Unsigned 32-bit integer
acn.dmp_address Address
Unsigned 8-bit integer
acn.dmp_address_data_pairs Address-Data Pairs
Byte array
More address-data pairs
acn.dmp_adt Address and Data Type
Unsigned 8-bit integer
acn.dmp_adt_a Size
Unsigned 8-bit integer
acn.dmp_adt_d Data Type
Unsigned 8-bit integer
acn.dmp_adt_r Relative
Unsigned 8-bit integer
acn.dmp_adt_v Virtual
Unsigned 8-bit integer
acn.dmp_adt_x Reserved
Unsigned 8-bit integer
acn.dmp_data Data
Byte array
acn.dmp_data16 Addr
Unsigned 16-bit integer
Data16
acn.dmp_data24 Addr
Unsigned 24-bit integer
Data24
acn.dmp_data32 Addr
Unsigned 32-bit integer
Data32
acn.dmp_data8 Addr
Unsigned 8-bit integer
Data8
acn.dmp_reason_code Reason Code
Unsigned 8-bit integer
acn.dmp_vector DMP Vector
Unsigned 8-bit integer
acn.dmx.count Count
Unsigned 16-bit integer
DMX Count
acn.dmx.increment Increment
Unsigned 16-bit integer
DMX Increment
acn.dmx.priority Priority
Unsigned 8-bit integer
DMX Priority
acn.dmx.seq_number Seq No
Unsigned 8-bit integer
DMX Sequence Number
acn.dmx.source_name Source
String
DMX Source Name
acn.dmx.start_code Start Code
Unsigned 16-bit integer
DMX Start Code
acn.dmx.universe Universe
Unsigned 16-bit integer
DMX Universe
acn.dmx_vector Vector
Unsigned 32-bit integer
DMX Vector
acn.expiry Expiry
Unsigned 16-bit integer
acn.first_member_to_ack First Member to ACK
Unsigned 16-bit integer
acn.first_missed_sequence First Missed Sequence
Unsigned 32-bit integer
acn.ip_address_type Addr Type
Unsigned 8-bit integer
acn.ipv4 IPV4
IPv4 address
acn.ipv6 IPV6
IPv6 address
acn.last_member_to_ack Last Member to ACK
Unsigned 16-bit integer
acn.last_missed_sequence Last Missed Sequence
Unsigned 32-bit integer
acn.mak_threshold MAK Threshold
Unsigned 16-bit integer
acn.member_id Member ID
Unsigned 16-bit integer
acn.nak_holdoff NAK holdoff (ms)
Unsigned 16-bit integer
acn.nak_max_wait NAK Max Wait (ms)
Unsigned 16-bit integer
acn.nak_modulus NAK Modulus
Unsigned 16-bit integer
acn.nak_outbound_flag NAK Outbound Flag
Boolean
acn.oldest_available_wrapper Oldest Available Wrapper
Unsigned 32-bit integer
acn.packet_identifier Packet Identifier
String
acn.pdu PDU
No value
acn.pdu.flag_d Data
Boolean
Data flag
acn.pdu.flag_h Header
Boolean
Header flag
acn.pdu.flag_l Length
Boolean
Length flag
acn.pdu.flag_v Vector
Boolean
Vector flag
acn.pdu.flags Flags
Unsigned 8-bit integer
PDU Flags
acn.port Port
Unsigned 16-bit integer
acn.postamble_size Size of postamble
Unsigned 16-bit integer
Postamble size in bytes
acn.preamble_size Size of preamble
Unsigned 16-bit integer
Preamble size in bytes
acn.protocol_id Protocol ID
Unsigned 32-bit integer
acn.reason_code Reason Code
Unsigned 8-bit integer
acn.reliable_sequence_number Reliable Sequence Number
Unsigned 32-bit integer
acn.sdt_vector STD Vector
Unsigned 8-bit integer
acn.session_count Session Count
Unsigned 16-bit integer
acn.total_sequence_number Total Sequence Number
Unsigned 32-bit integer
artner.tod_control ArtTodControl packet
No value
Art-Net ArtTodControl packet
artnet.address ArtAddress packet
No value
Art-Net ArtAddress packet
artnet.address.command Command
Unsigned 8-bit integer
Command
artnet.address.long_name Long Name
String
Long Name
artnet.address.short_name Short Name
String
Short Name
artnet.address.subswitch Subswitch
Unsigned 8-bit integer
Subswitch
artnet.address.swin Input Subswitch
No value
Input Subswitch
artnet.address.swin_1 Input Subswitch of Port 1
Unsigned 8-bit integer
Input Subswitch of Port 1
artnet.address.swin_2 Input Subswitch of Port 2
Unsigned 8-bit integer
Input Subswitch of Port 2
artnet.address.swin_3 Input Subswitch of Port 3
Unsigned 8-bit integer
Input Subswitch of Port 3
artnet.address.swin_4 Input Subswitch of Port 4
Unsigned 8-bit integer
Input Subswitch of Port 4
artnet.address.swout Output Subswitch
No value
Output Subswitch
artnet.address.swout_1 Output Subswitch of Port 1
Unsigned 8-bit integer
Output Subswitch of Port 1
artnet.address.swout_2 Output Subswitch of Port 2
Unsigned 8-bit integer
Output Subswitch of Port 2
artnet.address.swout_3 Output Subswitch of Port 3
Unsigned 8-bit integer
Output Subswitch of Port 3
artnet.address.swout_4 Output Subswitch of Port 4
Unsigned 8-bit integer
Ouput Subswitch of Port 4
artnet.address.swvideo SwVideo
Unsigned 8-bit integer
SwVideo
artnet.filler filler
Byte array
filler
artnet.firmware_master ArtFirmwareMaster packet
No value
Art-Net ArtFirmwareMaster packet
artnet.firmware_master.block_id Block ID
Unsigned 8-bit integer
Block ID
artnet.firmware_master.data data
Byte array
data
artnet.firmware_master.length Lentgh
Unsigned 32-bit integer
Length
artnet.firmware_master.type Type
Unsigned 8-bit integer
Number of Ports
artnet.firmware_reply ArtFirmwareReply packet
No value
Art-Net ArtFirmwareReply packet
artnet.firmware_reply.type Type
Unsigned 8-bit integer
Number of Ports
artnet.header Descriptor Header
No value
Art-Net Descriptor Header
artnet.header.id ID
String
ArtNET ID
artnet.header.opcode Opcode
Unsigned 16-bit integer
Art-Net message type
artnet.header.protver ProVer
Unsigned 16-bit integer
Protcol revision number
artnet.input ArtInput packet
No value
Art-Net ArtInput packet
artnet.input.input Port Status
No value
Port Status
artnet.input.input_1 Status of Port 1
Unsigned 8-bit integer
Status of Port 1
artnet.input.input_2 Status of Port 2
Unsigned 8-bit integer
Status of Port 2
artnet.input.input_3 Status of Port 3
Unsigned 8-bit integer
Status of Port 3
artnet.input.input_4 Status of Port 4
Unsigned 8-bit integer
Status of Port 4
artnet.input.num_ports Number of Ports
Unsigned 16-bit integer
Number of Ports
artnet.ip_prog ArtIpProg packet
No value
ArtNET ArtIpProg packet
artnet.ip_prog.command Command
Unsigned 8-bit integer
Command
artnet.ip_prog.command_prog_enable Enable Programming
Unsigned 8-bit integer
Enable Programming
artnet.ip_prog.command_prog_ip Program IP
Unsigned 8-bit integer
Program IP
artnet.ip_prog.command_prog_port Program Port
Unsigned 8-bit integer
Program Port
artnet.ip_prog.command_prog_sm Program Subnet Mask
Unsigned 8-bit integer
Program Subnet Mask
artnet.ip_prog.command_reset Reset parameters
Unsigned 8-bit integer
Reset parameters
artnet.ip_prog.command_unused Unused
Unsigned 8-bit integer
Unused
artnet.ip_prog.ip IP Address
IPv4 address
IP Address
artnet.ip_prog.port Port
Unsigned 16-bit integer
Port
artnet.ip_prog.sm Subnet mask
IPv4 address
IP Subnet mask
artnet.ip_prog_reply ArtIpProgReplay packet
No value
Art-Net ArtIpProgReply packet
artnet.ip_prog_reply.ip IP Address
IPv4 address
IP Address
artnet.ip_prog_reply.port Port
Unsigned 16-bit integer
Port
artnet.ip_prog_reply.sm Subnet mask
IPv4 address
IP Subnet mask
artnet.output ArtDMX packet
No value
Art-Net ArtDMX packet
artnet.output.data DMX data
No value
DMX Data
artnet.output.data_filter DMX data filter
Byte array
DMX Data Filter
artnet.output.dmx_data DMX data
No value
DMX Data
artnet.output.length Length
Unsigned 16-bit integer
Length
artnet.output.physical Physical
Unsigned 8-bit integer
Physical
artnet.output.sequence Sequence
Unsigned 8-bit integer
Sequence
artnet.output.universe Universe
Unsigned 16-bit integer
Universe
artnet.poll ArtPoll packet
No value
Art-Net ArtPoll packet
artnet.poll.talktome TalkToMe
Unsigned 8-bit integer
TalkToMe
artnet.poll.talktome_reply_dest Reply destination
Unsigned 8-bit integer
Reply destination
artnet.poll.talktome_reply_type Reply type
Unsigned 8-bit integer
Reply type
artnet.poll.talktome_unused unused
Unsigned 8-bit integer
unused
artnet.poll_reply ArtPollReply packet
No value
Art-Net ArtPollReply packet
artnet.poll_reply.esta_man ESTA Code
Unsigned 16-bit integer
ESTA Code
artnet.poll_reply.good_input Input Status
No value
Input Status
artnet.poll_reply.good_input_1 Input status of Port 1
Unsigned 8-bit integer
Input status of Port 1
artnet.poll_reply.good_input_2 Input status of Port 2
Unsigned 8-bit integer
Input status of Port 2
artnet.poll_reply.good_input_3 Input status of Port 3
Unsigned 8-bit integer
Input status of Port 3
artnet.poll_reply.good_input_4 Input status of Port 4
Unsigned 8-bit integer
Input status of Port 4
artnet.poll_reply.good_output Output Status
No value
Port output status
artnet.poll_reply.good_output_1 Output status of Port 1
Unsigned 8-bit integer
Output status of Port 1
artnet.poll_reply.good_output_2 Output status of Port 2
Unsigned 8-bit integer
Output status of Port 2
artnet.poll_reply.good_output_3 Output status of Port 3
Unsigned 8-bit integer
Output status of Port 3
artnet.poll_reply.good_output_4 Output status of Port 4
Unsigned 8-bit integer
Outpus status of Port 4
artnet.poll_reply.ip_address IP Address
IPv4 address
IP Address
artnet.poll_reply.long_name Long Name
String
Long Name
artnet.poll_reply.mac MAC
6-byte Hardware (MAC) Address
MAC
artnet.poll_reply.node_report Node Report
String
Node Report
artnet.poll_reply.num_ports Number of Ports
Unsigned 16-bit integer
Number of Ports
artnet.poll_reply.oem Oem
Unsigned 16-bit integer
OEM
artnet.poll_reply.port_info Port Info
No value
Port Info
artnet.poll_reply.port_nr Port number
Unsigned 16-bit integer
Port Number
artnet.poll_reply.port_types Port Types
No value
Port Types
artnet.poll_reply.port_types_1 Type of Port 1
Unsigned 8-bit integer
Type of Port 1
artnet.poll_reply.port_types_2 Type of Port 2
Unsigned 8-bit integer
Type of Port 2
artnet.poll_reply.port_types_3 Type of Port 3
Unsigned 8-bit integer
Type of Port 3
artnet.poll_reply.port_types_4 Type of Port 4
Unsigned 8-bit integer
Type of Port 4
artnet.poll_reply.short_name Short Name
String
Short Name
artnet.poll_reply.status Status
Unsigned 8-bit integer
Status
artnet.poll_reply.subswitch SubSwitch
Unsigned 16-bit integer
Subswitch version
artnet.poll_reply.swin Input Subswitch
No value
Input Subswitch
artnet.poll_reply.swin_1 Input Subswitch of Port 1
Unsigned 8-bit integer
Input Subswitch of Port 1
artnet.poll_reply.swin_2 Input Subswitch of Port 2
Unsigned 8-bit integer
Input Subswitch of Port 2
artnet.poll_reply.swin_3 Input Subswitch of Port 3
Unsigned 8-bit integer
Input Subswitch of Port 3
artnet.poll_reply.swin_4 Input Subswitch of Port 4
Unsigned 8-bit integer
Input Subswitch of Port 4
artnet.poll_reply.swmacro SwMacro
Unsigned 8-bit integer
SwMacro
artnet.poll_reply.swout Output Subswitch
No value
Output Subswitch
artnet.poll_reply.swout_1 Output Subswitch of Port 1
Unsigned 8-bit integer
Output Subswitch of Port 1
artnet.poll_reply.swout_2 Output Subswitch of Port 2
Unsigned 8-bit integer
Output Subswitch of Port 2
artnet.poll_reply.swout_3 Output Subswitch of Port 3
Unsigned 8-bit integer
Output Subswitch of Port 3
artnet.poll_reply.swout_4 Output Subswitch of Port 4
Unsigned 8-bit integer
Ouput Subswitch of Port 4
artnet.poll_reply.swremote SwRemote
Unsigned 8-bit integer
SwRemote
artnet.poll_reply.swvideo SwVideo
Unsigned 8-bit integer
SwVideo
artnet.poll_reply.ubea_version UBEA Version
Unsigned 8-bit integer
UBEA version number
artnet.poll_reply.versinfo Version Info
Unsigned 16-bit integer
Version info
artnet.poll_server_reply ArtPollServerReply packet
No value
Art-Net ArtPollServerReply packet
artnet.rdm ArtRdm packet
No value
Art-Net ArtRdm packet
artnet.rdm.address Address
Unsigned 8-bit integer
Address
artnet.rdm.command Command
Unsigned 8-bit integer
Command
artnet.spare spare
Byte array
spare
artnet.tod_control.command Command
Unsigned 8-bit integer
Command
artnet.tod_data ArtTodData packet
No value
Art-Net ArtTodData packet
artnet.tod_data.address Address
Unsigned 8-bit integer
Address
artnet.tod_data.block_count Block Count
Unsigned 8-bit integer
Block Count
artnet.tod_data.command_response Command Response
Unsigned 8-bit integer
Command Response
artnet.tod_data.port Port
Unsigned 8-bit integer
Port
artnet.tod_data.tod TOD
Byte array
TOD
artnet.tod_data.uid_count UID Count
Unsigned 8-bit integer
UID Count
artnet.tod_data.uid_total UID Total
Unsigned 16-bit integer
UID Total
artnet.tod_request ArtTodRequest packet
No value
Art-Net ArtTodRequest packet
artnet.tod_request.ad_count Address Count
Unsigned 8-bit integer
Address Count
artnet.tod_request.address Address
Byte array
Address
artnet.tod_request.command Command
Unsigned 8-bit integer
Command
artnet.video_data ArtVideoData packet
No value
Art-Net ArtVideoData packet
artnet.video_data.data Video Data
Byte array
Video Data
artnet.video_data.len_x LenX
Unsigned 8-bit integer
LenX
artnet.video_data.len_y LenY
Unsigned 8-bit integer
LenY
artnet.video_data.pos_x PosX
Unsigned 8-bit integer
PosX
artnet.video_data.pos_y PosY
Unsigned 8-bit integer
PosY
artnet.video_palette ArtVideoPalette packet
No value
Art-Net ArtVideoPalette packet
artnet.video_palette.colour_blue Colour Blue
Byte array
Colour Blue
artnet.video_palette.colour_green Colour Green
Byte array
Colour Green
artnet.video_palette.colour_red Colour Red
Byte array
Colour Red
artnet.video_setup ArtVideoSetup packet
No value
ArtNET ArtVideoSetup packet
artnet.video_setup.control control
Unsigned 8-bit integer
control
artnet.video_setup.first_font First Font
Unsigned 8-bit integer
First Font
artnet.video_setup.font_data Font data
Byte array
Font Date
artnet.video_setup.font_height Font Height
Unsigned 8-bit integer
Font Height
artnet.video_setup.last_font Last Font
Unsigned 8-bit integer
Last Font
artnet.video_setup.win_font_name Windows Font Name
String
Windows Font Name
adp.id Transaction ID
Unsigned 16-bit integer
ADP transaction ID
adp.mac MAC address
6-byte Hardware (MAC) Address
MAC address
adp.switch Switch IP
IPv4 address
Switch IP address
adp.type Type
Unsigned 16-bit integer
ADP type
adp.version Version
Unsigned 16-bit integer
ADP version
v120.address Link Address
Unsigned 16-bit integer
v120.control Control Field
Unsigned 16-bit integer
v120.control.f Final
Boolean
v120.control.ftype Frame type
Unsigned 16-bit integer
v120.control.n_r N(R)
Unsigned 16-bit integer
v120.control.n_s N(S)
Unsigned 16-bit integer
v120.control.p Poll
Boolean
v120.control.s_ftype Supervisory frame type
Unsigned 16-bit integer
v120.control.u_modifier_cmd Command
Unsigned 8-bit integer
v120.control.u_modifier_resp Response
Unsigned 8-bit integer
v120.header Header Field
String
alc.fec Forward Error Correction (FEC) header
No value
alc.fec.encoding_id FEC Encoding ID
Unsigned 8-bit integer
alc.fec.esi Encoding Symbol ID
Unsigned 32-bit integer
alc.fec.fti FEC Object Transmission Information
No value
alc.fec.fti.encoding_symbol_length Encoding Symbol Length
Unsigned 32-bit integer
alc.fec.fti.max_number_encoding_symbols Maximum Number of Encoding Symbols
Unsigned 32-bit integer
alc.fec.fti.max_source_block_length Maximum Source Block Length
Unsigned 32-bit integer
alc.fec.fti.transfer_length Transfer Length
Unsigned 64-bit integer
alc.fec.instance_id FEC Instance ID
Unsigned 8-bit integer
alc.fec.sbl Source Block Length
Unsigned 32-bit integer
alc.fec.sbn Source Block Number
Unsigned 32-bit integer
alc.lct Layered Coding Transport (LCT) header
No value
alc.lct.cci Congestion Control Information
Byte array
alc.lct.codepoint Codepoint
Unsigned 8-bit integer
alc.lct.ert Expected Residual Time
Time duration
alc.lct.ext Extension count
Unsigned 8-bit integer
alc.lct.flags Flags
No value
alc.lct.flags.close_object Close Object flag
Boolean
alc.lct.flags.close_session Close Session flag
Boolean
alc.lct.flags.ert_present Expected Residual Time present flag
Boolean
alc.lct.flags.sct_present Sender Current Time present flag
Boolean
alc.lct.fsize Field sizes (bytes)
No value
alc.lct.fsize.cci Congestion Control Information field size
Unsigned 8-bit integer
alc.lct.fsize.toi Transport Object Identifier field size
Unsigned 8-bit integer
alc.lct.fsize.tsi Transport Session Identifier field size
Unsigned 8-bit integer
alc.lct.hlen Header length
Unsigned 16-bit integer
alc.lct.sct Sender Current Time
Time duration
alc.lct.toi Transport Object Identifier (up to 64 bites)
Unsigned 64-bit integer
alc.lct.toi_extended Transport Object Identifier (up to 112 bits)
Byte array
alc.lct.tsi Transport Session Identifier
Unsigned 64-bit integer
alc.lct.version Version
Unsigned 8-bit integer
alc.payload Payload
No value
alc.version Version
Unsigned 8-bit integer
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.ack_req_ind tpncp.ack_req_ind
Signed 32-bit integer
tpncp.acknowledge_error_code tpncp.acknowledge_error_code
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.activate tpncp.activate
Signed 32-bit integer
tpncp.activation_direction tpncp.activation_direction
Signed 32-bit integer
tpncp.activation_option tpncp.activation_option
Unsigned 8-bit integer
tpncp.active tpncp.active
Signed 32-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_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_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_report_cause tpncp.alarm_report_cause
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.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
Signed 32-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
Signed 32-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_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.auto_est tpncp.auto_est
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.bcc_protocol_data_link_error tpncp.bcc_protocol_data_link_error
Signed 32-bit integer
tpncp.bchannel tpncp.bchannel
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
Signed 32-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
Signed 32-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.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_reserved tpncp.cmd_reserved
Unsigned 16-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
Signed 32-bit integer
tpncp.co_ind tpncp.co_ind
Signed 32-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.component_tag tpncp.component_tag
Signed 32-bit integer
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_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_protocol_data_link_error tpncp.control_protocol_data_link_error
Signed 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
Signed 32-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_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_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 tpncp.digit
Signed 32-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_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
Signed 32-bit integer
tpncp.disable_rtcp_interval_randomization tpncp.disable_rtcp_interval_randomization
Signed 32-bit integer
tpncp.disable_soft_ip_loopback tpncp.disable_soft_ip_loopback
Signed 32-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_resource_allocation tpncp.dsp_resource_allocation
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
Signed 32-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
Signed 32-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.duration_type tpncp.duration_type
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
Signed 32-bit integer
tpncp.ec_hybrid_loss tpncp.ec_hybrid_loss
Signed 32-bit integer
tpncp.ec_length tpncp.ec_length
Signed 32-bit integer
tpncp.ec_nlp_mode tpncp.ec_nlp_mode
Signed 32-bit integer
tpncp.ece tpncp.ece
Signed 32-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_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_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_call_progress tpncp.enable_call_progress
Signed 32-bit integer
tpncp.enable_dtmf_detection tpncp.enable_dtmf_detection
Signed 32-bit integer
tpncp.enable_ec_comfort_noise_generation tpncp.enable_ec_comfort_noise_generation
Signed 32-bit integer
tpncp.enable_ec_tone_detector tpncp.enable_ec_tone_detector
Signed 32-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_line_signaling tpncp.enable_line_signaling
Signed 32-bit integer
tpncp.enable_loop tpncp.enable_loop
Signed 32-bit integer
tpncp.enable_metering_duration_type tpncp.enable_metering_duration_type
Signed 32-bit integer
tpncp.enable_mfr1 tpncp.enable_mfr1
Signed 32-bit integer
tpncp.enable_mfr2_backward tpncp.enable_mfr2_backward
Signed 32-bit integer
tpncp.enable_mfr2_forward tpncp.enable_mfr2_forward
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
Signed 32-bit integer
tpncp.enable_user_defined_tone_detector tpncp.enable_user_defined_tone_detector
Signed 32-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
Signed 32-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
Signed 32-bit integer
tpncp.evrcb_avg_rate_target tpncp.evrcb_avg_rate_target
Signed 32-bit integer
tpncp.evrcb_operation_point tpncp.evrcb_operation_point
Signed 32-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.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_payload_type tpncp.fax_bypass_payload_type
Signed 32-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_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
Signed 32-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
Signed 32-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.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.frame_loss_ratio_hysteresis_0 tpncp.frame_loss_ratio_hysteresis_0
Signed 32-bit integer
tpncp.frame_loss_ratio_hysteresis_1 tpncp.frame_loss_ratio_hysteresis_1
Signed 32-bit integer
tpncp.frame_loss_ratio_hysteresis_2 tpncp.frame_loss_ratio_hysteresis_2
Signed 32-bit integer
tpncp.frame_loss_ratio_hysteresis_3 tpncp.frame_loss_ratio_hysteresis_3
Signed 32-bit integer
tpncp.frame_loss_ratio_hysteresis_4 tpncp.frame_loss_ratio_hysteresis_4
Signed 32-bit integer
tpncp.frame_loss_ratio_hysteresis_5 tpncp.frame_loss_ratio_hysteresis_5
Signed 32-bit integer
tpncp.frame_loss_ratio_hysteresis_6 tpncp.frame_loss_ratio_hysteresis_6
Signed 32-bit integer
tpncp.frame_loss_ratio_hysteresis_7 tpncp.frame_loss_ratio_hysteresis_7
Signed 32-bit integer
tpncp.frame_loss_ratio_threshold_0 tpncp.frame_loss_ratio_threshold_0
Signed 32-bit integer
tpncp.frame_loss_ratio_threshold_1 tpncp.frame_loss_ratio_threshold_1
Signed 32-bit integer
tpncp.frame_loss_ratio_threshold_2 tpncp.frame_loss_ratio_threshold_2
Signed 32-bit integer
tpncp.frame_loss_ratio_threshold_3 tpncp.frame_loss_ratio_threshold_3
Signed 32-bit integer
tpncp.frame_loss_ratio_threshold_4 tpncp.frame_loss_ratio_threshold_4
Signed 32-bit integer
tpncp.frame_loss_ratio_threshold_5 tpncp.frame_loss_ratio_threshold_5
Signed 32-bit integer
tpncp.frame_loss_ratio_threshold_6 tpncp.frame_loss_ratio_threshold_6
Signed 32-bit integer
tpncp.frame_loss_ratio_threshold_7 tpncp.frame_loss_ratio_threshold_7
Signed 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.gain_slope tpncp.gain_slope
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.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.ibsd_redirection tpncp.ibsd_redirection
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