WIRESHARK-FILTER
Section: The Wireshark Network Analyzer (4)Updated: 2007-02-03
Index Return to Main Contents
NAME
wireshark-filter - Wireshark filter syntax and referenceSYNOPSYS
wireshark [other options] [ -R ``filter expression'' ]tshark [other options] [ -R ``filter expression'' ]
DESCRIPTION
Wireshark and TShark share a powerful filter engine that helps remove the noise from a packet trace and lets you see only the packets that interest you. If a packet meets the requirements expressed in your filter, then it is displayed in the list of packets. Display filters let you compare the fields within a protocol against a specific value, compare fields against fields, and check the existence of specified fields or protocols.Filters are also used by other features such as statistics generation and packet list colorization (the latter is only available to Wireshark). This manual page describes their syntax and provides a comprehensive reference of filter fields.
FILTER SYNTAX
Check whether a field or protocol exists
The simplest filter allows you to check for the existence of a protocol or field. If you want to see all packets which contain the IP protocol, the filter would be ``ip'' (without the quotation marks). To see all packets that contain a Token-Ring RIF field, use ``tr.rif''.Think of a protocol or field in a filter as implicitly having the ``exists'' operator.
Note: all protocol and field names that are available in Wireshark and TShark filters are listed in the comprehensive FILTER PROTOCOL REFERENCE (see below).
Comparison operators
Fields can also be compared against values. The comparison operators can be expressed either through English-like abbreviations or through C-like symbols:
eq, == Equal
ne, != Not Equal
gt, > Greater Than
lt, < Less Than
ge, >= Greater than or Equal to
le, <= Less than or Equal to
Search and match operators
Additional operators exist expressed only in English, not C-like syntax:
contains Does the protocol, field or slice contain a value
matches Does the protocol or text string match the given Perl
regular expression
The ``contains'' operator allows a filter to search for a sequence of characters, expressed as a string (quoted or unquoted), or bytes, expressed as a byte array. For example, to search for a given HTTP URL in a capture, the following filter can be used:
http contains "http://www.wireshark.org"
The ``contains'' operator cannot be used on atomic fields, such as numbers or IP addresses.
The ``matches'' operator allows a filter to apply to a specified Perl-compatible regular expression (PCRE). The ``matches'' operator is only implemented for protocols and for protocol fields with a text string representation. For example, to search for a given WAP WSP User-Agent, you can write:
wsp.user_agent matches "(?i)cldc"
This example shows an interesting PCRE feature: pattern match options have to be specified with the (?option) construct. For instance, (?i) performs a case-insensitive pattern match. More information on PCRE can be found in the pcrepattern(3) man page (Perl Regular Expressions are explained in <http://www.perldoc.com/perl5.8.0/pod/perlre.html>).
Note: the ``matches'' operator is only available if Wireshark or TShark have been compiled with the PCRE library. This can be checked by running:
wireshark -v
tshark -v
or selecting the ``About Wireshark'' item from the ``Help'' menu in Wireshark.
Functions
The filter language has the following functions:
upper(string-field) - converts a string field to uppercase
lower(string-field) - converts a string field to lowercase
upper() and lower() are useful for performing case-insensitive string comparisons. For example:
upper(ncp.nds_stream_name) contains "MACRO"
lower(mount.dump.hostname) == "angel"
Protocol field types
Each protocol field is typed. The types are:
Unsigned integer (8-bit, 16-bit, 24-bit, or 32-bit)
Signed integer (8-bit, 16-bit, 24-bit, or 32-bit)
Boolean
Ethernet address (6 bytes)
Byte array
IPv4 address
IPv6 address
IPX network number
Text string
Double-precision floating point number
An integer may be expressed in decimal, octal, or hexadecimal notation. The following three display filters are equivalent:
frame.pkt_len > 10
frame.pkt_len > 012
frame.pkt_len > 0xa
Boolean values are either true or false. In a display filter expression testing the value of a Boolean field, ``true'' is expressed as 1 or any other non-zero value, and ``false'' is expressed as zero. For example, a token-ring packet's source route field is Boolean. To find any source-routed packets, a display filter would be:
tr.sr == 1
Non source-routed packets can be found with:
tr.sr == 0
Ethernet addresses and byte arrays are represented by hex digits. The hex digits may be separated by colons, periods, or hyphens:
eth.dst eq ff:ff:ff:ff:ff:ff
aim.data == 0.1.0.d
fddi.src == aa-aa-aa-aa-aa-aa
echo.data == 7a
IPv4 addresses can be represented in either dotted decimal notation or by using the hostname:
ip.dst eq www.mit.edu
ip.src == 192.168.1.1
IPv4 addresses can be compared with the same logical relations as numbers: eq, ne, gt, ge, lt, and le. The IPv4 address is stored in host order, so you do not have to worry about the endianness of an IPv4 address when using it in a display filter.
Classless InterDomain Routing (CIDR) notation can be used to test if an IPv4 address is in a certain subnet. For example, this display filter will find all packets in the 129.111 Class-B network:
ip.addr == 129.111.0.0/16
Remember, the number after the slash represents the number of bits used to represent the network. CIDR notation can also be used with hostnames, as in this example of finding IP addresses on the same Class C network as 'sneezy':
ip.addr eq sneezy/24
The CIDR notation can only be used on IP addresses or hostnames, not in variable names. So, a display filter like ``ip.src/24 == ip.dst/24'' is not valid (yet).
IPX networks are represented by unsigned 32-bit integers. Most likely you will be using hexadecimal when testing IPX network values:
ipx.src.net == 0xc0a82c00
Strings are enclosed in double quotes:
http.request.method == "POST"
Inside double quotes, you may use a backslash to embed a double quote or an arbitrary byte represented in either octal or hexadecimal.
browser.comment == "An embedded \" double-quote"
Use of hexadecimal to look for ``HEAD'':
http.request.method == "\x48EAD"
Use of octal to look for ``HEAD'':
http.request.method == "\110EAD"
This means that you must escape backslashes with backslashes inside double quotes.
smb.path contains "\\\\SERVER\\SHARE"
looks for \\SERVER\SHARE in ``smb.path''.
The slice operator
You can take a slice of a field if the field is a text string or a byte array. For example, you can filter on the vendor portion of an ethernet address (the first three bytes) like this:
eth.src[0:3] == 00:00:83
Another example is:
http.content_type[0:4] == "text"
You can use the slice operator on a protocol name, too. The ``frame'' protocol can be useful, encompassing all the data captured by Wireshark or TShark.
token[0:5] ne 0.0.0.1.1
llc[0] eq aa
frame[100-199] contains "wireshark"
The following syntax governs slices:
[i:j] i = start_offset, j = length
[i-j] i = start_offset, j = end_offset, inclusive.
[i] i = start_offset, length = 1
[:j] start_offset = 0, length = j
[i:] start_offset = i, end_offset = end_of_field
Offsets can be negative, in which case they indicate the offset from the end of the field. The last byte of the field is at offset -1, the last but one byte is at offset -2, and so on. Here's how to check the last four bytes of a frame:
frame[-4:4] == 0.1.2.3
or
frame[-4:] == 0.1.2.3
You can concatenate slices using the comma operator:
ftp[1,3-5,9:] == 01:03:04:05:09:0a:0b
This concatenates offset 1, offsets 3-5, and offset 9 to the end of the ftp data.
Type conversions
If a field is a text string or a byte array, it can be expressed in whichever way is most convenient.So, for instance, the following filters are equivalent:
http.request.method == "GET"
http.request.method == 47.45.54
A range can also be expressed in either way:
frame[60:2] gt 50.51
frame[60:2] gt "PQ"
Bit field operations
It is also possible to define tests with bit field operations. Currently the following bit field operation is supported:
bitwise_and, & Bitwise AND
The bitwise AND operation allows testing to see if one or more bits are set. Bitwise AND operates on integer protocol fields and slices.
When testing for TCP SYN packets, you can write:
tcp.flags & 0x02
That expression will match all packets that contain a ``tcp.flags'' field with the 0x02 bit, i.e. the SYN bit, set.
Similarly, filtering for all WSP GET and extended GET methods is achieved with:
wsp.pdu_type & 0x40
When using slices, the bit mask must be specified as a byte string, and it must have the same number of bytes as the slice itself, as in:
ip[42:2] & 40:ff
Logical expressions
Tests can be combined using logical expressions. These too are expressable in C-like syntax or with English-like abbreviations:
and, && Logical AND
or, || Logical OR
not, ! Logical NOT
Expressions can be grouped by parentheses as well. The following are all valid display filter expressions:
tcp.port == 80 and ip.src == 192.168.2.1
not llc
http and frame[100-199] contains "wireshark"
(ipx.src.net == 0xbad && ipx.src.node == 0.0.0.0.0.1) || ip
Remember that whenever a protocol or field name occurs in an expression, the ``exists'' operator is implicitly called. The ``exists'' operator has the highest priority. This means that the first filter expression must be read as ``show me the packets for which tcp.port exists and equals 80, and ip.src exists and equals 192.168.2.1''. The second filter expression means ``show me the packets where not (llc exists)'', or in other words ``where llc does not exist'' and hence will match all packets that do not contain the llc protocol. The third filter expression includes the constraint that offset 199 in the frame exists, in other words the length of the frame is at least 200.
A special caveat must be given regarding fields that occur more than once per packet. ``ip.addr'' occurs twice per IP packet, once for the source address, and once for the destination address. Likewise, ``tr.rif.ring'' fields can occur more than once per packet. The following two expressions are not equivalent:
ip.addr ne 192.168.4.1
not ip.addr eq 192.168.4.1
The first filter says ``show me packets where an ip.addr exists that does not equal 192.168.4.1''. That is, as long as one ip.addr in the packet does not equal 192.168.4.1, the packet passes the display filter. The other ip.addr could equal 192.168.4.1 and the packet would still be displayed. The second filter says ``don't show me any packets that have an ip.addr field equal to 192.168.4.1''. If one ip.addr is 192.168.4.1, the packet does not pass. If neither ip.addr field is 192.168.4.1, then the packet is displayed.
It is easy to think of the 'ne' and 'eq' operators as having an 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.
FILTER PROTOCOL REFERENCE
Each entry below provides an abbreviated protocol or field name. Every one of these fields can be used in a display filter. The type of the field is also given.3Com XNS Encapsulation (3comxns)
xnsllc.type Type
Unsigned 16-bit integer
3GPP2 A11 (a11)
a11.ackstat Reply Status
Unsigned 8-bit integer
A11 Registration Ack Status.
a11.auth.auth Authenticator
Byte array
Authenticator.
a11.auth.spi SPI
Unsigned 32-bit integer
Authentication Header Security Parameter Index.
a11.b Broadcast Datagrams
Boolean
Broadcast Datagrams requested
a11.coa Care of Address
IPv4 address
Care of Address.
a11.code Reply Code
Unsigned 8-bit integer
A11 Registration Reply code.
a11.d Co-located Care-of Address
Boolean
MN using Co-located Care-of address
a11.ext.apptype Application Type
Unsigned 8-bit integer
Application Type.
a11.ext.ase.key GRE Key
Unsigned 32-bit integer
GRE Key.
a11.ext.ase.len Entry Length
Unsigned 8-bit integer
Entry Length.
a11.ext.ase.pcfip PCF IP Address
IPv4 address
PCF IP Address.
a11.ext.ase.ptype GRE Protocol Type
Unsigned 16-bit integer
GRE Protocol Type.
a11.ext.ase.srid Service Reference ID (SRID)
Unsigned 8-bit integer
Service Reference ID (SRID).
a11.ext.ase.srvopt Service Option
Unsigned 16-bit integer
Service Option.
a11.ext.auth.subtype Gen Auth Ext SubType
Unsigned 8-bit integer
Mobile IP Auth Extension Sub Type.
a11.ext.canid CANID
Byte array
CANID
a11.ext.code Reply Code
Unsigned 8-bit integer
PDSN Code.
a11.ext.dormant All Dormant Indicator
Unsigned 16-bit integer
All Dormant Indicator.
a11.ext.fqi.dscp Forward DSCP
Unsigned 8-bit integer
Forward Flow DSCP.
a11.ext.fqi.entrylen Entry Length
Unsigned 8-bit integer
Forward Entry Length.
a11.ext.fqi.flags Flags
Unsigned 8-bit integer
Forward Flow Entry Flags.
a11.ext.fqi.flowcount Forward Flow Count
Unsigned 8-bit integer
Forward Flow Count.
a11.ext.fqi.flowid Forward Flow Id
Unsigned 8-bit integer
Forward Flow Id.
a11.ext.fqi.flowstate Forward Flow State
Unsigned 8-bit integer
Forward Flow State.
a11.ext.fqi.graqos Granted QoS
Byte array
Forward Granted QoS.
a11.ext.fqi.graqoslen Granted QoS Length
Unsigned 8-bit integer
Forward Granted QoS Length.
a11.ext.fqi.reqqos Requested QoS
Byte array
Forward Requested QoS.
a11.ext.fqi.reqqoslen Requested QoS Length
Unsigned 8-bit integer
Forward Requested QoS Length.
a11.ext.fqi.srid SRID
Unsigned 8-bit integer
Forward Flow Entry SRID.
a11.ext.fqui.flowcount Forward QoS Update Flow Count
Unsigned 8-bit integer
Forward QoS Update Flow Count.
a11.ext.fqui.updatedqos Foward Updated QoS Sub-Blob
Byte array
Foward Updated QoS Sub-Blob.
a11.ext.fqui.updatedqoslen Foward Updated QoS Sub-Blob Length
Unsigned 8-bit integer
Foward Updated QoS Sub-Blob Length.
a11.ext.key Key
Unsigned 32-bit integer
Session Key.
a11.ext.len Extension Length
Unsigned 16-bit integer
Mobile IP Extension Length.
a11.ext.mnsrid MNSR-ID
Unsigned 16-bit integer
MNSR-ID
a11.ext.msid MSID(BCD)
String
MSID(BCD).
a11.ext.msid_len MSID Length
Unsigned 8-bit integer
MSID Length.
a11.ext.msid_type MSID Type
Unsigned 16-bit integer
MSID Type.
a11.ext.panid PANID
Byte array
PANID
a11.ext.ppaddr Anchor P-P Address
IPv4 address
Anchor P-P Address.
a11.ext.ptype Protocol Type
Unsigned 16-bit integer
Protocol Type.
a11.ext.qosmode QoS Mode
Unsigned 8-bit integer
QoS Mode.
a11.ext.rqi.entrylen Entry Length
Unsigned 8-bit integer
Reverse Flow Entry Length.
a11.ext.rqi.flowcount Reverse Flow Count
Unsigned 8-bit integer
Reverse Flow Count.
a11.ext.rqi.flowid Reverse Flow Id
Unsigned 8-bit integer
Reverse Flow Id.
a11.ext.rqi.flowstate Flow State
Unsigned 8-bit integer
Reverse Flow State.
a11.ext.rqi.graqos Granted QoS
Byte array
Reverse Granted QoS.
a11.ext.rqi.graqoslen Granted QoS Length
Unsigned 8-bit integer
Reverse Granted QoS Length.
a11.ext.rqi.reqqos Requested QoS
Byte array
Reverse Requested QoS.
a11.ext.rqi.reqqoslen Requested QoS Length
Unsigned 8-bit integer
Reverse Requested QoS Length.
a11.ext.rqi.srid SRID
Unsigned 8-bit integer
Reverse Flow Entry SRID.
a11.ext.rqui.flowcount Reverse QoS Update Flow Count
Unsigned 8-bit integer
Reverse QoS Update Flow Count.
a11.ext.rqui.updatedqos Reverse Updated QoS Sub-Blob
Byte array
Reverse Updated QoS Sub-Blob.
a11.ext.rqui.updatedqoslen Reverse Updated QoS Sub-Blob Length
Unsigned 8-bit integer
Reverse Updated QoS Sub-Blob Length.
a11.ext.sidver Session ID Version
Unsigned 8-bit integer
Session ID Version
a11.ext.sqp.profile Subscriber QoS Profile
Byte array
Subscriber QoS Profile.
a11.ext.sqp.profilelen Subscriber QoS Profile Length
Byte array
Subscriber QoS Profile Length.
a11.ext.srvopt Service Option
Unsigned 16-bit integer
Service Option.
a11.ext.type Extension Type
Unsigned 8-bit integer
Mobile IP Extension Type.
a11.ext.vid Vendor ID
Unsigned 32-bit integer
Vendor ID.
a11.extension Extension
Byte array
Extension
a11.flags Flags
Unsigned 8-bit integer
a11.g GRE
Boolean
MN wants GRE encapsulation
a11.haaddr Home Agent
IPv4 address
Home agent IP Address.
a11.homeaddr Home Address
IPv4 address
Mobile Node's home address.
a11.ident Identification
Byte array
MN Identification.
a11.life Lifetime
Unsigned 16-bit integer
A11 Registration Lifetime.
a11.m Minimal Encapsulation
Boolean
MN wants Minimal encapsulation
a11.nai NAI
String
NAI
a11.s Simultaneous Bindings
Boolean
Simultaneous Bindings Allowed
a11.t Reverse Tunneling
Boolean
Reverse tunneling requested
a11.type Message Type
Unsigned 8-bit integer
A11 Message type.
a11.v Van Jacobson
Boolean
Van Jacobson
3com Network Jack (njack)
njack.getresp.unknown1 Unknown1
Unsigned 8-bit integer
njack.magic Magic
String
njack.set.length SetLength
Unsigned 16-bit integer
njack.set.salt Salt
Unsigned 32-bit integer
njack.setresult SetResult
Unsigned 8-bit integer
njack.tlv.addtagscheme TlvAddTagScheme
Unsigned 8-bit integer
njack.tlv.authdata Authdata
Byte array
njack.tlv.contermode TlvTypeCountermode
Unsigned 8-bit integer
njack.tlv.data TlvData
Byte array
njack.tlv.devicemac TlvTypeDeviceMAC
6-byte Hardware (MAC) Address
njack.tlv.dhcpcontrol TlvTypeDhcpControl
Unsigned 8-bit integer
njack.tlv.length TlvLength
Unsigned 8-bit integer
njack.tlv.maxframesize TlvTypeMaxframesize
Unsigned 8-bit integer
njack.tlv.portingressmode TlvTypePortingressmode
Unsigned 8-bit integer
njack.tlv.powerforwarding TlvTypePowerforwarding
Unsigned 8-bit integer
njack.tlv.scheduling TlvTypeScheduling
Unsigned 8-bit integer
njack.tlv.snmpwrite TlvTypeSnmpwrite
Unsigned 8-bit integer
njack.tlv.type TlvType
Unsigned 8-bit integer
njack.tlv.typeip TlvTypeIP
IPv4 address
njack.tlv.typestring TlvTypeString
String
njack.tlv.version TlvFwVersion
IPv4 address
njack.type Type
Unsigned 8-bit integer
802.1Q Virtual LAN (vlan)
vlan.cfi CFI
Unsigned 16-bit integer
CFI
vlan.etype Type
Unsigned 16-bit integer
Type
vlan.id ID
Unsigned 16-bit integer
ID
vlan.len Length
Unsigned 16-bit integer
Length
vlan.priority Priority
Unsigned 16-bit integer
Priority
vlan.trailer Trailer
Byte array
VLAN Trailer
802.1X Authentication (eapol)
eapol.keydes.data WPA Key
Byte array
WPA Key Data
eapol.keydes.datalen WPA Key Length
Unsigned 16-bit integer
WPA Key Data Length
eapol.keydes.id WPA Key ID
Byte array
WPA Key ID(RSN Reserved)
eapol.keydes.index.indexnum Index Number
Unsigned 8-bit integer
Key Index number
eapol.keydes.index.keytype Key Type
Boolean
Key Type (unicast/broadcast)
eapol.keydes.key Key
Byte array
Key
eapol.keydes.key_info Key Information
Unsigned 16-bit integer
WPA key info
eapol.keydes.key_info.encr_key_data Encrypted Key Data flag
Boolean
Encrypted Key Data flag
eapol.keydes.key_info.error Error flag
Boolean
Error flag
eapol.keydes.key_info.install Install flag
Boolean
Install flag
eapol.keydes.key_info.key_ack Key Ack flag
Boolean
Key Ack flag
eapol.keydes.key_info.key_index Key Index
Unsigned 16-bit integer
Key Index (0-3) (RSN: Reserved)
eapol.keydes.key_info.key_mic Key MIC flag
Boolean
Key MIC flag
eapol.keydes.key_info.key_type Key Type
Boolean
Key Type (Pairwise or Group)
eapol.keydes.key_info.keydes_ver Key Descriptor Version
Unsigned 16-bit integer
Key Descriptor Version Type
eapol.keydes.key_info.request Request flag
Boolean
Request flag
eapol.keydes.key_info.secure Secure flag
Boolean
Secure flag
eapol.keydes.key_iv Key IV
Byte array
Key Initialization Vector
eapol.keydes.key_signature Key Signature
Byte array
Key Signature
eapol.keydes.keylen Key Length
Unsigned 16-bit integer
Key Length
eapol.keydes.mic WPA Key MIC
Byte array
WPA Key Message Integrity Check
eapol.keydes.nonce Nonce
Byte array
WPA Key Nonce
eapol.keydes.replay_counter Replay Counter
Unsigned 64-bit integer
Replay Counter
eapol.keydes.rsc WPA Key RSC
Byte array
WPA Key Receive Sequence Counter
eapol.keydes.type Descriptor Type
Unsigned 8-bit integer
Key Descriptor Type
eapol.len Length
Unsigned 16-bit integer
Length
eapol.type Type
Unsigned 8-bit integer
eapol.version Version
Unsigned 8-bit integer
AAL type 2 signalling protocol (Q.2630) (alcap)
alcap.acc.level Congestion Level
Unsigned 8-bit integer
alcap.alc.bitrate.avg.bw Average Backwards Bit Rate
Unsigned 16-bit integer
alcap.alc.bitrate.avg.fw Average Forward Bit Rate
Unsigned 16-bit integer
alcap.alc.bitrate.max.bw Maximum Backwards Bit Rate
Unsigned 16-bit integer
alcap.alc.bitrate.max.fw Maximum Forward Bit Rate
Unsigned 16-bit integer
alcap.alc.sdusize.avg.bw Average Backwards CPS SDU Size
Unsigned 8-bit integer
alcap.alc.sdusize.avg.fw Average Forward CPS SDU Size
Unsigned 8-bit integer
alcap.alc.sdusize.max.bw Maximum Backwards CPS SDU Size
Unsigned 8-bit integer
alcap.alc.sdusize.max.fw Maximum Forward CPS SDU Size
Unsigned 8-bit integer
alcap.cau.coding Cause Coding
Unsigned 8-bit integer
alcap.cau.diag Diagnostic
Byte array
alcap.cau.diag.field_num Field Number
Unsigned 8-bit integer
alcap.cau.diag.len Length
Unsigned 8-bit integer
Diagnostics Length
alcap.cau.diag.msg Message Identifier
Unsigned 8-bit integer
alcap.cau.diag.param Parameter Identifier
Unsigned 8-bit integer
alcap.cau.value Cause Value (ITU)
Unsigned 8-bit integer
alcap.ceid.cid CID
Unsigned 8-bit integer
alcap.ceid.pathid Path ID
Unsigned 32-bit integer
alcap.compat Message Compatibility
Byte array
alcap.compat.general.ii General II
Unsigned 8-bit integer
Instruction Indicator
alcap.compat.general.sni General SNI
Unsigned 8-bit integer
Send Notificaation Indicator
alcap.compat.pass.ii Pass-On II
Unsigned 8-bit integer
Instruction Indicator
alcap.compat.pass.sni Pass-On SNI
Unsigned 8-bit integer
Send Notificaation Indicator
alcap.cp.level Level
Unsigned 8-bit integer
alcap.dnsea.addr Address
Byte array
alcap.dsaid DSAID
Unsigned 32-bit integer
Destination Service Association ID
alcap.fbw.bitrate.bw CPS Backwards Bitrate
Unsigned 24-bit integer
alcap.fbw.bitrate.fw CPS Forward Bitrate
Unsigned 24-bit integer
alcap.fbw.bucket_size.bw Backwards CPS Bucket Size
Unsigned 16-bit integer
alcap.fbw.bucket_size.fw Forward CPS Bucket Size
Unsigned 16-bit integer
alcap.fbw.max_size.bw Backwards CPS Packet Size
Unsigned 8-bit integer
alcap.fbw.max_size.fw Forward CPS Packet Size
Unsigned 8-bit integer
alcap.hc.codepoint Codepoint
Unsigned 8-bit integer
alcap.leg.cause Leg's cause value in REL
Unsigned 8-bit integer
alcap.leg.cid Leg's channel id
Unsigned 32-bit integer
alcap.leg.dnsea Leg's destination NSAP
String
alcap.leg.dsaid Leg's ECF OSA id
Unsigned 32-bit integer
alcap.leg.msg a message of this leg
Frame number
alcap.leg.onsea Leg's originating NSAP
String
alcap.leg.osaid Leg's ERQ OSA id
Unsigned 32-bit integer
alcap.leg.pathid Leg's path id
Unsigned 32-bit integer
alcap.leg.sugr Leg's SUGR
Unsigned 32-bit integer
alcap.msg_type Message Type
Unsigned 8-bit integer
alcap.onsea.addr Address
Byte array
alcap.osaid OSAID
Unsigned 32-bit integer
Originating Service Association ID
alcap.param Parameter
Unsigned 8-bit integer
Parameter Id
alcap.param.len Length
Unsigned 8-bit integer
Parameter Length
alcap.pfbw.bitrate.bw CPS Backwards Bitrate
Unsigned 24-bit integer
alcap.pfbw.bitrate.fw CPS Forward Bitrate
Unsigned 24-bit integer
alcap.pfbw.bucket_size.bw Backwards CPS Bucket Size
Unsigned 16-bit integer
alcap.pfbw.bucket_size.fw Forward CPS Bucket Size
Unsigned 16-bit integer
alcap.pfbw.max_size.bw Backwards CPS Packet Size
Unsigned 8-bit integer
alcap.pfbw.max_size.fw Forward CPS Packet Size
Unsigned 8-bit integer
alcap.plc.bitrate.avg.bw Average Backwards Bit Rate
Unsigned 16-bit integer
alcap.plc.bitrate.avg.fw Average Forward Bit Rate
Unsigned 16-bit integer
alcap.plc.bitrate.max.bw Maximum Backwards Bit Rate
Unsigned 16-bit integer
alcap.plc.bitrate.max.fw Maximum Forward Bit Rate
Unsigned 16-bit integer
alcap.plc.sdusize.max.bw Maximum Backwards CPS SDU Size
Unsigned 8-bit integer
alcap.plc.sdusize.max.fw Maximum Forward CPS SDU Size
Unsigned 8-bit integer
alcap.pssiae.cas CAS
Unsigned 8-bit integer
Channel Associated Signalling
alcap.pssiae.cmd Circuit Mode
Unsigned 8-bit integer
alcap.pssiae.dtmf DTMF
Unsigned 8-bit integer
alcap.pssiae.fax Fax
Unsigned 8-bit integer
Facsimile
alcap.pssiae.frm Frame Mode
Unsigned 8-bit integer
alcap.pssiae.lb Loopback
Unsigned 8-bit integer
alcap.pssiae.mfr1 Multi-Frequency R1
Unsigned 8-bit integer
alcap.pssiae.mfr2 Multi-Frequency R2
Unsigned 8-bit integer
alcap.pssiae.oui OUI
Byte array
Organizational Unique Identifier
alcap.pssiae.pcm PCM Mode
Unsigned 8-bit integer
alcap.pssiae.profile.id Profile Id
Unsigned 8-bit integer
alcap.pssiae.profile.type Profile Type
Unsigned 8-bit integer
I.366.2 Profile Type
alcap.pssiae.rc Rate Conctrol
Unsigned 8-bit integer
alcap.pssiae.syn Syncronization
Unsigned 8-bit integer
Transport of synchronization of change in SSCS operation
alcap.pssime.frm Frame Mode
Unsigned 8-bit integer
alcap.pssime.lb Loopback
Unsigned 8-bit integer
alcap.pssime.max Max Len
Unsigned 16-bit integer
alcap.pssime.mult Multiplier
Unsigned 8-bit integer
alcap.pt.codepoint QoS Codepoint
Unsigned 8-bit integer
alcap.pvbws.bitrate.bw Peak CPS Backwards Bitrate
Unsigned 24-bit integer
alcap.pvbws.bitrate.fw Peak CPS Forward Bitrate
Unsigned 24-bit integer
alcap.pvbws.bucket_size.bw Peak Backwards CPS Bucket Size
Unsigned 16-bit integer
alcap.pvbws.bucket_size.fw Peak Forward CPS Bucket Size
Unsigned 16-bit integer
alcap.pvbws.max_size.bw Backwards CPS Packet Size
Unsigned 8-bit integer
alcap.pvbws.max_size.fw Forward CPS Packet Size
Unsigned 8-bit integer
alcap.pvbws.stt Source Traffic Type
Unsigned 8-bit integer
alcap.pvbwt.bitrate.bw Peak CPS Backwards Bitrate
Unsigned 24-bit integer
alcap.pvbwt.bitrate.fw Peak CPS Forward Bitrate
Unsigned 24-bit integer
alcap.pvbwt.bucket_size.bw Peak Backwards CPS Bucket Size
Unsigned 16-bit integer
alcap.pvbwt.bucket_size.fw Peak Forward CPS Bucket Size
Unsigned 16-bit integer
alcap.pvbwt.max_size.bw Backwards CPS Packet Size
Unsigned 8-bit integer
alcap.pvbwt.max_size.fw Forward CPS Packet Size
Unsigned 8-bit integer
alcap.ssia.cas CAS
Unsigned 8-bit integer
Channel Associated Signalling
alcap.ssia.cmd Circuit Mode
Unsigned 8-bit integer
alcap.ssia.dtmf DTMF
Unsigned 8-bit integer
alcap.ssia.fax Fax
Unsigned 8-bit integer
Facsimile
alcap.ssia.frm Frame Mode
Unsigned 8-bit integer
alcap.ssia.max_fmdata_len Max Len of FM Data
Unsigned 16-bit integer
alcap.ssia.mfr1 Multi-Frequency R1
Unsigned 8-bit integer
alcap.ssia.mfr2 Multi-Frequency R2
Unsigned 8-bit integer
alcap.ssia.oui OUI
Byte array
Organizational Unique Identifier
alcap.ssia.pcm PCM Mode
Unsigned 8-bit integer
alcap.ssia.profile.id Profile Id
Unsigned 8-bit integer
alcap.ssia.profile.type Profile Type
Unsigned 8-bit integer
I.366.2 Profile Type
alcap.ssiae.cas CAS
Unsigned 8-bit integer
Channel Associated Signalling
alcap.ssiae.cmd Circuit Mode
Unsigned 8-bit integer
alcap.ssiae.dtmf DTMF
Unsigned 8-bit integer
alcap.ssiae.fax Fax
Unsigned 8-bit integer
Facsimile
alcap.ssiae.frm Frame Mode
Unsigned 8-bit integer
alcap.ssiae.lb Loopback
Unsigned 8-bit integer
alcap.ssiae.mfr1 Multi-Frequency R1
Unsigned 8-bit integer
alcap.ssiae.mfr2 Multi-Frequency R2
Unsigned 8-bit integer
alcap.ssiae.oui OUI
Byte array
Organizational Unique Identifier
alcap.ssiae.pcm PCM Mode
Unsigned 8-bit integer
alcap.ssiae.profile.id Profile Id
Unsigned 8-bit integer
alcap.ssiae.profile.type Profile Type
Unsigned 8-bit integer
I.366.2 Profile Type
alcap.ssiae.rc Rate Conctrol
Unsigned 8-bit integer
alcap.ssiae.syn Syncronization
Unsigned 8-bit integer
Transport of synchronization of change in SSCS operation
alcap.ssim.frm Frame Mode
Unsigned 8-bit integer
alcap.ssim.max Max Len
Unsigned 16-bit integer
alcap.ssim.mult Multiplier
Unsigned 8-bit integer
alcap.ssime.frm Frame Mode
Unsigned 8-bit integer
alcap.ssime.lb Loopback
Unsigned 8-bit integer
alcap.ssime.max Max Len
Unsigned 16-bit integer
alcap.ssime.mult Multiplier
Unsigned 8-bit integer
alcap.ssisa.sscop.max_sdu_len.bw Maximum Len of SSSAR-SDU Backwards
Unsigned 16-bit integer
alcap.ssisa.sscop.max_sdu_len.fw Maximum Len of SSSAR-SDU Forward
Unsigned 16-bit integer
alcap.ssisa.sscop.max_uu_len.bw Maximum Len of SSSAR-SDU Backwards
Unsigned 16-bit integer
alcap.ssisa.sscop.max_uu_len.fw Maximum Len of SSSAR-SDU Forward
Unsigned 16-bit integer
alcap.ssisa.sssar.max_len.fw Maximum Len of SSSAR-SDU Forward
Unsigned 24-bit integer
alcap.ssisu.sssar.max_len.fw Maximum Len of SSSAR-SDU Forward
Unsigned 24-bit integer
alcap.ssisu.ted Transmission Error Detection
Unsigned 8-bit integer
alcap.suci SUCI
Unsigned 8-bit integer
Served User Correlation Id
alcap.sugr SUGR
Byte array
Served User Generated Reference
alcap.sut.sut_len SUT Length
Unsigned 8-bit integer
alcap.sut.transport SUT
Byte array
Served User Transport
alcap.unknown.field Unknown Field Data
Byte array
alcap.vbws.bitrate.bw CPS Backwards Bitrate
Unsigned 24-bit integer
alcap.vbws.bitrate.fw CPS Forward Bitrate
Unsigned 24-bit integer
alcap.vbws.bucket_size.bw Backwards CPS Bucket Size
Unsigned 16-bit integer
alcap.vbws.bucket_size.fw Forward CPS Bucket Size
Unsigned 16-bit integer
alcap.vbws.max_size.bw Backwards CPS Packet Size
Unsigned 8-bit integer
alcap.vbws.max_size.fw Forward CPS Packet Size
Unsigned 8-bit integer
alcap.vbws.stt Source Traffic Type
Unsigned 8-bit integer
alcap.vbwt.bitrate.bw Peak CPS Backwards Bitrate
Unsigned 24-bit integer
alcap.vbwt.bitrate.fw Peak CPS Forward Bitrate
Unsigned 24-bit integer
alcap.vbwt.bucket_size.bw Peak Backwards CPS Bucket Size
Unsigned 16-bit integer
alcap.vbwt.bucket_size.fw Peak Forward CPS Bucket Size
Unsigned 16-bit integer
alcap.vbwt.max_size.bw Backwards CPS Packet Size
Unsigned 8-bit integer
alcap.vbwt.max_size.fw Forward CPS Packet Size
Unsigned 8-bit integer
ACP133 Attribute Syntaxes (acp133)
acp133.ACPLegacyFormat ACPLegacyFormat
Signed 32-bit integer
acp133.ACPLegacyFormat
acp133.ACPPreferredDelivery ACPPreferredDelivery
Unsigned 32-bit integer
acp133.ACPPreferredDelivery
acp133.ALType ALType
Signed 32-bit integer
acp133.ALType
acp133.AddressCapabilities AddressCapabilities
No value
acp133.AddressCapabilities
acp133.Addressees Addressees
Unsigned 32-bit integer
acp133.Addressees
acp133.Addressees_item Item
String
acp133.PrintableString_SIZE_1_55
acp133.Capability Capability
No value
acp133.Capability
acp133.Classification Classification
Unsigned 32-bit integer
acp133.Classification
acp133.Community Community
Unsigned 32-bit integer
acp133.Community
acp133.DLPolicy DLPolicy
No value
acp133.DLPolicy
acp133.DLSubmitPermission DLSubmitPermission
Unsigned 32-bit integer
acp133.DLSubmitPermission
acp133.DistributionCode DistributionCode
String
acp133.DistributionCode
acp133.JPEG JPEG
Byte array
acp133.JPEG
acp133.Kmid Kmid
Byte array
acp133.Kmid
acp133.MLReceiptPolicy MLReceiptPolicy
Unsigned 32-bit integer
acp133.MLReceiptPolicy
acp133.MonthlyUKMs MonthlyUKMs
No value
acp133.MonthlyUKMs
acp133.OnSupported OnSupported
Byte array
acp133.OnSupported
acp133.RIParameters RIParameters
No value
acp133.RIParameters
acp133.Remarks Remarks
Unsigned 32-bit integer
acp133.Remarks
acp133.Remarks_item Item
String
acp133.PrintableString
acp133.acp127-nn acp127-nn
Boolean
acp133.acp127-pn acp127-pn
Boolean
acp133.acp127-tn acp127-tn
Boolean
acp133.address address
No value
x411.ORAddress
acp133.algorithm_identifier algorithm-identifier
No value
x509af.AlgorithmIdentifier
acp133.capabilities capabilities
Unsigned 32-bit integer
acp133.SET_OF_Capability
acp133.capabilities_item Item
No value
acp133.Capability
acp133.classification classification
Unsigned 32-bit integer
acp133.Classification
acp133.content_types content-types
Unsigned 32-bit integer
acp133.SET_OF_ExtendedContentType
acp133.content_types_item Item
x411.ExtendedContentType
acp133.conversion_with_loss_prohibited conversion-with-loss-prohibited
Unsigned 32-bit integer
acp133.T_conversion_with_loss_prohibited
acp133.date date
String
acp133.UTCTime
acp133.description description
String
acp133.GeneralString
acp133.disclosure_of_other_recipients disclosure-of-other-recipients
Unsigned 32-bit integer
acp133.T_disclosure_of_other_recipients
acp133.edition edition
Signed 32-bit integer
acp133.INTEGER
acp133.encoded_information_types_constraints encoded-information-types-constraints
No value
x411.EncodedInformationTypesConstraints
acp133.encrypted encrypted
Byte array
acp133.BIT_STRING
acp133.further_dl_expansion_allowed further-dl-expansion-allowed
Boolean
acp133.BOOLEAN
acp133.implicit_conversion_prohibited implicit-conversion-prohibited
Unsigned 32-bit integer
acp133.T_implicit_conversion_prohibited
acp133.inAdditionTo inAdditionTo
Unsigned 32-bit integer
acp133.SEQUENCE_OF_GeneralNames
acp133.inAdditionTo_item Item
Unsigned 32-bit integer
x509ce.GeneralNames
acp133.individual individual
No value
x411.ORName
acp133.insteadOf insteadOf
Unsigned 32-bit integer
acp133.SEQUENCE_OF_GeneralNames
acp133.insteadOf_item Item
Unsigned 32-bit integer
x509ce.GeneralNames
acp133.kmid kmid
Byte array
acp133.Kmid
acp133.maximum_content_length maximum-content-length
Unsigned 32-bit integer
x411.ContentLength
acp133.member_of_dl member-of-dl
No value
x411.ORName
acp133.member_of_group member-of-group
Unsigned 32-bit integer
x509if.Name
acp133.minimize minimize
Boolean
acp133.BOOLEAN
acp133.none none
No value
acp133.NULL
acp133.originating_MTA_report originating-MTA-report
Signed 32-bit integer
acp133.T_originating_MTA_report
acp133.originator_certificate_selector originator-certificate-selector
No value
x509ce.CertificateAssertion
acp133.originator_report originator-report
Signed 32-bit integer
acp133.T_originator_report
acp133.originator_requested_alternate_recipient_removed originator-requested-alternate-recipient-removed
Boolean
acp133.BOOLEAN
acp133.pattern_match pattern-match
No value
acp133.ORNamePattern
acp133.priority priority
Signed 32-bit integer
acp133.T_priority
acp133.proof_of_delivery proof-of-delivery
Signed 32-bit integer
acp133.T_proof_of_delivery
acp133.rI rI
String
acp133.PrintableString
acp133.rIType rIType
Unsigned 32-bit integer
acp133.T_rIType
acp133.recipient_certificate_selector recipient-certificate-selector
No value
x509ce.CertificateAssertion
acp133.removed removed
No value
acp133.NULL
acp133.replaced replaced
Unsigned 32-bit integer
x411.RequestedDeliveryMethod
acp133.report_from_dl report-from-dl
Signed 32-bit integer
acp133.T_report_from_dl
acp133.report_propagation report-propagation
Signed 32-bit integer
acp133.T_report_propagation
acp133.requested_delivery_method requested-delivery-method
Unsigned 32-bit integer
acp133.T_requested_delivery_method
acp133.return_of_content return-of-content
Unsigned 32-bit integer
acp133.T_return_of_content
acp133.sHD sHD
String
acp133.PrintableString
acp133.security_labels security-labels
Unsigned 32-bit integer
x411.SecurityContext
acp133.tag tag
No value
acp133.PairwiseTag
acp133.token_encryption_algorithm_preference token-encryption-algorithm-preference
Unsigned 32-bit integer
acp133.SEQUENCE_OF_AlgorithmInformation
acp133.token_encryption_algorithm_preference_item Item
No value
acp133.AlgorithmInformation
acp133.token_signature_algorithm_preference token-signature-algorithm-preference
Unsigned 32-bit integer
acp133.SEQUENCE_OF_AlgorithmInformation
acp133.token_signature_algorithm_preference_item Item
No value
acp133.AlgorithmInformation
acp133.ukm ukm
Byte array
acp133.OCTET_STRING
acp133.ukm_entries ukm-entries
Unsigned 32-bit integer
acp133.SEQUENCE_OF_UKMEntry
acp133.ukm_entries_item Item
No value
acp133.UKMEntry
acp133.unchanged unchanged
No value
acp133.NULL
AFS (4.0) Replication Server call declarations (rep_proc)
rep_proc.opnum Operation
Unsigned 16-bit integer
Operation
AIM Administrative (aim_admin)
admin.confirm_status Confirmation status
Unsigned 16-bit integer
aim.acctinfo.code Account Information Request Code
Unsigned 16-bit integer
aim.acctinfo.permissions Account Permissions
Unsigned 16-bit integer
AIM Advertisements (aim_adverts)
AIM Buddylist Service (aim_buddylist)
AIM Chat Navigation (aim_chatnav)
AIM Chat Service (aim_chat)
AIM Directory Search (aim_dir)
AIM E-mail (aim_email)
AIM Generic Service (aim_generic)
aim.client_verification.hash Client Verification MD5 Hash
Byte array
aim.client_verification.length Client Verification Request Length
Unsigned 32-bit integer
aim.client_verification.offset Client Verification Request Offset
Unsigned 32-bit integer
aim.evil.new_warn_level New warning level
Unsigned 16-bit integer
aim.ext_status.data Extended Status Data
Byte array
aim.ext_status.flags Extended Status Flags
Unsigned 8-bit integer
aim.ext_status.length Extended Status Length
Unsigned 8-bit integer
aim.ext_status.type Extended Status Type
Unsigned 16-bit integer
aim.idle_time Idle time (seconds)
Unsigned 32-bit integer
aim.migrate.numfams Number of families to migrate
Unsigned 16-bit integer
aim.privilege_flags Privilege flags
Unsigned 32-bit integer
aim.privilege_flags.allow_idle Allow other users to see idle time
Boolean
aim.privilege_flags.allow_member Allow other users to see how long account has been a member
Boolean
aim.ratechange.msg Rate Change Message
Unsigned 16-bit integer
aim.rateinfo.class.alertlevel Alert Level
Unsigned 32-bit integer
aim.rateinfo.class.clearlevel Clear Level
Unsigned 32-bit integer
aim.rateinfo.class.currentlevel Current Level
Unsigned 32-bit integer
aim.rateinfo.class.curstate Current State
Unsigned 8-bit integer
aim.rateinfo.class.disconnectlevel Disconnect Level
Unsigned 32-bit integer
aim.rateinfo.class.id Class ID
Unsigned 16-bit integer
aim.rateinfo.class.lasttime Last Time
Unsigned 32-bit integer
aim.rateinfo.class.limitlevel Limit Level
Unsigned 32-bit integer
aim.rateinfo.class.maxlevel Max Level
Unsigned 32-bit integer
aim.rateinfo.class.numpairs Number of Family/Subtype pairs
Unsigned 16-bit integer
aim.rateinfo.class.window_size Window Size
Unsigned 32-bit integer
aim.rateinfo.numclasses Number of Rateinfo Classes
Unsigned 16-bit integer
aim.rateinfoack.class Acknowledged Rate Class
Unsigned 16-bit integer
aim.selfinfo.warn_level Warning level
Unsigned 16-bit integer
generic.motd.motdtype MOTD Type
Unsigned 16-bit integer
generic.servicereq.service Requested Service
Unsigned 16-bit integer
AIM ICQ (aim_icq)
aim_icq.chunk_size Data chunk size
Unsigned 16-bit integer
aim_icq.offline_msgs.dropped_flag Dropped messages flag
Unsigned 8-bit integer
aim_icq.owner_uid Owner UID
Unsigned 32-bit integer
aim_icq.request_seq_number Request Sequence Number
Unsigned 16-bit integer
aim_icq.request_type Request Type
Unsigned 16-bit integer
aim_icq.subtype Meta Request Subtype
Unsigned 16-bit integer
AIM Invitation Service (aim_invitation)
AIM Location (aim_location)
aim.snac.location.request_user_info.infotype Infotype
Unsigned 16-bit integer
AIM Messaging (aim_messaging)
aim.clientautoresp.client_caps_flags Client Capabilities Flags
Unsigned 32-bit integer
aim.clientautoresp.protocol_version Version
Unsigned 16-bit integer
aim.clientautoresp.reason Reason
Unsigned 16-bit integer
aim.evil.warn_level Old warning level
Unsigned 16-bit integer
aim.evilreq.origin Send Evil Bit As
Unsigned 16-bit integer
aim.icbm.channel Channel to setup
Unsigned 16-bit integer
aim.icbm.extended_data.message.flags Message Flags
Unsigned 8-bit integer
aim.icbm.extended_data.message.flags.auto Auto Message
Boolean
aim.icbm.extended_data.message.flags.normal Normal Message
Boolean
aim.icbm.extended_data.message.priority_code Priority Code
Unsigned 16-bit integer
aim.icbm.extended_data.message.status_code Status Code
Unsigned 16-bit integer
aim.icbm.extended_data.message.text Text
String
aim.icbm.extended_data.message.text_length Text Length
Unsigned 16-bit integer
aim.icbm.extended_data.message.type Message Type
Unsigned 8-bit integer
aim.icbm.flags Message Flags
Unsigned 32-bit integer
aim.icbm.max_receiver_warnlevel max receiver warn level
Unsigned 16-bit integer
aim.icbm.max_sender_warn-level Max sender warn level
Unsigned 16-bit integer
aim.icbm.max_snac Max SNAC Size
Unsigned 16-bit integer
aim.icbm.min_msg_interval Minimum message interval (seconds)
Unsigned 16-bit integer
aim.icbm.rendezvous.extended_data.message.flags.multi Multiple Recipients Message
Boolean
aim.icbm.unknown Unknown parameter
Unsigned 16-bit integer
aim.messaging.channelid Message Channel ID
Unsigned 16-bit integer
aim.messaging.icbmcookie ICBM Cookie
Byte array
aim.notification.channel Notification Channel
Unsigned 16-bit integer
aim.notification.cookie Notification Cookie
Byte array
aim.notification.type Notification Type
Unsigned 16-bit integer
aim.rendezvous.msg_type Message Type
Unsigned 16-bit integer
AIM OFT (aim_oft)
AIM Popup (aim_popup)
AIM Privacy Management Service (aim_bos)
aim.bos.userclass User class
Unsigned 32-bit integer
AIM Server Side Info (aim_ssi)
aim.fnac.ssi.bid SSI Buddy ID
Unsigned 16-bit integer
aim.fnac.ssi.buddyname Buddy Name
String
aim.fnac.ssi.buddyname_len SSI Buddy Name length
Unsigned 16-bit integer
aim.fnac.ssi.data SSI Buddy Data
Unsigned 16-bit integer
aim.fnac.ssi.gid SSI Buddy Group ID
Unsigned 16-bit integer
aim.fnac.ssi.last_change_time SSI Last Change Time
Unsigned 32-bit integer
aim.fnac.ssi.numitems SSI Object count
Unsigned 16-bit integer
aim.fnac.ssi.tlvlen SSI TLV Len
Unsigned 16-bit integer
aim.fnac.ssi.type SSI Buddy type
Unsigned 16-bit integer
aim.fnac.ssi.version SSI Version
Unsigned 8-bit integer
AIM Server Side Themes (aim_sst)
aim.sst.icon Icon
Byte array
aim.sst.icon_size Icon Size
Unsigned 16-bit integer
aim.sst.md5 MD5 Hash
Byte array
aim.sst.md5.size MD5 Hash Size
Unsigned 8-bit integer
aim.sst.ref_num Reference Number
Unsigned 16-bit integer
aim.sst.unknown Unknown Data
Byte array
AIM Signon (aim_signon)
AIM Statistics (aim_stats)
AIM Translate (aim_translate)
AIM User Lookup (aim_lookup)
aim.userlookup.email Email address looked for
String
Email address
ANSI A-I/F BSMAP (ansi_a_bsmap)
ansi_a.a2p_bearer_ipv4_addr A2p Bearer IP Address
IPv4 address
ansi_a.a2p_bearer_ipv6_addr A2p Bearer IP Address
IPv6 address
ansi_a.a2p_bearer_udp_port A2p Bearer UDP Port
Unsigned 16-bit integer
ansi_a.anchor_pdsn_ip_addr Anchor PDSN Address
IPv4 address
IP Address
ansi_a.anchor_pp_ip_addr Anchor P-P Address
IPv4 address
IP Address
ansi_a.bsmap_msgtype BSMAP Message Type
Unsigned 8-bit integer
ansi_a.cell_ci Cell CI
Unsigned 16-bit integer
ansi_a.cell_lac Cell LAC
Unsigned 16-bit integer
ansi_a.cell_mscid Cell MSCID
Unsigned 24-bit integer
ansi_a.cld_party_ascii_num Called Party ASCII Number
String
ansi_a.cld_party_bcd_num Called Party BCD Number
String
ansi_a.clg_party_ascii_num Calling Party ASCII Number
String
ansi_a.clg_party_bcd_num Calling Party BCD Number
String
ansi_a.dtap_msgtype DTAP Message Type
Unsigned 8-bit integer
ansi_a.elem_id Element ID
Unsigned 8-bit integer
ansi_a.esn ESN
Unsigned 32-bit integer
ansi_a.imsi IMSI
String
ansi_a.len Length
Unsigned 8-bit integer
ansi_a.meid MEID
String
ansi_a.min MIN
String
ansi_a.none Sub tree
No value
ansi_a.pdsn_ip_addr PDSN IP Address
IPv4 address
IP Address
ansi_a.s_pdsn_ip_addr Source PDSN Address
IPv4 address
IP Address
ANSI A-I/F DTAP (ansi_a_dtap)
ANSI IS-637-A (SMS) Teleservice Layer (ansi_637_tele)
ansi_637.bin_addr Binary Address
Byte array
ansi_637.len Length
Unsigned 8-bit integer
ansi_637.none Sub tree
No value
ansi_637.tele_msg_id Message ID
Unsigned 24-bit integer
ansi_637.tele_msg_rsvd Reserved
Unsigned 24-bit integer
ansi_637.tele_msg_type Message Type
Unsigned 24-bit integer
ansi_637.tele_subparam_id Teleservice Subparam ID
Unsigned 8-bit integer
ansi_637.trans_msg_type Message Type
Unsigned 24-bit integer
ansi_637.trans_param_id Transport Param ID
Unsigned 8-bit integer
ANSI IS-637-A (SMS) Transport Layer (ansi_637_trans)
ANSI IS-683-A (OTA (Mobile)) (ansi_683)
ansi_683.for_msg_type Forward Link Message Type
Unsigned 8-bit integer
ansi_683.len Length
Unsigned 8-bit integer
ansi_683.none Sub tree
No value
ansi_683.rev_msg_type Reverse Link Message Type
Unsigned 8-bit integer
ANSI IS-801 (Location Services (PLD)) (ansi_801)
ansi_801.for_req_type Forward Request Type
Unsigned 8-bit integer
ansi_801.for_rsp_type Forward Response Type
Unsigned 8-bit integer
ansi_801.for_sess_tag Forward Session Tag
Unsigned 8-bit integer
ansi_801.rev_req_type Reverse Request Type
Unsigned 8-bit integer
ansi_801.rev_rsp_type Reverse Response Type
Unsigned 8-bit integer
ansi_801.rev_sess_tag Reverse Session Tag
Unsigned 8-bit integer
ansi_801.sess_tag Session Tag
Unsigned 8-bit integer
ANSI Mobile Application Part (ansi_map)
ansi_map.AuthenticationDirective AuthenticationDirective
No value
ansi_map.AuthenticationDirective
ansi_map.AuthenticationDirectiveRes AuthenticationDirectiveRes
No value
ansi_map.AuthenticationDirectiveRes
ansi_map.CDMAChannelNumberList_item Item
No value
ansi_map.CDMAChannelNumberList_item
ansi_map.CDMACodeChannelList_item Item
No value
ansi_map.CDMACodeChannelInformation
ansi_map.CDMAConnectionReferenceList_item Item
No value
ansi_map.CDMAConnectionReferenceList_item
ansi_map.CDMAServiceOptionList_item Item
Byte array
ansi_map.CDMAServiceOption
ansi_map.CDMATargetMAHOList_item Item
No value
ansi_map.CDMATargetMAHOInformation
ansi_map.CDMATargetMeasurementList_item Item
No value
ansi_map.CDMATargetMeasurementInformation
ansi_map.CallRecoveryIDList_item Item
No value
ansi_map.CallRecoveryID
ansi_map.DataAccessElementList_item Item
No value
ansi_map.DataAccessElementList_item
ansi_map.DataUpdateResultList_item Item
No value
ansi_map.DataUpdateResult
ansi_map.ModificationRequestList_item Item
No value
ansi_map.ModificationRequest
ansi_map.ModificationResultList_item Item
Unsigned 32-bit integer
ansi_map.ModificationResult
ansi_map.OriginationRequest OriginationRequest
No value
ansi_map.OriginationRequest
ansi_map.OriginationRequestRes OriginationRequestRes
No value
ansi_map.OriginationRequestRes
ansi_map.PACA_Level PACA Level
Unsigned 8-bit integer
PACA Level
ansi_map.ServiceDataAccessElementList_item Item
No value
ansi_map.ServiceDataAccessElement
ansi_map.ServiceDataResultList_item Item
No value
ansi_map.ServiceDataResult
ansi_map.TargetMeasurementList_item Item
No value
ansi_map.TargetMeasurementInformation
ansi_map.TerminationList_item Item
Unsigned 32-bit integer
ansi_map.TerminationList_item
ansi_map.TriggerAddressList_item Item
No value
ansi_map.TriggerAddressList_item
ansi_map.WIN_TriggerList_item Item
No value
ansi_map.WIN_Trigger
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.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.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.baseStationManufacturerCode baseStationManufacturerCode
Byte array
ansi_map.BaseStationManufacturerCode
ansi_map.baseStationPartialKey baseStationPartialKey
Byte array
ansi_map.BaseStationPartialKey
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.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.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.cdmaMobileProtocolRevision cdmaMobileProtocolRevision
Byte array
ansi_map.CDMAMobileProtocolRevision
ansi_map.cdmaNetworkIdentification cdmaNetworkIdentification
Byte array
ansi_map.CDMANetworkIdentification
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.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.cdmaTargetMeasurementList cdmaTargetMeasurementList
Unsigned 32-bit integer
ansi_map.CDMATargetMeasurementList
ansi_map.cdmaTargetOneWayDelay cdmaTargetOneWayDelay
Byte array
ansi_map.CDMATargetOneWayDelay
ansi_map.cdmacallmode.cdma Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls1 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls10 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls2 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls3 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls4 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls5 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls6 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls7 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls8 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.cls9 Call Mode
Boolean
Call Mode
ansi_map.cdmacallmode.namps Call Mode
Boolean
Call Mode
ansi_map.cdmachanneldata.band_cls Band Class
Unsigned 8-bit integer
Band Class
ansi_map.cdmachanneldata.cdma_ch_no CDMA Channel Number
Unsigned 16-bit integer
CDMA Channel Number
ansi_map.cdmachanneldata.frameoffset Frame Offset
Unsigned 8-bit integer
Frame Offset
ansi_map.cdmachanneldata.lc_mask_b1 Long Code Mask LSB(byte 1)
Unsigned 8-bit integer
Long Code Mask (byte 1)LSB
ansi_map.cdmachanneldata.lc_mask_b2 Long Code Mask (byte 2)
Unsigned 8-bit integer
Long Code Mask (byte 2)
ansi_map.cdmachanneldata.lc_mask_b3 Long Code Mask (byte 3)
Unsigned 8-bit integer
Long Code Mask (byte 3)
ansi_map.cdmachanneldata.lc_mask_b4 Long Code Mask (byte 4)
Unsigned 8-bit integer
Long Code Mask (byte 4)
ansi_map.cdmachanneldata.lc_mask_b5 Long Code Mask (byte 5)
Unsigned 8-bit integer
Long Code Mask (byte 5)
ansi_map.cdmachanneldata.lc_mask_b6 Long Code Mask (byte 6) MSB
Unsigned 8-bit integer
Long Code Mask MSB (byte 6)
ansi_map.cdmachanneldata.nominal_pwr Nominal Power
Unsigned 8-bit integer
Nominal Power
ansi_map.cdmachanneldata.np_ext NP EXT
Boolean
NP EXT
ansi_map.cdmachanneldata.nr_preamble Number Preamble
Unsigned 8-bit integer
Number Preamble
ansi_map.cdmaserviceoption CDMAServiceOption
Unsigned 16-bit integer
CDMAServiceOption
ansi_map.cdmastationclassmark.dmi Dual-mode Indicator(DMI)
Boolean
Dual-mode Indicator(DMI)
ansi_map.cdmastationclassmark.dtx Analog Transmission: (DTX)
Boolean
Analog Transmission: (DTX)
ansi_map.cdmastationclassmark.pc Power Class(PC)
Unsigned 8-bit integer
Power Class(PC)
ansi_map.cdmastationclassmark.smi Slotted Mode Indicator: (SMI)
Boolean
Slotted Mode Indicator: (SMI)
ansi_map.change change
Unsigned 32-bit integer
ansi_map.Change
ansi_map.changeFacilities changeFacilities
No value
ansi_map.ChangeFacilities
ansi_map.changeFacilitiesRes changeFacilitiesRes
No value
ansi_map.ChangeFacilitiesRes
ansi_map.changeService changeService
No value
ansi_map.ChangeService
ansi_map.changeServiceAttributes changeServiceAttributes
Byte array
ansi_map.ChangeServiceAttributes
ansi_map.changeServiceRes changeServiceRes
No value
ansi_map.ChangeServiceRes
ansi_map.channelData channelData
Byte array
ansi_map.ChannelData
ansi_map.channeldata.chno Channel Number (CHNO)
Unsigned 16-bit integer
Channel Number (CHNO)
ansi_map.channeldata.dtx Discontinuous Transmission Mode (DTX)
Unsigned 8-bit integer
Discontinuous Transmission Mode (DTX)
ansi_map.channeldata.scc SAT Color Code (SCC)
Unsigned 8-bit integer
SAT Color Code (SCC)
ansi_map.channeldata.vmac Voice Mobile Attenuation Code (VMAC)
Unsigned 8-bit integer
Voice Mobile Attenuation Code (VMAC)
ansi_map.componentID componentID
Byte array
ansi_map.ComponentID
ansi_map.componentIDs componentIDs
Byte array
ansi_map.OCTET_STRING_SIZE_0_2
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.ctionCode ctionCode
Unsigned 8-bit integer
ansi_map.ActionCode
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.detectionPointType detectionPointType
Unsigned 32-bit integer
ansi_map.DetectionPointType
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.edirectingSubaddress edirectingSubaddress
Byte array
ansi_map.RedirectingSubaddress
ansi_map.electronicSerialNumber electronicSerialNumber
Byte array
ansi_map.ElectronicSerialNumber
ansi_map.enc Encoding
Unsigned 8-bit integer
Encoding
ansi_map.errorCode errorCode
Unsigned 32-bit integer
ansi_map.ErrorCode
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.geographicAuthorization geographicAuthorization
Unsigned 8-bit integer
ansi_map.GeographicAuthorization
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.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.informationForward informationForward
No value
ansi_map.InformationForward
ansi_map.informationForwardRes informationForwardRes
No value
ansi_map.InformationForwardRes
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.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.invokeLast invokeLast
No value
ansi_map.InvokePDU
ansi_map.invokeNotLast invokeNotLast
No value
ansi_map.InvokePDU
ansi_map.invokeParameters invokeParameters
No value
ansi_map.InvokeParameters
ansi_map.invokingNEType invokingNEType
Signed 32-bit integer
ansi_map.InvokingNEType
ansi_map.lectronicSerialNumber lectronicSerialNumber
Byte array
ansi_map.ElectronicSerialNumber
ansi_map.legInformation legInformation
Byte array
ansi_map.LegInformation
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.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.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.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.national national
Signed 32-bit integer
ansi_map.INTEGER_M32768_32767
ansi_map.nationaler nationaler
Signed 32-bit integer
ansi_map.INTEGER_M32768_32767
ansi_map.navail Numer available indication
Boolean
Numer available indication
ansi_map.networkTMSI networkTMSI
Byte array
ansi_map.NetworkTMSI
ansi_map.networkTMSIExpirationTime networkTMSIExpirationTime
Byte array
ansi_map.NetworkTMSIExpirationTime
ansi_map.newMINExtension newMINExtension
Byte array
ansi_map.NewMINExtension
ansi_map.newNetworkTMSI newNetworkTMSI
Byte array
ansi_map.NewNetworkTMSI
ansi_map.newlyAssignedIMSI newlyAssignedIMSI
Byte array
ansi_map.NewlyAssignedIMSI
ansi_map.newlyAssignedMIN newlyAssignedMIN
No value
ansi_map.NewlyAssignedMIN
ansi_map.newlyAssignedMSID newlyAssignedMSID
Unsigned 32-bit integer
ansi_map.NewlyAssignedMSID
ansi_map.noAnswerTime noAnswerTime
Byte array
ansi_map.NoAnswerTime
ansi_map.nonPublicData nonPublicData
Byte array
ansi_map.NonPublicData
ansi_map.np Numbering Plan
Unsigned 8-bit integer
Numbering Plan
ansi_map.nr_digits Number of Digits
Unsigned 8-bit integer
Number of Digits
ansi_map.oAnswer oAnswer
No value
ansi_map.OAnswer
ansi_map.oCalledPartyBusy oCalledPartyBusy
No value
ansi_map.OCalledPartyBusy
ansi_map.oCalledPartyBusyRes oCalledPartyBusyRes
No value
ansi_map.OCalledPartyBusyRes
ansi_map.oDisconnect oDisconnect
No value
ansi_map.ODisconnect
ansi_map.oDisconnectRes oDisconnectRes
No value
ansi_map.ODisconnectRes
ansi_map.oNoAnswer oNoAnswer
No value
ansi_map.ONoAnswer
ansi_map.oNoAnswerRes oNoAnswerRes
No value
ansi_map.ONoAnswerRes
ansi_map.oTASPRequest oTASPRequest
No value
ansi_map.OTASPRequest
ansi_map.oTASPRequestRes oTASPRequestRes
No value
ansi_map.OTASPRequestRes
ansi_map.ocdmacallmode.amps Call Mode
Boolean
Call Mode
ansi_map.oneTimeFeatureIndicator oneTimeFeatureIndicator
Byte array
ansi_map.OneTimeFeatureIndicator
ansi_map.op_code Operation Code
Unsigned 8-bit integer
Operation Code
ansi_map.op_code_fam Operation Code Family
Unsigned 8-bit integer
Operation Code Family
ansi_map.operationCode operationCode
Unsigned 32-bit integer
ansi_map.OperationCode
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
B