ethereal-filter(4) -- Linux man page
NAME
ethereal-filter - Ethereal filter syntax and reference
SYNOPSYS
ethereal [other options]
[ -R ``filter expression'' ]
tethereal [other options]
[ -R ``filter expression'' ]
DESCRIPTION
Ethereal and Tethereal share a powerful filter engine that
helps remove the noise from a packet trace and lets you see only the packets
that interest you. If a packet meets the requirements expressed in your
filter, then it is displayed in the list of packets. Display filters let
you compare the fields within a protocol against a specific value, compare
fields against fields, and check the existence of specified fields or
protocols.
Filters are also used by other features such as statistics generation and
packet list colorization (the latter is only available to Ethereal).
This manual page describes their syntax and provides a comprehensive
reference of filter fields.
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 Ethereal and
Tethereal 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.ethereal.com"
The ``contains'' operator cannot be used on atomic fields,
such as numbers or IP addresses.
The ``matches'' operator allows a filter to apply to a specified
Perl-compatible regular expression (PCRE). The ``matches'' operator is only
implemented for protocols and for protocol fields with a text string
representation. For example, to search for a given WAP WSP User-Agent,
you can write:
wsp.user_agent matches "(?i)cldc"
This example shows an interesting PCRE feature: pattern match options have to
be specified with the (?option) construct. For instance, (?i) performs
a case-insensitive pattern match. More information on PCRE can be found in the
pcrepattern(3) man page (Perl Regular Expressions are explained in
http://www.perldoc.com/perl5.8.0/pod/perlre.php).
Note: the ``matches'' operator is only available if Ethereal or Tethereal
have been compiled with the PCRE library. This can be checked by running:
ethereal -v
tethereal -v
or selecting the ``About Ethereal'' item from the ``Help'' menu in Ethereal.
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 Ethereal or Tethereal.
token[0:5] ne 0.0.0.1.1
llc[0] eq aa
frame[100-199] contains "ethereal"
The following syntax governs slices:
[i:j] i = start_offset, j = length
[i-j] i = start_offset, j = end_offset, inclusive.
[i] i = start_offset, length = 1
[:j] start_offset = 0, length = j
[i:] start_offset = i, end_offset = end_of_field
Offsets can be negative, in which case they indicate the
offset from the end of the field. The last byte of the field is at offset
-1, the last but one byte is at offset -2, and so on.
Here's how to check the last four bytes of a frame:
frame[-4:4] == 0.1.2.3
or
frame[-4:] == 0.1.2.3
You can concatenate slices using the comma operator:
ftp[1,3-5,9:] == 01:03:04:05:09:0a:0b
This concatenates offset 1, offsets 3-5, and offset 9 to the end of the ftp
data.
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 "ethereal"
(ipx.src.net == 0xbad && ipx.src.node == 0.0.0.0.0.1) || ip
Remember that whenever a protocol or field name occurs in an expression, the
``exists'' operator is implicitly called. The ``exists'' operator has the highest
priority. This means that the first filter expression must be read as ``show me
the packets for which tcp.port exists and equals 80, and ip.src exists and
equals 192.168.2.1''. The second filter expression means ``show me the packets
where not (llc exists)'', or in other words ``where llc does not exist'' and hence
will match all packets that do not contain the llc protocol.
The third filter expression includes the constraint that offset 199 in the
frame exists, in other words the length of the frame is at least 200.
A special caveat must be given regarding fields that occur more than
once per packet. ``ip.addr'' occurs twice per IP packet, once for the
source address, and once for the destination address. Likewise,
``tr.rif.ring'' fields can occur more than once per packet. The following
two expressions are not equivalent:
ip.addr ne 192.168.4.1
not ip.addr eq 192.168.4.1
The first filter says ``show me packets where an ip.addr exists that
does not equal 192.168.4.1''. That is, as long as one ip.addr in the
packet does not equal 192.168.4.1, the packet passes the display
filter. The other ip.addr could equal 192.168.4.1 and the packet would
still be displayed.
The second filter says ``don't show me any packets that have an
ip.addr field equal to 192.168.4.1''. If one ip.addr is 192.168.4.1,
the packet does not pass. If neither ip.addr field is 192.168.4.1,
then the packet is displayed.
It is easy to think of the 'ne' and 'eq' operators as having an implict
``exists'' modifier when dealing with multiply-recurring fields. ``ip.addr
ne 192.168.4.1'' can be thought of as ``there exists an ip.addr that does
not equal 192.168.4.1''. ``not ip.addr eq 192.168.4.1'' can be thought of as
``there does not exist an ip.addr equal to 192.168.4.1''.
Be careful with multiply-recurring fields; they can be confusing.
Care must also be taken when using the display filter to remove noise
from the packet trace. If, for example, you want to filter out all IP
multicast packets to address 224.1.2.3, then using:
ip.dst ne 224.1.2.3
may be too restrictive. Filtering with ``ip.dst'' selects only those
IP packets that satisfy the rule. Any other packets, including all
non-IP packets, will not be displayed. To display the non-IP
packets as well, you can use one of the following two expressions:
not ip or ip.dst ne 224.1.2.3
not ip.addr eq 224.1.2.3
The first filter uses ``not ip'' to include all non-IP packets and then
lets ``ip.dst ne 224.1.2.3'' filter out the unwanted IP packets. The
second filter has already been explained above where filtering with
multiply occuring fields was discussed.
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)
Byte array
MSID(BCD).
a11.ext.msid_len MSID Length
Unsigned 8-bit integer
MSID Length.
a11.ext.msid_type MSID Type
Unsigned 16-bit integer
MSID Type.
a11.ext.panid PANID
Byte array
PANID
a11.ext.ppaddr Anchor P-P Address
IPv4 address
Anchor P-P Address.
a11.ext.ptype Protocol Type
Unsigned 16-bit integer
Protocol Type.
a11.ext.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
ACPLegacyFormat
acp133.ACPPreferredDelivery ACPPreferredDelivery
Unsigned 32-bit integer
ACPPreferredDelivery
acp133.ALType ALType
Signed 32-bit integer
ALType
acp133.AddressCapabilities AddressCapabilities
No value
AddressCapabilities
acp133.Addressees Addressees
Unsigned 32-bit integer
Addressees
acp133.Addressees_item Item
String
Addressees/_item
acp133.Capability Capability
No value
Capability
acp133.Classification Classification
Unsigned 32-bit integer
Classification
acp133.Community Community
Unsigned 32-bit integer
Community
acp133.DLPolicy DLPolicy
No value
DLPolicy
acp133.DLSubmitPermission DLSubmitPermission
Unsigned 32-bit integer
DLSubmitPermission
acp133.DistributionCode DistributionCode
String
DistributionCode
acp133.JPEG JPEG
Byte array
JPEG
acp133.Kmid Kmid
Byte array
Kmid
acp133.MLReceiptPolicy MLReceiptPolicy
Unsigned 32-bit integer
MLReceiptPolicy
acp133.MonthlyUKMs MonthlyUKMs
No value
MonthlyUKMs
acp133.OnSupported OnSupported
Byte array
OnSupported
acp133.RIParameters RIParameters
No value
RIParameters
acp133.Remarks Remarks
Unsigned 32-bit integer
Remarks
acp133.Remarks_item Item
String
Remarks/_item
acp133.acp127-nn acp127-nn
Boolean
acp133.acp127-pn acp127-pn
Boolean
acp133.acp127-tn acp127-tn
Boolean
acp133.address address
No value
AddressCapabilities/address
acp133.algorithm_identifier algorithm-identifier
No value
acp133.capabilities capabilities
Unsigned 32-bit integer
AddressCapabilities/capabilities
acp133.capabilities_item Item
No value
AddressCapabilities/capabilities/_item
acp133.classification classification
Unsigned 32-bit integer
RIParameters/classification
acp133.content_types content-types
Unsigned 32-bit integer
Capability/content-types
acp133.content_types_item Item
Capability/content-types/_item
acp133.conversion_with_loss_prohibited conversion-with-loss-prohibited
Unsigned 32-bit integer
DLPolicy/conversion-with-loss-prohibited
acp133.date date
String
PairwiseTag/date
acp133.description description
String
AddressCapabilities/description
acp133.disclosure_of_other_recipients disclosure-of-other-recipients
Unsigned 32-bit integer
DLPolicy/disclosure-of-other-recipients
acp133.edition edition
Signed 32-bit integer
PairwiseTag/edition
acp133.encoded_information_types_constraints encoded-information-types-constraints
No value
Capability/encoded-information-types-constraints
acp133.encrypted encrypted
Byte array
MonthlyUKMs/encrypted
acp133.further_dl_expansion_allowed further-dl-expansion-allowed
Boolean
DLPolicy/further-dl-expansion-allowed
acp133.implicit_conversion_prohibited implicit-conversion-prohibited
Unsigned 32-bit integer
DLPolicy/implicit-conversion-prohibited
acp133.inAdditionTo inAdditionTo
Unsigned 32-bit integer
MLReceiptPolicy/inAdditionTo
acp133.inAdditionTo_item Item
Unsigned 32-bit integer
MLReceiptPolicy/inAdditionTo/_item
acp133.individual individual
No value
DLSubmitPermission/individual
acp133.insteadOf insteadOf
Unsigned 32-bit integer
MLReceiptPolicy/insteadOf
acp133.insteadOf_item Item
Unsigned 32-bit integer
MLReceiptPolicy/insteadOf/_item
acp133.kmid kmid
Byte array
PairwiseTag/kmid
acp133.maximum_content_length maximum-content-length
Unsigned 32-bit integer
Capability/maximum-content-length
acp133.member_of_dl member-of-dl
No value
DLSubmitPermission/member-of-dl
acp133.member_of_group member-of-group
Unsigned 32-bit integer
DLSubmitPermission/member-of-group
acp133.minimize minimize
Boolean
RIParameters/minimize
acp133.none none
No value
MLReceiptPolicy/none
acp133.originating_MTA_report originating-MTA-report
Signed 32-bit integer
DLPolicy/originating-MTA-report
acp133.originator_certificate_selector originator-certificate-selector
No value
AlgorithmInformation/originator-certificate-selector
acp133.originator_report originator-report
Signed 32-bit integer
DLPolicy/originator-report
acp133.originator_requested_alternate_recipient_removed originator-requested-alternate-recipient-removed
Boolean
DLPolicy/originator-requested-alternate-recipient-removed
acp133.pattern_match pattern-match
No value
DLSubmitPermission/pattern-match
acp133.priority priority
Signed 32-bit integer
DLPolicy/priority
acp133.proof_of_delivery proof-of-delivery
Signed 32-bit integer
DLPolicy/proof-of-delivery
acp133.rI rI
String
RIParameters/rI
acp133.rIType rIType
Unsigned 32-bit integer
RIParameters/rIType
acp133.recipient_certificate_selector recipient-certificate-selector
No value
AlgorithmInformation/recipient-certificate-selector
acp133.removed removed
No value
DLPolicy/requested-delivery-method/removed
acp133.replaced replaced
Unsigned 32-bit integer
DLPolicy/requested-delivery-method/replaced
acp133.report_from_dl report-from-dl
Signed 32-bit integer
DLPolicy/report-from-dl
acp133.report_propagation report-propagation
Signed 32-bit integer
DLPolicy/report-propagation
acp133.requested_delivery_method requested-delivery-method
Unsigned 32-bit integer
DLPolicy/requested-delivery-method
acp133.return_of_content return-of-content
Unsigned 32-bit integer
DLPolicy/return-of-content
acp133.sHD sHD
String
RIParameters/sHD
acp133.security_labels security-labels
Unsigned 32-bit integer
Capability/security-labels
acp133.tag tag
No value
UKMEntry/tag
acp133.token_encryption_algorithm_preference token-encryption-algorithm-preference
Unsigned 32-bit integer
DLPolicy/token-encryption-algorithm-preference
acp133.token_encryption_algorithm_preference_item Item
No value
DLPolicy/token-encryption-algorithm-preference/_item
acp133.token_signature_algorithm_preference token-signature-algorithm-preference
Unsigned 32-bit integer
DLPolicy/token-signature-algorithm-preference
acp133.token_signature_algorithm_preference_item Item
No value
DLPolicy/token-signature-algorithm-preference/_item
acp133.ukm ukm
Byte array
UKMEntry/ukm
acp133.ukm_entries ukm-entries
Unsigned 32-bit integer
MonthlyUKMs/ukm-entries
acp133.ukm_entries_item Item
No value
MonthlyUKMs/ukm-entries/_item
acp133.unchanged unchanged
No value
DLPolicy/requested-delivery-method/unchanged
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.bsmap_msgtype BSMAP Message Type
Unsigned 8-bit integer
ansi_a.cell_ci Cell CI
Unsigned 16-bit integer
ansi_a.cell_lac Cell LAC
Unsigned 16-bit integer
ansi_a.cell_mscid Cell MSCID
Unsigned 24-bit integer
ansi_a.cld_party_ascii_num Called Party ASCII Number
String
ansi_a.cld_party_bcd_num Called Party BCD Number
String
ansi_a.clg_party_ascii_num Calling Party ASCII Number
String
ansi_a.clg_party_bcd_num Calling Party BCD Number
String
ansi_a.dtap_msgtype DTAP Message Type
Unsigned 8-bit integer
ansi_a.elem_id Element ID
Unsigned 8-bit integer
ansi_a.esn ESN
Unsigned 32-bit integer
ansi_a.imsi IMSI
String
ansi_a.len Length
Unsigned 8-bit integer
ansi_a.min MIN
String
ansi_a.none Sub tree
No value
ansi_a.pdsn_ip_addr PDSN IP Address
IPv4 address
IP Address
ANSI 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.billing_id Billing ID
Signed 32-bit integer
ansi_map.id Value
Unsigned 8-bit integer
ansi_map.ios401_elem_id IOS 4.0.1 Element ID
No value
ansi_map.len Length
Unsigned 8-bit integer
ansi_map.min MIN
String
ansi_map.number Number
String
ansi_map.oprcode Operation Code
Signed 32-bit integer
ansi_map.param_id Param ID
Unsigned 32-bit integer
ansi_map.tag Tag
Unsigned 8-bit integer
AOL Instant Messenger (aim)
aim.buddyname Buddy Name
String
aim.buddynamelen Buddyname len
Unsigned 8-bit integer
aim.channel Channel ID
Unsigned 8-bit integer
aim.cmd_start Command Start
Unsigned 8-bit integer
aim.data Data
Byte array
aim.datalen Data Field Length
Unsigned 16-bit integer
aim.dcinfo.addr Internal IP address
IPv4 address
aim.dcinfo.auth_cookie Authorization Cookie
Byte array
aim.dcinfo.client_futures Client Futures
Unsigned 32-bit integer
aim.dcinfo.last_ext_info_update Last Extended Info Update
Unsigned 32-bit integer
aim.dcinfo.last_ext_status_update Last Extended Status Update
Unsigned 32-bit integer
aim.dcinfo.last_info_update Last Info Update
Unsigned 32-bit integer
aim.dcinfo.proto_version Protocol Version
Unsigned 16-bit integer
aim.dcinfo.tcpport TCP Port
Unsigned 32-bit integer
aim.dcinfo.type Type
Unsigned 8-bit integer
aim.dcinfo.unknown Unknown
Unsigned 16-bit integer
aim.dcinfo.webport Web Front Port
Unsigned 32-bit integer
aim.fnac.family FNAC Family ID
Unsigned 16-bit integer
aim.fnac.flags FNAC Flags
Unsigned 16-bit integer
aim.fnac.flags.contains_version Contains Version of Family this SNAC is in
Boolean
aim.fnac.flags.next_is_related Followed By SNAC with related information
Boolean
aim.fnac.id FNAC ID
Unsigned 32-bit integer
aim.fnac.subtype FNAC Subtype ID
Unsigned 16-bit integer
aim.infotype Infotype
Unsigned 16-bit integer
aim.messageblock.charset Block Character set
Unsigned 16-bit integer
aim.messageblock.charsubset Block Character subset
Unsigned 16-bit integer
aim.messageblock.features Features
Byte array
aim.messageblock.featuresdes Features
Unsigned 16-bit integer
aim.messageblock.featureslen Features Length
Unsigned 16-bit integer
aim.messageblock.info Block info
Unsigned 16-bit integer
aim.messageblock.length Block length
Unsigned 16-bit integer
aim.messageblock.message Message
String
aim.seqno Sequence Number
Unsigned 16-bit integer
aim.signon.challenge Signon challenge
String
aim.signon.challengelen Signon challenge length
Unsigned 16-bit integer
aim.snac.error SNAC Error
Unsigned 16-bit integer
aim.tlvcount TLV Count
Unsigned 16-bit integer
aim.userclass.administrator AOL Administrator flag
Boolean
aim.userclass.away AOL away status flag
Boolean
aim.userclass.commercial AOL commercial account flag
Boolean
aim.userclass.icq ICQ user sign
Boolean
aim.userclass.noncommercial ICQ non-commercial account flag
Boolean
aim.userclass.staff AOL Staff User Flag
Boolean
aim.userclass.unconfirmed AOL Unconfirmed user flag
Boolean
aim.userclass.unknown100 Unknown bit
Boolean
aim.userclass.unknown200 Unknown bit
Boolean
aim.userclass.unknown400 Unknown bit
Boolean
aim.userclass.unknown800 Unknown bit
Boolean
aim.userclass.wireless AOL wireless user
Boolean
aim.userinfo.warninglevel Warning Level
Unsigned 16-bit integer
aim.version Protocol Version
Byte array
ARCNET (arcnet)
arcnet.dst Dest
Unsigned 8-bit integer
Dest ID
arcnet.exception_flag Exception Flag
Unsigned 8-bit integer
Exception flag
arcnet.offset Offset
Byte array
Offset
arcnet.protID Protocol ID
Unsigned 8-bit integer
Proto type
arcnet.sequence Sequence
Unsigned 16-bit integer
Sequence number
arcnet.split_flag Split Flag
Unsigned 8-bit integer
Split flag
arcnet.src Source
Unsigned 8-bit integer
Source ID
ATAoverEthernet (aoe)
aoe.aflags.a A
Boolean
Whether this is an asynchronous write or not
aoe.aflags.d D
Boolean
aoe.aflags.e E
Boolean
Whether this is a normal or LBA48 command
aoe.aflags.w W
Boolean
Is this a command writing data to the device or not
aoe.ata.cmd ATA Cmd
Unsigned 8-bit integer
ATA command opcode
aoe.ata.status ATA Status
Unsigned 8-bit integer
ATA status bits
aoe.cmd Command
Unsigned 8-bit integer
AOE Command
aoe.err_feature Err/Feature
Unsigned 8-bit integer
Err/Feature
aoe.error Error
Unsigned 8-bit integer
Error code
aoe.lba Lba
Unsigned 64-bit integer
Lba address
aoe.major Major
Unsigned 16-bit integer
Major address
aoe.minor Minor
Unsigned 8-bit integer
Minor address
aoe.response Response flag
Boolean
Whether this is a response PDU or not
aoe.response_in Response In
Frame number
The response to this packet is in this frame
aoe.response_to Response To
Frame number
This is a response to the ATA command in this frame
aoe.sector_count Sector Count
Unsigned 8-bit integer
Sector Count
aoe.tag Tag
Unsigned 32-bit integer
Command Tag
aoe.time Time from request
Time duration
Time between Request and Reply for ATA calls
aoe.version Version
Unsigned 8-bit integer
Version of the AOE protocol
ATM (atm)
atm.aal AAL
Unsigned 8-bit integer
atm.vci VCI
Unsigned 16-bit integer
atm.vpi VPI
Unsigned 8-bit integer
ATM AAL1 (aal1)
ATM AAL3/4 (aal3_4)
ATM LAN Emulation (lane)
ATM OAM AAL (oamaal)
AVS WLAN Capture header (wlancap)
wlancap.antenna Antenna
Unsigned 32-bit integer
wlancap.channel Channel
Unsigned 32-bit integer
wlancap.datarate Data rate
Unsigned 32-bit integer
wlancap.encoding Encoding Type
Unsigned 32-bit integer
wlancap.hosttime Host timestamp
Unsigned 64-bit integer
wlancap.length Header length
Unsigned 32-bit integer
wlancap.mactime MAC timestamp
Unsigned 64-bit integer
wlancap.phytype PHY type
Unsigned 32-bit integer
wlancap.preamble Preamble
Unsigned 32-bit integer
wlancap.priority Priority
Unsigned 32-bit integer
wlancap.ssi_noise SSI Noise
Signed 32-bit integer
wlancap.ssi_signal SSI Signal
Signed 32-bit integer
wlancap.ssi_type SSI Type
Unsigned 32-bit integer
wlancap.version Header revision
Unsigned 32-bit integer
AX/4000 Test Block (ax4000)
ax4000.chassis Chassis Number
Unsigned 8-bit integer
ax4000.crc CRC (unchecked)
Unsigned 16-bit integer
ax4000.fill Fill Type
Unsigned 8-bit integer
ax4000.index Index
Unsigned 16-bit integer
ax4000.port Port Number
Unsigned 8-bit integer
ax4000.seq Sequence Number
Unsigned 32-bit integer
ax4000.timestamp Timestamp
Unsigned 32-bit integer
Active Directory Setup (dssetup)
dssetup.dssetup_DsRoleFlags.DS_ROLE_PRIMARY_DOMAIN_GUID_BLOCKQUOTESENT 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
hoc On-demand Distance Vector Routing Protocol (aodv)
aodv.dest_ip Destination IP
IPv4 address
Destination IP Address
aodv.dest_ipv6 Destination IPv6
IPv6 address
Destination IPv6 Address
aodv.dest_seqno Destination Sequence Number
Unsigned 32-bit integer
Destination Sequence Number
aodv.destcount Destination Count
Unsigned 8-bit integer
Unreachable Destinations Count
aodv.ext_length Extension Length
Unsigned 8-bit integer
Extension Data Length
aodv.ext_type Extension Type
Unsigned 8-bit integer
Extension Format Type
aodv.flags Flags
Unsigned 16-bit integer
Flags
aodv.flags.rerr_nodelete RERR No Delete
Boolean
aodv.flags.rrep_ack RREP Acknowledgement
Boolean
aodv.flags.rrep_repair RREP Repair
Boolean
aodv.flags.rreq_destinationonly RREQ Destination only
Boolean
aodv.flags.rreq_gratuitous RREQ Gratuitous RREP
Boolean
aodv.flags.rreq_join RREQ Join
Boolean
aodv.flags.rreq_repair RREQ Repair
Boolean
aodv.flags.rreq_unknown RREQ Unknown Sequence Number
Boolean
aodv.hello_interval Hello Interval
Unsigned 32-bit integer
Hello Interval Extension
aodv.hopcount Hop Count
Unsigned 8-bit integer
Hop Count
aodv.lifetime Lifetime
Unsigned 32-bit integer
Lifetime
aodv.orig_ip Originator IP
IPv4 address
Originator IP Address
aodv.orig_ipv6 Originator IPv6
IPv6 address
Originator IPv6 Address
aodv.orig_seqno Originator Sequence Number
Unsigned 32-bit integer
Originator Sequence Number
aodv.prefix_sz Prefix Size
Unsigned 8-bit integer
Prefix Size
aodv.rreq_id RREQ Id
Unsigned 32-bit integer
RREQ Id
aodv.timestamp Timestamp
Unsigned 64-bit integer
Timestamp Extension
aodv.type Type
Unsigned 8-bit integer
AODV packet type
aodv.unreach_dest_ip Unreachable Destination IP
IPv4 address
Unreachable Destination IP Address
aodv.unreach_dest_ipv6 Unreachable Destination IPv6
IPv6 address
Unreachable Destination IPv6 Address
aodv.unreach_dest_seqno Unreachable Destination Sequence Number
Unsigned 32-bit integer
Unreachable Destination Sequence Number
Adaptive Multi-Rate (amr)
amr.cmr CMR
Unsigned 8-bit integer
codec mode request
amr.fqi FQI
Boolean
Frame quality indicator bit
amr.if1.ft Frame Type
Unsigned 8-bit integer
Frame Type
amr.if1.modereq Mode Type request
Unsigned 8-bit integer
Mode Type request
amr.if1.sti SID Type Indicator
Boolean
SID Type Indicator
amr.if2.ft Frame Type
Unsigned 8-bit integer
Frame Type
amr.reserved Reserved
Unsigned 8-bit integer
Reserved bits
amr.sti SID Type Indicator
Boolean
SID Type Indicator
amr.toc.f F bit
Boolean
F bit
amr.toc.f.ual1 F bit
Boolean
F bit
amr.toc.f.ual2 F bit
Boolean
F bit
amr.toc.ft FT bits
Unsigned 8-bit integer
FT bits
amr.toc.ft.ual1 FT bits
Unsigned 16-bit integer
FT bits
amr.toc.ft.ual2 FT bits
Unsigned 16-bit integer
FT bits
amr.toc.q Q bit
Boolean
Frame quality indicator bit
amr.toc.ua1.q.ual1 Q bit
Boolean
Frame quality indicator bit
amr.toc.ua1.q.ual2 Q bit
Boolean
Frame quality indicator bit
Address Resolution Protocol (arp)
arp.dst.atm_num_e164 Target ATM number (E.164)
String
arp.dst.atm_num_nsap Target ATM number (NSAP)
Byte array
arp.dst.atm_subaddr Target ATM subaddress
Byte array
arp.dst.hlen Target ATM number length
Unsigned 8-bit integer
arp.dst.htype Target ATM number type
Boolean
arp.dst.hw Target hardware address
Byte array
arp.dst.hw_mac Target MAC address
6-byte Hardware (MAC) Address
arp.dst.pln Target protocol size
Unsigned 8-bit integer
arp.dst.proto Target protocol address
Byte array
arp.dst.proto_ipv4 Target IP address
IPv4 address
arp.dst.slen Target ATM subaddress length
Unsigned 8-bit integer
arp.dst.stype Target ATM subaddress type
Boolean
arp.hw.size Hardware size
Unsigned 8-bit integer
arp.hw.type Hardware type
Unsigned 16-bit integer
arp.opcode Opcode
Unsigned 16-bit integer
arp.proto.size Protocol size
Unsigned 8-bit integer
arp.proto.type Protocol type
Unsigned 16-bit integer
arp.src.atm_num_e164 Sender ATM number (E.164)
String
arp.src.atm_num_nsap Sender ATM number (NSAP)
Byte array
arp.src.atm_subaddr Sender ATM subaddress
Byte array
arp.src.hlen Sender ATM number length
Unsigned 8-bit integer
arp.src.htype Sender ATM number type
Boolean
arp.src.hw Sender hardware address
Byte array
arp.src.hw_mac Sender MAC address
6-byte Hardware (MAC) Address
arp.src.pln Sender protocol size
Unsigned 8-bit integer
arp.src.proto Sender protocol address
Byte array
arp.src.proto_ipv4 Sender IP address
IPv4 address
arp.src.slen Sender ATM subaddress length
Unsigned 8-bit integer
arp.src.stype Sender ATM subaddress type
Boolean
Aggregate Server Access Protocol (asap)
asap.cause_code Cause code
Unsigned 16-bit integer
asap.cause_info Cause info
Byte array
asap.cause_length Cause length
Unsigned 16-bit integer
asap.cause_padding Padding
Byte array
asap.cookie Cookie
Byte array
asap.h_bit H bit
Boolean
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_checksum_reserved Reserved
Unsigned 16-bit integer
asap.pe_identifier PE identifier
Unsigned 32-bit integer
asap.pool_element_home_enrp_server_identifier Home ENRP server identifier
Unsigned 32-bit integer
asap.pool_element_pe_identifier PE identifier
Unsigned 32-bit integer
asap.pool_element_registration_life Registration life
Signed 32-bit integer
asap.pool_handle_pool_handle Pool handle
Byte array
asap.pool_member_slection_policy_type Policy type
Unsigned 8-bit integer
asap.pool_member_slection_policy_value Policy value
Signed 24-bit integer
asap.r_bit R bit
Boolean
asap.sctp_transport_port Port
Unsigned 16-bit integer
asap.server_identifier Server identifier
Unsigned 32-bit integer
asap.server_information_m_bit M-Bit
Boolean
asap.server_information_reserved Reserved
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
Alert Standard Forum (asf)
asf.iana IANA Enterprise Number
Unsigned 32-bit integer
ASF IANA Enterprise Number
asf.len Data Length
Unsigned 8-bit integer
ASF Data Length
asf.tag Message Tag
Unsigned 8-bit integer
ASF Message Tag
asf.type Message Type
Unsigned 8-bit integer
ASF Message Type
Alteon - Transparent Proxy Cache Protocol (tpcp)
tpcp.caddr Client Source IP address
IPv4 address
tpcp.cid Client indent
Unsigned 16-bit integer
tpcp.cport Client Source Port
Unsigned 16-bit integer
tpcp.flags.redir No Redirect
Boolean
Don't redirect client
tpcp.flags.tcp UDP/TCP
Boolean
Protocol type
tpcp.flags.xoff XOFF
Boolean
tpcp.flags.xon XON
Boolean
tpcp.rasaddr RAS server IP address
IPv4 address
tpcp.saddr Server IP address
IPv4 address
tpcp.type Type
Unsigned 8-bit integer
PDU type
tpcp.vaddr Virtual Server IP address
IPv4 address
tpcp.version Version
Unsigned 8-bit integer
TPCP version
Andrew File System (AFS) (afs)
afs.backup Backup
Boolean
Backup Server
afs.backup.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.backup.opcode Operation
Unsigned 32-bit integer
Operation
afs.bos BOS
Boolean
Basic Oversee Server
afs.bos.baktime Backup Time
Date/Time stamp
Backup Time
afs.bos.cell Cell
String
Cell
afs.bos.cmd Command
String
Command
afs.bos.content Content
String
Content
afs.bos.data Data
Byte array
Data
afs.bos.date Date
Unsigned 32-bit integer
Date
afs.bos.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.bos.error Error
String
Error
afs.bos.file File
String
File
afs.bos.flags Flags
Unsigned 32-bit integer
Flags
afs.bos.host Host
String
Host
afs.bos.instance Instance
String
Instance
afs.bos.key Key
Byte array
key
afs.bos.keychecksum Key Checksum
Unsigned 32-bit integer
Key Checksum
afs.bos.keymodtime Key Modification Time
Date/Time stamp
Key Modification Time
afs.bos.keyspare2 Key Spare 2
Unsigned 32-bit integer
Key Spare 2
afs.bos.kvno Key Version Number
Unsigned 32-bit integer
Key Version Number
afs.bos.newtime New Time
Date/Time stamp
New Time
afs.bos.number Number
Unsigned 32-bit integer
Number
afs.bos.oldtime Old Time
Date/Time stamp
Old Time
afs.bos.opcode Operation
Unsigned 32-bit integer
Operation
afs.bos.parm Parm
String
Parm
afs.bos.path Path
String
Path
afs.bos.size Size
Unsigned 32-bit integer
Size
afs.bos.spare1 Spare1
String
Spare1
afs.bos.spare2 Spare2
String
Spare2
afs.bos.spare3 Spare3
String
Spare3
afs.bos.status Status
Signed 32-bit integer
Status
afs.bos.statusdesc Status Description
String
Status Description
afs.bos.type Type
String
Type
afs.bos.user User
String
User
afs.cb Callback
Boolean
Callback
afs.cb.callback.expires Expires
Date/Time stamp
Expires
afs.cb.callback.type Type
Unsigned 32-bit integer
Type
afs.cb.callback.version Version
Unsigned 32-bit integer
Version
afs.cb.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.cb.fid.uniq FileID (Uniqifier)
Unsigned 32-bit integer
File ID (Uniqifier)
afs.cb.fid.vnode FileID (VNode)
Unsigned 32-bit integer
File ID (VNode)
afs.cb.fid.volume FileID (Volume)
Unsigned 32-bit integer
File ID (Volume)
afs.cb.opcode Operation
Unsigned 32-bit integer
Operation
afs.error Error
Boolean
Error
afs.error.opcode Operation
Unsigned 32-bit integer
Operation
afs.fs File Server
Boolean
File Server
afs.fs.acl.a _A_dminister
Boolean
Administer
afs.fs.acl.count.negative ACL Count (Negative)
Unsigned 32-bit integer
Number of Negative ACLs
afs.fs.acl.count.positive ACL Count (Positive)
Unsigned 32-bit integer
Number of Positive ACLs
afs.fs.acl.d _D_elete
Boolean
Delete
afs.fs.acl.datasize ACL Size
Unsigned 32-bit integer
ACL Data Size
afs.fs.acl.entity Entity (User/Group)
String
ACL Entity (User/Group)
afs.fs.acl.i _I_nsert
Boolean
Insert
afs.fs.acl.k _L_ock
Boolean
Lock
afs.fs.acl.l _L_ookup
Boolean
Lookup
afs.fs.acl.r _R_ead
Boolean
Read
afs.fs.acl.w _W_rite
Boolean
Write
afs.fs.callback.expires Expires
Time duration
Expires
afs.fs.callback.type Type
Unsigned 32-bit integer
Type
afs.fs.callback.version Version
Unsigned 32-bit integer
Version
afs.fs.cps.spare1 CPS Spare1
Unsigned 32-bit integer
CPS Spare1
afs.fs.cps.spare2 CPS Spare2
Unsigned 32-bit integer
CPS Spare2
afs.fs.cps.spare3 CPS Spare3
Unsigned 32-bit integer
CPS Spare3
afs.fs.data Data
Byte array
Data
afs.fs.errcode Error Code
Unsigned 32-bit integer
Error Code
afs.fs.fid.uniq FileID (Uniqifier)
Unsigned 32-bit integer
File ID (Uniqifier)
afs.fs.fid.vnode FileID (VNode)
Unsigned 32-bit integer
File ID (VNode)
afs.fs.fid.volume FileID (Volume)
Unsigned 32-bit integer
File ID (Volume)
afs.fs.flength FLength
Unsigned 32-bit integer
FLength
afs.fs.flength64 FLength64
Unsigned 64-bit integer
FLength64
afs.fs.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
Apache JServ Protocol v1.3 (ajp13)
ajp13.code Code
String
Type Code
ajp13.data Data
String
Data
ajp13.hname HNAME
String
Header Name
ajp13.hval HVAL
String
Header Value
ajp13.len Length
Unsigned 16-bit integer
Data Length
ajp13.magic Magic
Byte array
Magic Number
ajp13.method Method
String
HTTP Method
ajp13.nhdr NHDR
Unsigned 16-bit integer
Num Headers
ajp13.port PORT
Unsigned 16-bit integer
Port
ajp13.raddr RADDR
String
Remote Address
ajp13.reusep REUSEP
Unsigned 8-bit integer
Reuse Connection?
ajp13.rhost RHOST
String
Remote Host
ajp13.rlen RLEN
Unsigned 16-bit integer
Requested Length
ajp13.rmsg RSMSG
String
HTTP Status Message
ajp13.rstatus RSTATUS
Unsigned 16-bit integer
HTTP Status Code
ajp13.srv SRV
String
Server
ajp13.sslp SSLP
Unsigned 8-bit integer
Is SSL?
ajp13.uri URI
String
HTTP URI
ajp13.ver Version
String
HTTP Version
Apple Filing Protocol (afp)
afp.AFPVersion AFP Version
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
Gwner has write access
afp.dir_ar.u_owner User is the owner
Boolean
Current user is the directory owner
afp.dir_ar.u_read User has read access
Boolean
User has read access
afp.dir_ar.u_search User has search access
Boolean
User has search access
afp.dir_ar.u_write User has write access
Boolean
User has write access
afp.dir_attribute.backup_needed Backup needed
Boolean
Directory needs to be backed up
afp.dir_attribute.delete_inhibit Delete inhibit
Boolean
Delete inhibit
afp.dir_attribute.in_exported_folder Shared area
Boolean
Directory is in a shared area
afp.dir_attribute.invisible Invisible
Boolean
Directory is not visible
afp.dir_attribute.mounted Mounted
Boolean
Directory is mounted
afp.dir_attribute.rename_inhibit Rename inhibit
Boolean
Rename inhibit
afp.dir_attribute.set_clear Set
Boolean
Clear/set attribute
afp.dir_attribute.share Share point
Boolean
Directory is a share point
afp.dir_attribute.system System
Boolean
Directory is a system directory
afp.dir_bitmap Directory bitmap
Unsigned 16-bit integer
Directory bitmap
afp.dir_bitmap.UTF8_name UTF-8 name
Boolean
Return UTF-8 name if 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
Extendend 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
Apple IP-over-IEEE 1394 (ap1394)
ap1394.dst Destination
Byte array
Destination address
ap1394.src Source
Byte array
Source address
ap1394.type Type
Unsigned 16-bit integer
AppleTalk Session Protocol (asp)
asp.attn_code Attn code
Unsigned 16-bit integer
asp attention code
asp.error asp error
Signed 32-bit integer
return error code
asp.function asp function
Unsigned 8-bit integer
asp function
asp.init_error Error
Unsigned 16-bit integer
asp init error
asp.seq Sequence
Unsigned 16-bit integer
asp sequence number
asp.server_addr.len Length
Unsigned 8-bit integer
Address length.
asp.server_addr.type Type
Unsigned 8-bit integer
Address type.
asp.server_addr.value Value
Byte array
Address value
asp.server_directory Directory service
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
AppleTalk Transaction Protocol packet (atp)
atp.bitmap Bitmap
Unsigned 8-bit integer
Bitmap or sequence number
atp.ctrlinfo Control info
Unsigned 8-bit integer
control info
atp.eom EOM
Boolean
End-of-message
atp.fragment ATP Fragment
Frame number
ATP Fragment
atp.fragments ATP Fragments
No value
ATP Fragments
atp.function Function
Unsigned 8-bit integer
function code
atp.reassembled_in Reassembled ATP in frame
Frame number
This ATP packet is reassembled in this frame
atp.segment.error Desegmentation error
Frame number
Desegmentation error due to illegal segments
atp.segment.multipletails Multiple tail segments found
Boolean
Several tails were found when desegmenting the packet
atp.segment.overlap Segment overlap
Boolean
Segment overlaps with other segments
atp.segment.overlap.conflict Conflicting data in segment overlap
Boolean
Overlapping segments contained conflicting data
atp.segment.toolongsegment Segment too long
Boolean
Segment contained data past end of packet
atp.sts STS
Boolean
Send transaction status
atp.tid TID
Unsigned 16-bit integer
Transaction id
atp.treltimer TRel timer
Unsigned 8-bit integer
TRel timer
atp.user_bytes User bytes
Unsigned 32-bit integer
User bytes
atp.xo XO
Boolean
Exactly-once flag
Appletalk Address Resolution Protocol (aarp)
aarp.dst.hw Target hardware address
Byte array
aarp.dst.hw_mac Target MAC address
6-byte Hardware (MAC) Address
aarp.dst.proto Target protocol address
Byte array
aarp.dst.proto_id Target ID
Byte array
aarp.hard.size Hardware size
Unsigned 8-bit integer
aarp.hard.type Hardware type
Unsigned 16-bit integer
aarp.opcode Opcode
Unsigned 16-bit integer
aarp.proto.size Protocol size
Unsigned 8-bit integer
aarp.proto.type Protocol type
Unsigned 16-bit integer
aarp.src.hw Sender hardware address
Byte array
aarp.src.hw_mac Sender MAC address
6-byte Hardware (MAC) Address
aarp.src.proto Sender protocol address
Byte array
aarp.src.proto_id Sender ID
Byte array
Application Configuration Access Protocol (acap)
acap.request Request
Boolean
TRUE if ACAP request
acap.response Response
Boolean
TRUE if ACAP response
Aruba - Aruba Discovery Protocol (adp)
adp.id Transaction ID
Unsigned 16-bit integer
ADP transaction ID
adp.mac MAC address
6-byte Hardware (MAC) Address
MAC address
adp.switch Switch IP
IPv4 address
Switch IP address
adp.type Type
Unsigned 16-bit integer
ADP type
adp.version Version
Unsigned 16-bit integer
ADP version
Async data over ISDN (V.120) (v120)
v120.address Link Address
Unsigned 16-bit integer
v120.control Control Field
Unsigned 16-bit integer
v120.control.f Final
Boolean
v120.control.ftype Frame type
Unsigned 16-bit integer
v120.control.n_r N(R)
Unsigned 16-bit integer
v120.control.n_s N(S)
Unsigned 16-bit integer
v120.control.p Poll
Boolean
v120.control.s_ftype Supervisory frame type
Unsigned 16-bit integer
v120.control.u_modifier_cmd Command
Unsigned 8-bit integer
v120.control.u_modifier_resp Response
Unsigned 8-bit integer
v120.header Header Field
String
Asynchronous Layered Coding (alc)
alc.fec Forward Error Correction (FEC) header
No value
alc.fec.encoding_id FEC Encoding ID
Unsigned 8-bit integer
alc.fec.esi Encoding Symbol ID
Unsigned 32-bit integer
alc.fec.fti FEC Object Transmission Information
No value
alc.fec.fti.encoding_symbol_length Encoding Symbol Length
Unsigned 32-bit integer
alc.fec.fti.max_number_encoding_symbols Maximum Number of Encoding Symbols
Unsigned 32-bit integer
alc.fec.fti.max_source_block_length Maximum Source Block Length
Unsigned 32-bit integer
alc.fec.fti.transfer_length Transfer Length
Unsigned 64-bit integer
alc.fec.instance_id FEC Instance ID
Unsigned 8-bit integer
alc.fec.sbl Source Block Length
Unsigned 32-bit integer
alc.fec.sbn Source Block Number
Unsigned 32-bit integer
alc.lct Layered Coding Transport (LCT) header
No value
alc.lct.cci Congestion Control Information
Byte array
alc.lct.codepoint Codepoint
Unsigned 8-bit integer
alc.lct.ert Expected Residual Time
Time duration
alc.lct.ext Extension count
Unsigned 8-bit integer
alc.lct.flags Flags
No value
alc.lct.flags.close_object Close Object flag
Boolean
alc.lct.flags.close_session Close Session flag
Boolean
alc.lct.flags.ert_present Expected Residual Time present flag
Boolean
alc.lct.flags.sct_present Sender Current Time present flag
Boolean
alc.lct.fsize Field sizes (bytes)
No value
alc.lct.fsize.cci Congestion Control Information field size
Unsigned 8-bit integer
alc.lct.fsize.toi Transport Object Identifier field size
Unsigned 8-bit integer
alc.lct.fsize.tsi Transport Session Identifier field size
Unsigned 8-bit integer
alc.lct.hlen Header length
Unsigned 16-bit integer
alc.lct.sct Sender Current Time
Time duration
alc.lct.toi Transport Object Identifier (up to 64 bites)
Unsigned 64-bit integer
alc.lct.toi_extended Transport Object Identifier (up to 112 bits)
Byte array
alc.lct.tsi Transport Session Identifier
Unsigned 64-bit integer
alc.lct.version Version
Unsigned 8-bit integer
alc.payload Payload
No value
alc.version Version
Unsigned 8-bit integer
AudioCodes Trunk Trace (actrace)
actrace.cas.bchannel BChannel
Signed 32-bit integer
BChannel
actrace.cas.conn_id Connection ID
Signed 32-bit integer
Connection ID
actrace.cas.curr_state Current State
Signed 32-bit integer
Current State
actrace.cas.event Event
Signed 32-bit integer
New Event
actrace.cas.function Function
Signed 32-bit integer
Function
actrace.cas.next_state Next State
Signed 32-bit integer
Next State
actrace.cas.par0 Parameter 0
Signed 32-bit integer
Parameter 0
actrace.cas.par1 Parameter 1
Signed 32-bit integer
Parameter 1
actrace.cas.par2 Parameter 2
Signed 32-bit integer
Parameter 2
actrace.cas.source Source
Signed 32-bit integer
Source
actrace.cas.time Time
Signed 32-bit integer
Capture Time
actrace.cas.trunk Trunk Number
Signed 32-bit integer
Trunk Number
actrace.isdn.dir Direction
Signed 32-bit integer
Direction
actrace.isdn.length Length
Signed 16-bit integer
Length
actrace.isdn.trunk Trunk Number
Signed 16-bit integer
Trunk Number
Authentication Header (ah)
ah.sequence Sequence
Unsigned 32-bit integer
ah.spi SPI
Unsigned 32-bit integer
BACnet Virtual Link Control (bvlc)
bvlc.bdt_ip IP
IPv4 address
BDT IP
bvlc.bdt_mask Mask
Byte array
BDT Broadcast Distribution Mask
bvlc.bdt_port Port
Unsigned 16-bit integer
BDT Port
bvlc.fdt_ip IP
IPv4 address
FDT IP
bvlc.fdt_port Port
Unsigned 16-bit integer
FDT Port
bvlc.fdt_timeout Timeout
Unsigned 16-bit integer
Foreign Device Timeout (seconds)
bvlc.fdt_ttl TTL
Unsigned 16-bit integer
Foreign Device Time To Live
bvlc.function Function
Unsigned 8-bit integer
BVLC Function
bvlc.fwd_ip IP
IPv4 address
FWD IP
bvlc.fwd_port Port
Unsigned 16-bit integer
FWD Port
bvlc.length BVLC-Length
Unsigned 16-bit integer
Length of BVLC
bvlc.reg_ttl TTL
Unsigned 16-bit integer
Foreign Device Time To Live
bvlc.result Result
Unsigned 16-bit integer
Result Code
bvlc.type Type
Unsigned 8-bit integer
Type
BEA Tuxedo (tuxedo)
tuxedo.magic Magic
Unsigned 32-bit integer
TUXEDO magic
tuxedo.opcode Opcode
Unsigned 32-bit integer
TUXEDO opcode
BSSAP/BSAP (bssap)
bsap.dlci.cc Control Channel
Unsigned 8-bit integer
bsap.dlci.rsvd Reserved
Unsigned 8-bit integer
bsap.dlci.sapi SAPI
Unsigned 8-bit integer
bsap.pdu_type Message Type
Unsigned 8-bit integer
bssap.Gs_cause_ie Gs Cause IE
No value
Gs Cause IE
bssap.Tom_prot_disc TOM Protocol Discriminator
Unsigned 8-bit integer
TOM Protocol Discriminator
bssap.cell_global_id_ie Cell global identity IE
No value
Cell global identity IE
bssap.cn_id CN-Id
Unsigned 16-bit integer
CN-Id
bssap.dlci.cc Control Channel
Unsigned 8-bit integer
bssap.dlci.sapi SAPI
Unsigned 8-bit integer
bssap.dlci.spare Spare
Unsigned 8-bit integer
bssap.dlink_tnl_pld_cntrl_amd_inf_ie Downlink Tunnel Payload Control and Info IE
No value
Downlink Tunnel Payload Control and Info IE
bssap.emlpp_prio_ie eMLPP Priority IE
No value
eMLPP Priority IE
bssap.erroneous_msg_ie Erroneous message IE
No value
Erroneous message IE
bssap.extension Extension
Boolean
Extension
bssap.global_cn_id Global CN-Id
Byte array
Global CN-Id
bssap.global_cn_id_ie Global CN-Id IE
No value
Global CN-Id IE
bssap.gprs_loc_upd_type eMLPP Priority
Unsigned 8-bit integer
eMLPP Priority
bssap.ie_data IE Data
Byte array
IE Data
bssap.imei IMEI
String
IMEI
bssap.imei_ie IMEI IE
No value
IMEI IE
bssap.imeisv IMEISV
String
IMEISV
bssap.imesiv IMEISV IE
No value
IMEISV IE
bssap.imsi IMSI
String
IMSI
bssap.imsi_det_from_gprs_serv_type IMSI detach from GPRS service type
Unsigned 8-bit integer
IMSI detach from GPRS service type
bssap.imsi_ie IMSI IE
No value
IMSI IE
bssap.info_req Information requested
Unsigned 8-bit integer
Information requested
bssap.info_req_ie Information requested IE
No value
Information requested IE
bssap.length Length
Unsigned 8-bit integer
bssap.loc_area_id_ie Location area identifier IE
No value
Location area identifier IE
bssap.loc_inf_age Location information age IE
No value
Location information age IE
bssap.loc_upd_type_ie GPRS location update type IE
No value
GPRS location update type IE
bssap.mm_information MM information IE
No value
MM information IE
bssap.mobile_id_ie Mobile identity IE
No value
Mobile identity IE
bssap.mobile_station_state Mobile station state
Unsigned 8-bit integer
Mobile station state
bssap.mobile_station_state_ie Mobile station state IE
No value
Mobile station state IE
bssap.mobile_stn_cls_mrk1_ie Mobile station classmark 1 IE
No value
Mobile station classmark 1 IE
bssap.msi_det_from_gprs_serv_type_ie IMSI detach from GPRS service type IE
No value
IMSI detach from GPRS service type IE
bssap.msi_det_from_non_gprs_serv_type_ie IMSI detach from non-GPRS servic IE
No value
IMSI detach from non-GPRS servic IE
bssap.number_plan Numbering plan identification
Unsigned 8-bit integer
Numbering plan identification
bssap.pdu_type Message Type
Unsigned 8-bit integer
bssap.plmn_id PLMN-Id
Byte array
PLMN-Id
bssap.ptmsi PTMSI
Byte array
PTMSI
bssap.ptmsi_ie PTMSI IE
No value
PTMSI IE
bssap.reject_cause_ie Reject cause IE
No value
Reject cause IE
bssap.sgsn_number SGSN number
String
SGSN number
bssap.tmsi TMSI
Byte array
TMSI
bssap.tmsi_ie TMSI IE
No value
TMSI IE
bssap.tmsi_status TMSI status
Boolean
TMSI status
bssap.tmsi_status_ie TMSI status IE
No value
TMSI status IE
bssap.tunnel_prio Tunnel Priority
Unsigned 8-bit integer
Tunnel Priority
bssap.type_of_number Type of number
Unsigned 8-bit integer
Type of number
bssap.ulink_tnl_pld_cntrl_amd_inf_ie Uplink Tunnel Payload Control and Info IE
No value
Uplink Tunnel Payload Control and Info IE
bssap.vlr_number VLR number
String
VLR number
bssap.vlr_number_ie VLR number IE
No value
VLR number IE
bssap_plus.iei IEI
Unsigned 8-bit integer
bssap_plus.msg_type Message Type
Unsigned 8-bit integer
Message Type
Banyan Vines ARP (vines_arp)
Banyan Vines Echo (vines_echo)
Banyan Vines Fragmentation Protocol (vines_frp)
Banyan Vines ICP (vines_icp)
Banyan Vines IP (vines_ip)
vines_ip.protocol Protocol
Unsigned 8-bit integer
Vines protocol
Banyan Vines IPC (vines_ipc)
Banyan Vines LLC (vines_llc)
Banyan Vines RTP (vines_rtp)
Banyan Vines SPP (vines_spp)
Base Station Subsystem GPRS Protocol (bssgp)
bssgp.bvci BVCI
Unsigned 16-bit integer
bssgp.ci CI
Unsigned 16-bit integer
Cell Identity
bssgp.ie_type IE Type
Unsigned 8-bit integer
Information element type
bssgp.imei IMEI
String
bssgp.imeisv IMEISV
String
bssgp.imsi IMSI
String
bssgp.lac LAC
Unsigned 16-bit integer
bssgp.mcc MCC
Unsigned 8-bit integer
bssgp.mnc MNC
Unsigned 8-bit integer
bssgp.nri NRI
Unsigned 16-bit integer
bssgp.nsei NSEI
Unsigned 16-bit integer
bssgp.pdu_type PDU Type
Unsigned 8-bit integer
bssgp.rac RAC
Unsigned 8-bit integer
bssgp.tlli TLLI
Unsigned 32-bit integer
bssgp.tmsi_ptmsi TMSI/PTMSI
Unsigned 32-bit integer
Basic Encoding Rules (ASN.1 X.690) (ber)
ber.bitstring.padding Padding
Unsigned 8-bit integer
Number of unsused bits in the last octet of the bitstring
ber.id.class Class
Unsigned 8-bit integer
Class of BER TLV Identifier
ber.id.pc P/C
Boolean
Primitive or Constructed BER encoding
ber.id.tag Tag
Unsigned 8-bit integer
Tag value for non-Universal classes
ber.id.uni_tag Tag
Unsigned 8-bit integer
Universal tag type
ber.length Length
Unsigned 32-bit integer
Length of contents
ber.unknown.BITSTRING BITSTRING
Byte array
This is an unknown BITSTRING
ber.unknown.BOOLEAN BOOLEAN
Unsigned 8-bit integer
This is an unknown BOOLEAN
ber.unknown.ENUMERATED ENUMERATED
Unsigned 32-bit integer
This is an unknown ENUMERATED
ber.unknown.GRAPHICSTRING GRAPHICSTRING
String
This is an unknown GRAPHICSTRING
ber.unknown.GeneralizedTime GeneralizedTime
String
This is an unknown GeneralizedTime
ber.unknown.IA5String IA5String
String
This is an unknown IA5String
ber.unknown.INTEGER INTEGER
Unsigned 32-bit integer
This is an unknown INTEGER
ber.unknown.NumericString NumericString
String
This is an unknown NumericString
ber.unknown.OCTETSTRING OCTETSTRING
Byte array
This is an unknown OCTETSTRING
ber.unknown.OID OID
String
This is an unknown Object Identifier
ber.unknown.PrintableString PrintableString
String
This is an unknown PrintableString
ber.unknown.TeletexString TeletexString
String
This is an unknown TeletexString
ber.unknown.UTCTime UTCTime
String
This is an unknown UTCTime
ber.unknown.UTF8String UTF8String
String
This is an unknown UTF8String
Bearer Independent Call Control (bicc)
bicc.cic Call identification Code (CIC)
Unsigned 32-bit integer
Bi-directional Fault Detection Control Message (bfdcontrol)
bfd.desired_min_tx_interval Desired Min TX Interval
Unsigned 32-bit integer
bfd.detect_time_multiplier Detect Time Multiplier
Unsigned 8-bit integer
bfd.diag Diagnostic Code
Unsigned 8-bit integer
bfd.flags Message Flags
Unsigned 8-bit integer
bfd.flags.a Authentication Present
Boolean
bfd.flags.c Control Plane Independent
Boolean
bfd.flags.d Demand
Boolean
bfd.flags.f Final
Boolean
bfd.flags.h I hear you
Boolean
bfd.flags.p Poll
Boolean
bfd.my_discriminator My Discriminator
Unsigned 32-bit integer
bfd.required_min_echo_interval Required Min Echo Interval
Unsigned 32-bit integer
bfd.required_min_rx_interval Required Min RX Interval
Unsigned 32-bit integer
bfd.sta Session State
Unsigned 8-bit integer
bfd.version Protocol Version
Unsigned 8-bit integer
bfd.your_discriminator Your Discriminator
Unsigned 32-bit integer
BitTorrent (bittorrent)
bittorrent.azureus_msg Azureus Message
No value
bittorrent.bdict Dictionary
No value
bittorrent.bdict.entry Entry
No value
bittorrent.bint Integer
Signed 32-bit integer
bittorrent.blist List
No value
bittorrent.bstr String
String
bittorrent.bstr.length String Length
Unsigned 32-bit integer
bittorrent.info_hash SHA1 Hash of info dictionary
Byte array
bittorrent.jpc.addr Cache Address
String
bittorrent.jpc.addr.length Cache Address Length
Unsigned 32-bit integer
bittorrent.jpc.port Port
Unsigned 32-bit integer
bittorrent.jpc.session Session ID
Unsigned 32-bit integer
bittorrent.length Field Length
Unsigned 32-bit integer
bittorrent.msg Message
No value
bittorrent.msg.aztype Message Type
String
bittorrent.msg.bitfield Bitfield data
Byte array
bittorrent.msg.length Message Length
Unsigned 32-bit integer
bittorrent.msg.prio Message Priority
Unsigned 8-bit integer
bittorrent.msg.type Message Type
Unsigned 8-bit integer
bittorrent.msg.typelen Message Type Length
Unsigned 32-bit integer
bittorrent.peer_id Peer ID
Byte array
bittorrent.piece.begin Begin offset of piece
Unsigned 32-bit integer
bittorrent.piece.data Data in a piece
Byte array
bittorrent.piece.index Piece index
Unsigned 32-bit integer
bittorrent.piece.length Piece Length
Unsigned 32-bit integer
bittorrent.protocol.name Protocol Name
String
bittorrent.protocol.name.length Protocol Name Length
Unsigned 8-bit integer
bittorrent.reserved Reserved Extension Bytes
Byte array
Blocks Extensible Exchange Protocol (beep)
beep.ansno Ansno
Unsigned 32-bit integer
beep.channel Channel
Unsigned 32-bit integer
beep.end End
Boolean
beep.more.complete Complete
Boolean
beep.more.intermediate Intermediate
Boolean
beep.msgno Msgno
Unsigned 32-bit integer
beep.req Request
Boolean
beep.req.channel Request Channel Number
Unsigned 32-bit integer
beep.rsp Response
Boolean
beep.rsp.channel Response Channel Number
Unsigned 32-bit integer
beep.seq Sequence
Boolean
beep.seq.ackno Ackno
Unsigned 32-bit integer
beep.seq.channel Sequence Channel Number
Unsigned 32-bit integer
beep.seq.window Window
Unsigned 32-bit integer
beep.seqno Seqno
Unsigned 32-bit integer
beep.size Size
Unsigned 32-bit integer
beep.status.negative Negative
Boolean
beep.status.positive Positive
Boolean
beep.violation Protocol Violation
Boolean
Blubster/Piolet MANOLITO Protocol (manolito)
manolito.checksum Checksum
Unsigned 32-bit integer
Checksum used for verifying integrity
manolito.dest Destination IP Address
IPv4 address
Destination IPv4 address
manolito.options Options
Unsigned 32-bit integer
Packet-dependent data
manolito.seqno Sequence Number
Unsigned 32-bit integer
Incremental sequence number
manolito.src Forwarded IP Address
IPv4 address
Host packet was forwarded from (or 0)
Boardwalk (brdwlk)
brdwlk.drop Packet Dropped
Boolean
brdwlk.eof EOF
Unsigned 8-bit integer
EOF
brdwlk.error Error
Unsigned 8-bit integer
Error
brdwlk.error.crc CRC
Boolean
brdwlk.error.ctrl Ctrl Char Inside Frame
Boolean
brdwlk.error.ef Empty Frame
Boolean
brdwlk.error.ff Fifo Full
Boolean
brdwlk.error.jumbo Jumbo FC Frame
Boolean
brdwlk.error.nd No Data
Boolean
brdwlk.error.plp Packet Length Present
Boolean
brdwlk.error.tr Truncated
Boolean
brdwlk.pktcnt Packet Count
Unsigned 16-bit integer
brdwlk.plen Original Packet Length
Unsigned 32-bit integer
brdwlk.sof SOF
Unsigned 8-bit integer
SOF
brdwlk.vsan VSAN
Unsigned 16-bit integer
Boot Parameters (bootparams)
bootparams.domain Client Domain
String
Client Domain
bootparams.fileid File ID
String
File ID
bootparams.filepath File Path
String
File Path
bootparams.host Client Host
String
Client Host
bootparams.hostaddr Client Address
IPv4 address
Address
bootparams.procedure_v1 V1 Procedure
Unsigned 32-bit integer
V1 Procedure
bootparams.routeraddr Router Address
IPv4 address
Router Address
bootparams.type Address Type
Unsigned 32-bit integer
Address Type
Bootstrap Protocol (bootp)
bootp.client_id_uuid Client Identifier (UUID)
Client Machine Identifier (UUID)
bootp.client_network_id_major Client Network ID Major Version
Unsigned 8-bit integer
Client Machine Identifier, Major Version
bootp.client_network_id_minor Client Network ID Minor Version
Unsigned 8-bit integer
Client Machine Identifier, Major Version
bootp.cookie Magic cookie
IPv4 address
bootp.dhcp Frame is DHCP
Boolean
bootp.file Boot file name
String
bootp.flags Bootp flags
Unsigned 16-bit integer
bootp.flags.bc Broadcast flag
Boolean
bootp.flags.reserved Reserved flags
Unsigned 16-bit integer
bootp.fqdn.e Encoding
Boolean
If true, name is binary encoded
bootp.fqdn.mbz Reserved flags
Unsigned 8-bit integer
bootp.fqdn.n Server DDNS
Boolean
If true, server should not do any DDNS updates
bootp.fqdn.name Client name
Byte array
Name to register via DDNS
bootp.fqdn.o Server overrides
Boolean
If true, server insists on doing DDNS update
bootp.fqdn.rcode1 A-RR result
Unsigned 8-bit integer
Result code of A-RR update
bootp.fqdn.rcode2 PTR-RR result
Unsigned 8-bit integer
Result code of PTR-RR update
bootp.fqdn.s Server
Boolean
If true, server should do DDNS update
bootp.hops Hops
Unsigned 8-bit integer
bootp.hw.addr Client hardware address
Byte array
bootp.hw.len Hardware address length
Unsigned 8-bit integer
bootp.hw.mac_addr Client MAC address
6-byte Hardware (MAC) Address
bootp.hw.type Hardware type
Unsigned 8-bit integer
bootp.id Transaction ID
Unsigned 32-bit integer
bootp.ip.client Client IP address
IPv4 address
bootp.ip.relay Relay agent IP address
IPv4 address
bootp.ip.server Next server IP address
IPv4 address
bootp.ip.your Your (client) IP address
IPv4 address
bootp.secs Seconds elapsed
Unsigned 16-bit integer
bootp.server Server host name
String
bootp.type Message type
Unsigned 8-bit integer
bootp.vendor Bootp Vendor Options
Byte array
bootp.vendor.alcatel.vid Voice VLAN ID
Unsigned 16-bit integer
Alcatel VLAN ID to define Voice VLAN
bootp.vendor.docsis.cmcap_len CM DC Length
Unsigned 8-bit integer
DOCSIS Cable Modem Device Capabilities Length
bootp.vendor.pktc.mtacap_len MTA DC Length
Unsigned 8-bit integer
PacketCable MTA Device Capabilities Length
Border Gateway Protocol (bgp)
bgp.aggregator_as Aggregator AS
Unsigned 16-bit integer
bgp.aggregator_origin Aggregator origin
IPv4 address
bgp.as_path AS Path
Unsigned 16-bit integer
bgp.cluster_identifier Cluster identifier
IPv4 address
bgp.cluster_list Cluster List
Byte array
bgp.community_as Community AS
Unsigned 16-bit integer
bgp.community_value Community value
Unsigned 16-bit integer
bgp.local_pref Local preference
Unsigned 32-bit integer
bgp.mp_nlri_tnl_id MP Reach NLRI Tunnel Identifier
Unsigned 16-bit integer
bgp.mp_reach_nlri_ipv4_prefix MP Reach NLRI IPv4 prefix
IPv4 address
bgp.mp_unreach_nlri_ipv4_prefix MP Unreach NLRI IPv4 prefix
IPv4 address
bgp.multi_exit_disc Multiple exit discriminator
Unsigned 32-bit integer
bgp.next_hop Next hop
IPv4 address
bgp.nlri_prefix NLRI prefix
IPv4 address
bgp.origin Origin
Unsigned 8-bit integer
bgp.originator_id Originator identifier
IPv4 address
bgp.ssa_l2tpv3_Unused Unused
Boolean
Unused Flags
bgp.ssa_l2tpv3_cookie Cookie
Byte array
Cookie
bgp.ssa_l2tpv3_cookie_len Cookie Length
Unsigned 8-bit integer
Cookie Length
bgp.ssa_l2tpv3_pref Preference
Unsigned 16-bit integer
Preference
bgp.ssa_l2tpv3_s Sequencing bit
Boolean
Sequencing S-bit
bgp.ssa_l2tpv3_session_id Session ID
Unsigned 32-bit integer
Session ID
bgp.ssa_len Length
Unsigned 16-bit integer
SSA Length
bgp.ssa_t Transitive bit
Boolean
SSA Transitive bit
bgp.ssa_type SSA Type
Unsigned 16-bit integer
SSA Type
bgp.ssa_value Value
Byte array
SSA Value
bgp.type Type
Unsigned 8-bit integer
BGP message type
bgp.withdrawn_prefix Withdrawn prefix
IPv4 address
Building Automation and Control Network APDU (bacapp)
bacapp.LVT Length Value Type
Unsigned 8-bit integer
Length Value Type
bacapp.NAK NAK
Boolean
negativ ACK
bacapp.SA SA
Boolean
Segmented Response accepted
bacapp.SRV SRV
Boolean
Server
bacapp.abort_reason Abort Reason
Unsigned 8-bit integer
Abort Reason
bacapp.application_tag_number Application Tag Number
Unsigned 8-bit integer
Application Tag Number
bacapp.confirmed_service Service Choice
Unsigned 8-bit integer
Service Choice
bacapp.context_tag_number Context Tag Number
Unsigned 8-bit integer
Context Tag Number
bacapp.extended_tag_number Extended Tag Number
Unsigned 8-bit integer
Extended Tag Number
bacapp.instance_number Instance Number
Unsigned 32-bit integer
Instance Number
bacapp.invoke_id Invoke ID
Unsigned 8-bit integer
Invoke ID
bacapp.max_adpu_size Size of Maximum ADPU accepted
Unsigned 8-bit integer
Size of Maximum ADPU accepted
bacapp.more_segments More Segments
Boolean
More Segments Follow
bacapp.named_tag Named Tag
Unsigned 8-bit integer
Named Tag
bacapp.objectType Object Type
Unsigned 32-bit integer
Object Type
bacapp.pduflags PDU Flags
Unsigned 8-bit integer
PDU Flags
bacapp.processId ProcessIdentifier
Unsigned 32-bit integer
Process Identifier
bacapp.reject_reason Reject Reason
Unsigned 8-bit integer
Reject Reason
bacapp.response_segments Max Response Segments accepted
Unsigned 8-bit integer
Max Response Segments accepted
bacapp.segmented_request Segmented Request
Boolean
Segmented Request
bacapp.sequence_number Sequence Number
Unsigned 8-bit integer
Sequence Number
bacapp.string_character_set String Character Set
Unsigned 8-bit integer
String Character Set
bacapp.tag BACnet Tag
Byte array
BACnet Tag
bacapp.tag_class Tag Class
Boolean
Tag Class
bacapp.tag_value16 Tag Value 16-bit
Unsigned 16-bit integer
Tag Value 16-bit
bacapp.tag_value32 Tag Value 32-bit
Unsigned 32-bit integer
Tag Value 32-bit
bacapp.tag_value8 Tag Value
Unsigned 8-bit integer
Tag Value
bacapp.type APDU Type
Unsigned 8-bit integer
APDU Type
bacapp.unconfirmed_service Unconfirmed Service Choice
Unsigned 8-bit integer
Unconfirmed Service Choice
bacapp.variable_part BACnet APDU variable part:
No value
BACnet APDU variable part
bacapp.window_size Proposed Window Size
Unsigned 8-bit integer
Proposed Window Size
Building Automation and Control Network NPDU (bacnet)
bacnet.control Control
Unsigned 8-bit integer
BACnet Control
bacnet.control_dest Destination Specifier
Boolean
BACnet Control
bacnet.control_expect Expecting Reply
Boolean
BACnet Control
bacnet.control_net NSDU contains
Boolean
BACnet Control
bacnet.control_prio_high Priority
Boolean
BACnet Control
bacnet.control_prio_low Priority
Boolean
BACnet Control
bacnet.control_res1 Reserved
Boolean
BACnet Control
bacnet.control_res2 Reserved
Boolean
BACnet Control
bacnet.control_src Source specifier
Boolean
BACnet Control
bacnet.dadr_eth Destination ISO 8802-3 MAC Address
6-byte Hardware (MAC) Address
Destination ISO 8802-3 MAC Address
bacnet.dadr_mstp DADR
Unsigned 8-bit integer
Destination MS/TP or ARCNET MAC Address
bacnet.dadr_tmp Unknown Destination MAC
Byte array
Unknown Destination MAC
bacnet.dlen Destination MAC Layer Address Length
Unsigned 8-bit integer
Destination MAC Layer Address Length
bacnet.dnet Destination Network Address
Unsigned 16-bit integer
Destination Network Address
bacnet.hopc Hop Count
Unsigned 8-bit integer
Hop Count
bacnet.mesgtyp Network Layer Message Type
Unsigned 8-bit integer
Network Layer Message Type
bacnet.perf Performance Index
Unsigned 8-bit integer
Performance Index
bacnet.pinfo Port Info
Unsigned 8-bit integer
Port Info
bacnet.pinfolen Port Info Length
Unsigned 8-bit integer
Port Info Length
bacnet.portid Port ID
Unsigned 8-bit integer
Port ID
bacnet.rejectreason Reject Reason
Unsigned 8-bit integer
Reject Reason
bacnet.rportnum Number of Port Mappings
Unsigned 8-bit integer
Number of Port Mappings
bacnet.sadr_eth SADR
6-byte Hardware (MAC) Address
Source ISO 8802-3 MAC Address
bacnet.sadr_mstp SADR
Unsigned 8-bit integer
Source MS/TP or ARCNET MAC Address
bacnet.sadr_tmp Unknown Source MAC
Byte array
Unknown Source MAC
bacnet.slen Source MAC Layer Address Length
Unsigned 8-bit integer
Source MAC Layer Address Length
bacnet.snet Source Network Address
Unsigned 16-bit integer
Source Network Address
bacnet.vendor Vendor ID
Unsigned 16-bit integer
Vendor ID
bacnet.version Version
Unsigned 8-bit integer
BACnet Version
CBAPhysicalDevice (cba_pdev_class)
CCSDS (ccsds)
ccsds.apid APID
Unsigned 16-bit integer
Represents APID
ccsds.checkword checkword indicator
Unsigned 8-bit integer
checkword indicator
ccsds.dcc Data Cycle Counter
Unsigned 16-bit integer
Data Cycle Counter
ccsds.length packet length
Unsigned 16-bit integer
packet length
ccsds.packtype packet type
Unsigned 8-bit integer
Packet Type - Unused in Ku-Band
ccsds.secheader secondary header
Boolean
secondary header present
ccsds.seqflag sequence flags
Unsigned 16-bit integer
sequence flags
ccsds.seqnum sequence number
Unsigned 16-bit integer
sequence number
ccsds.time time
Byte array
time
ccsds.timeid time identifier
Unsigned 8-bit integer
time identifier
ccsds.type type
Unsigned 16-bit integer
type
ccsds.version version
Unsigned 16-bit integer
version
ccsds.vid version identifier
Unsigned 16-bit integer
version identifier
ccsds.zoe ZOE TLM
Unsigned 8-bit integer
CONTAINS S-BAND ZOE PACKETS
CDS Clerk Server Calls (cds_clerkserver)
cds_clerkserver.opnum Operation
Unsigned 16-bit integer
Operation
CSM_ENCAPS (csm_encaps)
csm_encaps.channel Channel Number
Unsigned 16-bit integer
CSM_ENCAPS Channel Number
csm_encaps.class Class
Unsigned 8-bit integer
CSM_ENCAPS Class
csm_encaps.ctrl Control
Unsigned 8-bit integer
CSM_ENCAPS Control
csm_encaps.ctrl.ack Packet Bit
Boolean
Message Packet/ACK Packet
csm_encaps.ctrl.ack_suppress ACK Suppress Bit
Boolean
ACK Required/ACK Suppressed
csm_encaps.ctrl.endian Endian Bit
Boolean
Little Endian/Big Endian
csm_encaps.function_code Function Code
Unsigned 16-bit integer
CSM_ENCAPS Function Code
csm_encaps.index Index
Unsigned 8-bit integer
CSM_ENCAPS Index
csm_encaps.length Length
Unsigned 8-bit integer
CSM_ENCAPS Length
csm_encaps.opcode Opcode
Unsigned 16-bit integer
CSM_ENCAPS Opcode
csm_encaps.param Parameter
Unsigned 16-bit integer
CSM_ENCAPS Parameter
csm_encaps.param1 Parameter 1
Unsigned 16-bit integer
CSM_ENCAPS Parameter 1
csm_encaps.param10 Parameter 10
Unsigned 16-bit integer
CSM_ENCAPS Parameter 10
csm_encaps.param11 Parameter 11
Unsigned 16-bit integer
CSM_ENCAPS Parameter 11
csm_encaps.param12 Parameter 12
Unsigned 16-bit integer
CSM_ENCAPS Parameter 12
csm_encaps.param13 Parameter 13
Unsigned 16-bit integer
CSM_ENCAPS Parameter 13
csm_encaps.param14 Parameter 14
Unsigned 16-bit integer
CSM_ENCAPS Parameter 14
csm_encaps.param15 Parameter 15
Unsigned 16-bit integer
CSM_ENCAPS Parameter 15
csm_encaps.param16 Parameter 16
Unsigned 16-bit integer
CSM_ENCAPS Parameter 16
csm_encaps.param17 Parameter 17
Unsigned 16-bit integer
CSM_ENCAPS Parameter 17
csm_encaps.param18 Parameter 18
Unsigned 16-bit integer
CSM_ENCAPS Parameter 18
csm_encaps.param19 Parameter 19
Unsigned 16-bit integer
CSM_ENCAPS Parameter 19
csm_encaps.param2 Parameter 2
Unsigned 16-bit integer
CSM_ENCAPS Parameter 2
csm_encaps.param20 Parameter 20
Unsigned 16-bit integer
CSM_ENCAPS Parameter 20
csm_encaps.param21 Parameter 21
Unsigned 16-bit integer
CSM_ENCAPS Parameter 21
csm_encaps.param22 Parameter 22
Unsigned 16-bit integer
CSM_ENCAPS Parameter 22
csm_encaps.param23 Parameter 23
Unsigned 16-bit integer
CSM_ENCAPS Parameter 23
csm_encaps.param24 Parameter 24
Unsigned 16-bit integer
CSM_ENCAPS Parameter 24
csm_encaps.param25 Parameter 25
Unsigned 16-bit integer
CSM_ENCAPS Parameter 25
csm_encaps.param26 Parameter 26
Unsigned 16-bit integer
CSM_ENCAPS Parameter 26
csm_encaps.param27 Parameter 27
Unsigned 16-bit integer
CSM_ENCAPS Parameter 27
csm_encaps.param28 Parameter 28
Unsigned 16-bit integer
CSM_ENCAPS Parameter 28
csm_encaps.param29 Parameter 29
Unsigned 16-bit integer
CSM_ENCAPS Parameter 29
csm_encaps.param3 Parameter 3
Unsigned 16-bit integer
CSM_ENCAPS Parameter 3
csm_encaps.param30 Parameter 30
Unsigned 16-bit integer
CSM_ENCAPS Parameter 30
csm_encaps.param31 Parameter 31
Unsigned 16-bit integer
CSM_ENCAPS Parameter 31
csm_encaps.param32 Parameter 32
Unsigned 16-bit integer
CSM_ENCAPS Parameter 32
csm_encaps.param33 Parameter 33
Unsigned 16-bit integer
CSM_ENCAPS Parameter 33
csm_encaps.param34 Parameter 34
Unsigned 16-bit integer
CSM_ENCAPS Parameter 34
csm_encaps.param35 Parameter 35
Unsigned 16-bit integer
CSM_ENCAPS Parameter 35
csm_encaps.param36 Parameter 36
Unsigned 16-bit integer
CSM_ENCAPS Parameter 36
csm_encaps.param37 Parameter 37
Unsigned 16-bit integer
CSM_ENCAPS Parameter 37
csm_encaps.param38 Parameter 38
Unsigned 16-bit integer
CSM_ENCAPS Parameter 38
csm_encaps.param39 Parameter 39
Unsigned 16-bit integer
CSM_ENCAPS Parameter 39
csm_encaps.param4 Parameter 4
Unsigned 16-bit integer
CSM_ENCAPS Parameter 4
csm_encaps.param40 Parameter 40
Unsigned 16-bit integer
CSM_ENCAPS Parameter 40
csm_encaps.param5 Parameter 5
Unsigned 16-bit integer
CSM_ENCAPS Parameter 5
csm_encaps.param6 Parameter 6
Unsigned 16-bit integer
CSM_ENCAPS Parameter 6
csm_encaps.param7 Parameter 7
Unsigned 16-bit integer
CSM_ENCAPS Parameter 7
csm_encaps.param8 Parameter 8
Unsigned 16-bit integer
CSM_ENCAPS Parameter 8
csm_encaps.param9 Parameter 9
Unsigned 16-bit integer
CSM_ENCAPS Parameter 9
csm_encaps.reserved Reserved
Unsigned 16-bit integer
CSM_ENCAPS Reserved
csm_encaps.seq_num Sequence Number
Unsigned 8-bit integer
CSM_ENCAPS Sequence Number
csm_encaps.type Type
Unsigned 8-bit integer
CSM_ENCAPS Type
Camel (camel)
camel.BCSMEventArray_item Item
No value
BCSMEventArray/_item
camel.CellGlobalIdOrServiceAreaIdFixedLength CellGlobalIdOrServiceAreaIdFixedLength
Byte array
LocationInformationGPRS/CellGlobalIdOrServiceAreaIdOrLAI
camel.ChangeOfPositionControlInfo_item Item
Unsigned 32-bit integer
ChangeOfPositionControlInfo/_item
camel.DestinationRoutingAddress_item Item
Byte array
DestinationRoutingAddress/_item
camel.ExtensionsArray_item Item
No value
ExtensionsArray/_item
camel.Extensions_item Item
No value
Extensions/_item
camel.GPRSEventArray_item Item
No value
GPRSEventArray/_item
camel.GenericNumbers_item Item
Byte array
GenericNumbers/_item
camel.MetDPCriteriaList_item Item
Unsigned 32-bit integer
MetDPCriteriaList/_item
camel.PDPAddress_IPv4 PDPAddress IPv4
IPv4 address
IPAddress IPv4
camel.PDPAddress_IPv6 PDPAddress IPv6
IPv6 address
IPAddress IPv6
camel.PDPTypeNumber_etsi ETSI defined PDP Type Value
Unsigned 8-bit integer
ETSI defined PDP Type Value
camel.PDPTypeNumber_ietf IETF defined PDP Type Value
Unsigned 8-bit integer
IETF defined PDP Type Value
camel.PrivateExtensionList_item Item
No value
PrivateExtensionList/_item
camel.RequestedInformationList_item Item
No value
RequestedInformationList/_item
camel.RequestedInformationTypeList_item Item
Unsigned 32-bit integer
RequestedInformationTypeList/_item
camel.SMSEventArray_item Item
No value
SMSEventArray/_item
camel.VariablePartsArray_item Item
Unsigned 32-bit integer
VariablePartsArray/_item
camel.aChBillingChargingCharacteristics aChBillingChargingCharacteristics
Unsigned 32-bit integer
ApplyChargingArg/aChBillingChargingCharacteristics
camel.aChChargingAddress aChChargingAddress
Unsigned 32-bit integer
camel.aOCAfterAnswer aOCAfterAnswer
No value
CAMEL-SCIBillingChargingCharacteristics/aOCAfterAnswer
camel.aOCBeforeAnswer aOCBeforeAnswer
No value
CAMEL-SCIBillingChargingCharacteristics/aOCBeforeAnswer
camel.aOCGPRS aOCGPRS
No value
CamelSCIGPRSBillingChargingCharacteristics/aOCGPRS
camel.aOCInitial aOCInitial
No value
camel.aOCSubsequent aOCSubsequent
No value
camel.aOC_extension aOC-extension
No value
CAMEL-SCIBillingChargingCharacteristics/aOC-extension
camel.absent absent
No value
InvokeId/absent
camel.accessPointName accessPointName
Byte array
camel.actimeDurationCharging actimeDurationCharging
No value
AChBillingChargingCharacteristics/actimeDurationCharging
camel.active active
Boolean
ApplyChargingReportGPRSArg/active
camel.actone actone
Boolean
AChBillingChargingCharacteristics/actimeDurationCharging/actone
camel.additionalCallingPartyNumber additionalCallingPartyNumber
Byte array
InitialDPArg/additionalCallingPartyNumber
camel.addr_extension Extension
Boolean
Extension
camel.addr_nature_of_addr Nature of address
Unsigned 8-bit integer
Nature of address
camel.addr_numbering_plan Numbering plan indicator
Unsigned 8-bit integer
Numbering plan indicator
camel.address address
Byte array
PBGSNAddress/address
camel.addressLength addressLength
Unsigned 32-bit integer
PBGSNAddress/addressLength
camel.address_digits Address digits
String
Address digits
camel.alertingDP alertingDP
Boolean
camel.alertingPattern alertingPattern
Byte array
camel.allRequests allRequests
No value
CancelArg/allRequests
camel.aoc aoc
Signed 32-bit integer
PBSGSNCapabilities/aoc
camel.appendFreeFormatData appendFreeFormatData
Unsigned 32-bit integer
camel.applicationTimer applicationTimer
Unsigned 32-bit integer
DpSpecificCriteria/applicationTimer
camel.assistingSSPIPRoutingAddress assistingSSPIPRoutingAddress
Byte array
EstablishTemporaryConnectionArg/assistingSSPIPRoutingAddress
camel.assumedIdle assumedIdle
No value
SubscriberState/assumedIdle
camel.attachChangeOfPositionSpecificInformation attachChangeOfPositionSpecificInformation
No value
GPRSEventSpecificInformation/attachChangeOfPositionSpecificInformation
camel.attributes attributes
Byte array
MessageID/text/attributes
camel.audibleIndicator audibleIndicator
Unsigned 32-bit integer
CAMEL-AChBillingChargingCharacteristics/timeDurationCharging/audibleIndicator
camel.automaticRearm automaticRearm
No value
BCSMEvent/automaticRearm
camel.bCSM_Failure bCSM-Failure
No value
EntityReleasedArg/bCSM-Failure
camel.backwardServiceInteractionInd backwardServiceInteractionInd
No value
ServiceInteractionIndicatorsTwo/backwardServiceInteractionInd
camel.basicGapCriteria basicGapCriteria
Unsigned 32-bit integer
camel.bcsmEvents bcsmEvents
Unsigned 32-bit integer
RequestReportBCSMEventArg/bcsmEvents
camel.bearerCap bearerCap
Byte array
BearerCapability/bearerCap
camel.bearerCapability bearerCapability
Unsigned 32-bit integer
InitialDPArg/bearerCapability
camel.bearerCapability2 bearerCapability2
Unsigned 32-bit integer
InitialDPArgExtension/bearerCapability2
camel.bilateralPart bilateralPart
Byte array
PBIPSSPCapabilities/bilateralPart
camel.bor_InterrogationRequested bor-InterrogationRequested
No value
camel.bothwayThroughConnectionInd bothwayThroughConnectionInd
Unsigned 32-bit integer
ServiceInteractionIndicatorsTwo/bothwayThroughConnectionInd
camel.burstInterval burstInterval
Unsigned 32-bit integer
Burst/burstInterval
camel.burstList burstList
No value
AudibleIndicator/burstList
camel.bursts bursts
No value
camel.busyCause busyCause
Byte array
camel.cAI_GSM0224 cAI-GSM0224
No value
AOCSubsequent/cAI-GSM0224
camel.cGEncountered cGEncountered
Unsigned 32-bit integer
InitialDPArg/cGEncountered
camel.callAcceptedSpecificInfo callAcceptedSpecificInfo
No value
EventSpecificInformationBCSM/callAcceptedSpecificInfo
camel.callAttemptElapsedTimeValue callAttemptElapsedTimeValue
Unsigned 32-bit integer
RequestedInformationValue/callAttemptElapsedTimeValue
camel.callCompletionTreatmentIndicator callCompletionTreatmentIndicator
Byte array
BackwardServiceInteractionInd/callCompletionTreatmentIndicator
camel.callConnectedElapsedTimeValue callConnectedElapsedTimeValue
Unsigned 32-bit integer
RequestedInformationValue/callConnectedElapsedTimeValue
camel.callDiversionTreatmentIndicator callDiversionTreatmentIndicator
Byte array
ForwardServiceInteractionInd/callDiversionTreatmentIndicator
camel.callForwarded callForwarded
No value
camel.callLegReleasedAtTcpExpiry callLegReleasedAtTcpExpiry
No value
CAMEL-CallResult/timeDurationChargingResult/callLegReleasedAtTcpExpiry
camel.callReferenceNumber callReferenceNumber
Byte array
camel.callSegmentFailure callSegmentFailure
No value
EntityReleasedArg/callSegmentFailure
camel.callSegmentID callSegmentID
Unsigned 32-bit integer
camel.callSegmentToCancel callSegmentToCancel
No value
CancelArg/callSegmentToCancel
camel.callStopTimeValue callStopTimeValue
Byte array
RequestedInformationValue/callStopTimeValue
camel.calledAddressAndService calledAddressAndService
No value
BasicGapCriteria/calledAddressAndService
camel.calledAddressValue calledAddressValue
Byte array
camel.calledPartyBCDNumber calledPartyBCDNumber
Byte array
InitialDPArg/calledPartyBCDNumber
camel.calledPartyNumber calledPartyNumber
Byte array
InitialDPArg/calledPartyNumber
camel.callingAddressAndService callingAddressAndService
No value
BasicGapCriteria/callingAddressAndService
camel.callingAddressValue callingAddressValue
Byte array
BasicGapCriteria/callingAddressAndService/callingAddressValue
camel.callingPartyNumber callingPartyNumber
Byte array
camel.callingPartyNumberas callingPartyNumberas
Byte array
InitialDPSMSArg/callingPartyNumberas
camel.callingPartyRestrictionIndicator callingPartyRestrictionIndicator
Byte array
ForwardServiceInteractionInd/callingPartyRestrictionIndicator
camel.callingPartysCategory callingPartysCategory
Unsigned 16-bit integer
camel.callingPartysNumber callingPartysNumber
Byte array
ConnectSMSArg/callingPartysNumber
camel.callresultOctet callresultOctet
Byte array
ApplyChargingReportArg/callresultOctet
camel.camelBusy camelBusy
No value
SubscriberState/camelBusy
camel.cancelDigit cancelDigit
Byte array
camel.carrier carrier
Byte array
camel.cause cause
Byte array
camel.causeValue causeValue
Signed 32-bit integer
PBCause/causeValue
camel.cause_indicator Cause indicator
Unsigned 8-bit integer
camel.cellGlobalId cellGlobalId
Byte array
ChangeOfLocation/cellGlobalId
camel.cellGlobalIdOrServiceAreaIdOrLAI cellGlobalIdOrServiceAreaIdOrLAI
Byte array
LocationInformationGPRS/cellGlobalIdOrServiceAreaIdOrLAI
camel.cellIdFixedLength cellIdFixedLength
Byte array
CellIdOrLAI/cellIdFixedLength
camel.cf-Enhancements cf-Enhancements
Boolean
camel.changeOfLocationAlt changeOfLocationAlt
No value
ChangeOfLocation/changeOfLocationAlt
camel.changeOfPositionControlInfo changeOfPositionControlInfo
Unsigned 32-bit integer
DpSpecificCriteriaAlt/changeOfPositionControlInfo
camel.changeOfPositionDP changeOfPositionDP
Boolean
camel.chargeIndicator chargeIndicator
Byte array
camel.chargeNumber chargeNumber
Byte array
camel.chargingCharacteristics chargingCharacteristics
Unsigned 32-bit integer
ApplyChargingGPRSArg/chargingCharacteristics
camel.chargingID chargingID
Byte array
camel.chargingIndicator chargingIndicator
Boolean
camel.chargingResult chargingResult
Unsigned 32-bit integer
ApplyChargingReportGPRSArg/chargingResult
camel.chargingRollOver chargingRollOver
Unsigned 32-bit integer
ApplyChargingReportGPRSArg/chargingRollOver
camel.codingStandard codingStandard
Signed 32-bit integer
PBCause/codingStandard
camel.collectedDigits collectedDigits
No value
CollectedInfo/collectedDigits
camel.collectedInfo collectedInfo
Unsigned 32-bit integer
PromptAndCollectUserInformationArg/collectedInfo
camel.compoundGapCriteria compoundGapCriteria
No value
GapCriteria/compoundGapCriteria
camel.conferenceTreatmentIndicator conferenceTreatmentIndicator
Byte array
camel.connectedNumberTreatmentInd connectedNumberTreatmentInd
Unsigned 32-bit integer
ServiceInteractionIndicatorsTwo/connectedNumberTreatmentInd
camel.continueWithArgumentArgExtension continueWithArgumentArgExtension
No value
ContinueWithArgumentArg/continueWithArgumentArgExtension
camel.controlType controlType
Unsigned 32-bit integer
CallGapArg/controlType
camel.correlationID correlationID
Byte array
camel.counter counter
Signed 32-bit integer
PBRedirectionInformation/counter
camel.criteriaForChangeOfPositionDP criteriaForChangeOfPositionDP
Boolean
camel.criticality criticality
Unsigned 32-bit integer
ExtensionField/criticality
camel.cug_Index cug-Index
Unsigned 32-bit integer
InitialDPArg/cug-Index
camel.cug_Interlock cug-Interlock
Byte array
camel.cug_OutgoingAccess cug-OutgoingAccess
No value
camel.cwTreatmentIndicator cwTreatmentIndicator
Byte array
ServiceInteractionIndicatorsTwo/cwTreatmentIndicator
camel.dTMFDigitsCompleted dTMFDigitsCompleted
Byte array
camel.dTMFDigitsTimeOut dTMFDigitsTimeOut
Byte array
camel.date date
Byte array
VariablePart/date
camel.degreesOfLatitude degreesOfLatitude
Byte array
PBGeographicalInformation/degreesOfLatitude
camel.degreesOfLongitude degreesOfLongitude
Byte array
PBGeographicalInformation/degreesOfLongitude
camel.destinationAddress destinationAddress
Byte array
camel.destinationReference destinationReference
Unsigned 32-bit integer
CAPGPRSReferenceNumber/destinationReference
camel.destinationRoutingAddress destinationRoutingAddress
Unsigned 32-bit integer
camel.destinationSubscriberNumber destinationSubscriberNumber
Byte array
camel.detachSpecificInformation detachSpecificInformation
No value
GPRSEventSpecificInformation/detachSpecificInformation
camel.dfc-WithArgument dfc-WithArgument
Boolean
camel.diagnostics diagnostics
Byte array
PBCause/diagnostics
camel.digit_value Digit Value
Unsigned 8-bit integer
Digit Value
camel.digits1 digits1
Byte array
PBAddressString/digits1
camel.digits2 digits2
Byte array
PBISDNAddressString/digits2
camel.digits3 digits3
Byte array
PBCalledPartyNumber/digits3
camel.digits4 digits4
Byte array
PBCallingPartyNumber/digits4
camel.digits5 digits5
Byte array
PBRedirectingNumber/digits5
camel.digits6 digits6
Byte array
PBGenericNumber/digits6
camel.digits7 digits7
Byte array
PBLocationNumber/digits7
camel.digits8 digits8
Byte array
PBCalledPartyBCDNumber/digits8
camel.digitsResponse digitsResponse
Byte array
ReceivedInformationArg/digitsResponse
camel.disconnectFromIPForbidden disconnectFromIPForbidden
Boolean
camel.disconnectLeg disconnectLeg
Boolean
camel.disconnectSpecificInformation disconnectSpecificInformation
No value
GPRSEventSpecificInformation/disconnectSpecificInformation
camel.dpSpecificCriteria dpSpecificCriteria
Unsigned 32-bit integer
BCSMEvent/dpSpecificCriteria
camel.dpSpecificCriteriaAlt dpSpecificCriteriaAlt
No value
DpSpecificCriteria/dpSpecificCriteriaAlt
camel.dpSpecificInfoAlt dpSpecificInfoAlt
No value
EventSpecificInformationBCSM/dpSpecificInfoAlt
camel.dtmf-MidCall dtmf-MidCall
Boolean
camel.duration1 duration1
Signed 32-bit integer
GapIndicators/duration1
camel.duration2 duration2
Unsigned 32-bit integer
InbandInfo/duration2
camel.duration3 duration3
Unsigned 32-bit integer
Tone/duration3
camel.e1 e1
Unsigned 32-bit integer
CAI-Gsm0224/e1
camel.e2 e2
Unsigned 32-bit integer
CAI-Gsm0224/e2
camel.e3 e3
Unsigned 32-bit integer
CAI-Gsm0224/e3
camel.e4 e4
Unsigned 32-bit integer
CAI-Gsm0224/e4
camel.e5 e5
Unsigned 32-bit integer
CAI-Gsm0224/e5
camel.e6 e6
Unsigned 32-bit integer
CAI-Gsm0224/e6
camel.e7 e7
Unsigned 32-bit integer
CAI-Gsm0224/e7
camel.ectTreatmentIndicator ectTreatmentIndicator
Byte array
ServiceInteractionIndicatorsTwo/ectTreatmentIndicator
camel.elapsedTime elapsedTime
Unsigned 32-bit integer
ChargingResult/elapsedTime
camel.elapsedTimeRollOver elapsedTimeRollOver
Unsigned 32-bit integer
ChargingRollOver/elapsedTimeRollOver
camel.elementaryMessageID elementaryMessageID
Unsigned 32-bit integer
camel.elementaryMessageIDs elementaryMessageIDs
Unsigned 32-bit integer
MessageID/elementaryMessageIDs
camel.elementaryMessageIDs_item Item
Unsigned 32-bit integer
MessageID/elementaryMessageIDs/_item
camel.endOfReplyDigit endOfReplyDigit
Byte array
camel.enhancedDialledServicesAllowed enhancedDialledServicesAllowed
No value
InitialDPArgExtension/enhancedDialledServicesAllowed
camel.enteringCellGlobalId enteringCellGlobalId
Byte array
MetDPCriterion/enteringCellGlobalId
camel.enteringLocationAreaId enteringLocationAreaId
Byte array
MetDPCriterion/enteringLocationAreaId
camel.enteringServiceAreaId enteringServiceAreaId
Byte array
MetDPCriterion/enteringServiceAreaId
camel.entityReleased entityReleased
Boolean
camel.errorTreatment errorTreatment
Unsigned 32-bit integer
CollectedDigits/errorTreatment
camel.eventSpecificInformationBCSM eventSpecificInformationBCSM
Unsigned 32-bit integer
EventReportBCSMArg/eventSpecificInformationBCSM
camel.eventSpecificInformationSMS eventSpecificInformationSMS
Unsigned 32-bit integer
EventReportSMSArg/eventSpecificInformationSMS
camel.eventTypeBCSM eventTypeBCSM
Unsigned 32-bit integer
camel.eventTypeSMS eventTypeSMS
Unsigned 32-bit integer
camel.ext ext
Signed 32-bit integer
PBCalledPartyBCDNumber/ext
camel.extId extId
PrivateExtension/extId
camel.ext_basicServiceCode ext-basicServiceCode
Unsigned 32-bit integer
camel.ext_basicServiceCode2 ext-basicServiceCode2
Unsigned 32-bit integer
camel.extension extension
Unsigned 32-bit integer
camel.extensionContainer extensionContainer
No value
LocationInformationGPRS/extensionContainer
camel.extensions extensions
Unsigned 32-bit integer
camel.fCIBCCCAMELsequence1 fCIBCCCAMELsequence1
No value
CAMEL-FCIBillingChargingCharacteristics/fCIBCCCAMELsequence1
camel.fCIBCCCAMELsequence2 fCIBCCCAMELsequence2
No value
CAMEL-FCIGPRSBillingChargingCharacteristics/fCIBCCCAMELsequence2
camel.fCIBCCCAMELsequence3 fCIBCCCAMELsequence3
No value
CAMEL-FCISMSBillingChargingCharacteristics/fCIBCCCAMELsequence3
camel.failureCause failureCause
Byte array
EventSpecificInformationBCSM/routeSelectFailureSpecificInfo/failureCause
camel.firstDigitTimeOut firstDigitTimeOut
Unsigned 32-bit integer
CollectedDigits/firstDigitTimeOut
camel.firstExtensionExtensionType firstExtensionExtensionType
No value
SupportedExtensionsExtensionType/firstExtensionExtensionType
camel.foo foo
Unsigned 32-bit integer
camel.forwardServiceInteractionInd forwardServiceInteractionInd
No value
ServiceInteractionIndicatorsTwo/forwardServiceInteractionInd
camel.forwardedCall forwardedCall
No value
camel.forwardingDestinationNumber forwardingDestinationNumber
Byte array
camel.freeFormatData freeFormatData
Byte array
camel.gGSNAddress gGSNAddress
Byte array
camel.gPRSCause gPRSCause
Byte array
EntityReleasedGPRSArg/gPRSCause
camel.gPRSEvent gPRSEvent
Unsigned 32-bit integer
RequestReportGPRSEventArg/gPRSEvent
camel.gPRSEventSpecificInformation gPRSEventSpecificInformation
Unsigned 32-bit integer
EventReportGPRSArg/gPRSEventSpecificInformation
camel.gPRSEventType gPRSEventType
Unsigned 32-bit integer
camel.gPRSMSClass gPRSMSClass
No value
InitialDPGPRSArg/gPRSMSClass
camel.gapCriteria gapCriteria
Unsigned 32-bit integer
CallGapArg/gapCriteria
camel.gapIndicators gapIndicators
No value
CallGapArg/gapIndicators
camel.gapInterval gapInterval
Signed 32-bit integer
GapIndicators/gapInterval
camel.gapOnService gapOnService
No value
BasicGapCriteria/gapOnService
camel.gapTreatment gapTreatment
Unsigned 32-bit integer
CallGapArg/gapTreatment
camel.genOfVoiceAnn genOfVoiceAnn
Signed 32-bit integer
PBIPSSPCapabilities/genOfVoiceAnn
camel.genericNumbers genericNumbers
Unsigned 32-bit integer
camel.geographicalInformation geographicalInformation
Byte array
LocationInformationGPRS/geographicalInformation
camel.global global
Code/global
camel.gmscAddress gmscAddress
Byte array
InitialDPArgExtension/gmscAddress
camel.gprsCause gprsCause
Byte array
ReleaseGPRSArg/gprsCause
camel.gsmSCFAddress gsmSCFAddress
Byte array
InitiateCallAttemptArg/gsmSCFAddress
camel.gsm_ForwardingPending gsm-ForwardingPending
No value
InitialDPArg/gsm-ForwardingPending
camel.highLayerCompatibility highLayerCompatibility
Byte array
InitialDPArg/highLayerCompatibility
camel.highLayerCompatibility2 highLayerCompatibility2
Byte array
InitialDPArgExtension/highLayerCompatibility2
camel.holdTreatmentIndicator holdTreatmentIndicator
Byte array
ServiceInteractionIndicatorsTwo/holdTreatmentIndicator
camel.iMEI iMEI
Byte array
InitialDPArgExtension/iMEI
camel.iMSI iMSI
Byte array
camel.iPRoutAdd iPRoutAdd
Signed 32-bit integer
PBIPSSPCapabilities/iPRoutAdd
camel.iPSSPCapabilities iPSSPCapabilities
Byte array
camel.imsi_digits Imsi digits
String
Imsi digits
camel.inbandInfo inbandInfo
No value
InformationToSend/inbandInfo
camel.indicator indicator
Signed 32-bit integer
PBRedirectionInformation/indicator
camel.informationToSend informationToSend
Unsigned 32-bit integer
camel.initialDPArgExtension initialDPArgExtension
No value
InitialDPArg/initialDPArgExtension
camel.initiateCallAttempt initiateCallAttempt
Boolean
camel.inititatingEntity inititatingEntity
Unsigned 32-bit integer
camel.innInd innInd
Signed 32-bit integer
camel.integer integer
Unsigned 32-bit integer
VariablePart/integer
camel.interDigitTimeOut interDigitTimeOut
Unsigned 32-bit integer
CollectedDigits/interDigitTimeOut
camel.interDigitTimeout interDigitTimeout
Unsigned 32-bit integer
MidCallControlInfo/interDigitTimeout
camel.inter_MSCHandOver inter-MSCHandOver
No value
camel.inter_PLMNHandOver inter-PLMNHandOver
No value
camel.inter_SystemHandOver inter-SystemHandOver
No value
ChangeOfLocation/inter-SystemHandOver
camel.inter_SystemHandOverToGSM inter-SystemHandOverToGSM
No value
MetDPCriterion/inter-SystemHandOverToGSM
camel.inter_SystemHandOverToUMTS inter-SystemHandOverToUMTS
No value
MetDPCriterion/inter-SystemHandOverToUMTS
camel.interruptableAnnInd interruptableAnnInd
Boolean
CollectedDigits/interruptableAnnInd
camel.interval interval
Unsigned 32-bit integer
InbandInfo/interval
camel.invoke invoke
No value
camelPDU/invoke
camel.invokeCmd invokeCmd
Unsigned 32-bit integer
InvokePDU/invokeCmd
camel.invokeID invokeID
Signed 32-bit integer
camel.invokeId invokeId
Unsigned 32-bit integer
InvokePDU/invokeId
camel.invokeid invokeid
Signed 32-bit integer
InvokeId/invokeid
camel.ipRoutingAddress ipRoutingAddress
Byte array
ConnectToResourceArg/resourceAddress/ipRoutingAddress
camel.laiFixedLength laiFixedLength
Byte array
CellIdOrLAI/laiFixedLength
camel.leavingCellGlobalId leavingCellGlobalId
Byte array
MetDPCriterion/leavingCellGlobalId
camel.leavingLocationAreaId leavingLocationAreaId
Byte array
MetDPCriterion/leavingLocationAreaId
camel.leavingServiceAreaId leavingServiceAreaId
Byte array
MetDPCriterion/leavingServiceAreaId
camel.legActive legActive
Boolean
CAMEL-CallResult/timeDurationChargingResult/legActive
camel.legID legID
Unsigned 32-bit integer
camel.legID3 legID3
Unsigned 32-bit integer
CallInformationRequestArg/legID3
camel.legID4 legID4
Unsigned 32-bit integer
EventReportBCSMArg/legID4
camel.legID5 legID5
Unsigned 32-bit integer
CallInformationReportArg/legID5
camel.legID6 legID6
Unsigned 32-bit integer
BCSMEvent/legID6
camel.legIDToMove legIDToMove
Unsigned 32-bit integer
MoveLegArg/legIDToMove
camel.legOrCallSegment legOrCallSegment
Unsigned 32-bit integer
camel.legToBeCreated legToBeCreated
Unsigned 32-bit integer
InitiateCallAttemptArg/legToBeCreated
camel.legToBeReleased legToBeReleased
Unsigned 32-bit integer
DisconnectLegArg/legToBeReleased
camel.legToBeSplit legToBeSplit
Unsigned 32-bit integer
SplitLegArg/legToBeSplit
camel.linkedid linkedid
Signed 32-bit integer
LinkedId/linkedid
camel.local local
Signed 32-bit integer
Code/local
camel.location location
Signed 32-bit integer
PBCause/location
camel.locationAreaId locationAreaId
Byte array
ChangeOfLocation/locationAreaId
camel.locationAtAlerting locationAtAlerting
Boolean
camel.locationInformation locationInformation
No value
camel.locationInformationGPRS locationInformationGPRS
No value
camel.locationInformationMSC locationInformationMSC
No value
InitialDPSMSArg/locationInformationMSC
camel.locationNumber locationNumber
Byte array
InitialDPArg/locationNumber
camel.long_QoS_format long-QoS-format
Byte array
GPRS-QoS/long-QoS-format
camel.lowLayerCompatibility lowLayerCompatibility
Byte array
InitialDPArgExtension/lowLayerCompatibility
camel.lowLayerCompatibility2 lowLayerCompatibility2
Byte array
InitialDPArgExtension/lowLayerCompatibility2
camel.mSISDN mSISDN
Byte array
InitialDPGPRSArg/mSISDN
camel.mSNetworkCapability mSNetworkCapability
Byte array
GPRSMSClass/mSNetworkCapability
camel.mSRadioAccessCapability mSRadioAccessCapability
Byte array
GPRSMSClass/mSRadioAccessCapability
camel.maxCallPeriodDuration maxCallPeriodDuration
Unsigned 32-bit integer
camel.maxElapsedTime maxElapsedTime
Unsigned 32-bit integer
ChargingCharacteristics/maxElapsedTime
camel.maxTransferredVolume maxTransferredVolume
Unsigned 32-bit integer
ChargingCharacteristics/maxTransferredVolume
camel.maximumNbOfDigits maximumNbOfDigits
Unsigned 32-bit integer
CollectedDigits/maximumNbOfDigits
camel.maximumNumberOfDigits maximumNumberOfDigits
Unsigned 32-bit integer
MidCallControlInfo/maximumNumberOfDigits
camel.messageContent messageContent
String
MessageID/text/messageContent
camel.messageID messageID
Unsigned 32-bit integer
InbandInfo/messageID
camel.messageType messageType
Unsigned 32-bit integer
MiscCallInfo/messageType
camel.metDPCriteriaList metDPCriteriaList
Unsigned 32-bit integer
camel.metDPCriterionAlt metDPCriterionAlt
No value
MetDPCriterion/metDPCriterionAlt
camel.midCallControlInfo midCallControlInfo
No value
DpSpecificCriteria/midCallControlInfo
camel.midCallEvents midCallEvents
Unsigned 32-bit integer
EventSpecificInformationBCSM/oMidCallSpecificInfo/midCallEvents
camel.minimumNbOfDigits minimumNbOfDigits
Unsigned 32-bit integer
CollectedDigits/minimumNbOfDigits
camel.minimumNumberOfDigits minimumNumberOfDigits
Unsigned 32-bit integer
MidCallControlInfo/minimumNumberOfDigits
camel.miscCallInfo miscCallInfo
No value
camel.miscGPRSInfo miscGPRSInfo
No value
EventReportGPRSArg/miscGPRSInfo
camel.monitorMode monitorMode
Unsigned 32-bit integer
camel.moveLeg moveLeg
Boolean
camel.ms_Classmark2 ms-Classmark2
Byte array
InitialDPArgExtension/ms-Classmark2
camel.mscAddress mscAddress
Byte array
camel.naOliInfo naOliInfo
Byte array
camel.natureOfAddressIndicator natureOfAddressIndicator
Signed 32-bit integer
camel.negotiated_QoS negotiated-QoS
Unsigned 32-bit integer
QualityOfService/negotiated-QoS
camel.negotiated_QoS_Extension negotiated-QoS-Extension
No value
QualityOfService/negotiated-QoS-Extension
camel.netDetNotReachable netDetNotReachable
Unsigned 32-bit integer
SubscriberState/netDetNotReachable
camel.newCallSegment newCallSegment
Unsigned 32-bit integer
camel.niInd niInd
Signed 32-bit integer
camel.nonCUGCall nonCUGCall
No value
ServiceInteractionIndicatorsTwo/nonCUGCall
camel.none none
No value
ConnectToResourceArg/resourceAddress/none
camel.notProvidedFromVLR notProvidedFromVLR
No value
SubscriberState/notProvidedFromVLR
camel.number number
Byte array
VariablePart/number
camel.numberOfBursts numberOfBursts
Unsigned 32-bit integer
Burst/numberOfBursts
camel.numberOfRepetitions numberOfRepetitions
Unsigned 32-bit integer
InbandInfo/numberOfRepetitions
camel.numberOfTonesInBurst numberOfTonesInBurst
Unsigned 32-bit integer
Burst/numberOfTonesInBurst
camel.numberQualifierIndicator numberQualifierIndicator
Signed 32-bit integer
PBGenericNumber/numberQualifierIndicator
camel.numberingPlanInd numberingPlanInd
Signed 32-bit integer
camel.o1ext o1ext
Unsigned 32-bit integer
PBCause/o1ext
camel.o2ext o2ext
Unsigned 32-bit integer
PBCause/o2ext
camel.oAbandonSpecificInfo oAbandonSpecificInfo
No value
EventSpecificInformationBCSM/oAbandonSpecificInfo
camel.oAnswerSpecificInfo oAnswerSpecificInfo
No value
EventSpecificInformationBCSM/oAnswerSpecificInfo
camel.oCSIApplicable oCSIApplicable
No value
ConnectArg/oCSIApplicable
camel.oCalledPartyBusySpecificInfo oCalledPartyBusySpecificInfo
No value
EventSpecificInformationBCSM/oCalledPartyBusySpecificInfo
camel.oChangeOfPositionSpecificInfo oChangeOfPositionSpecificInfo
No value
EventSpecificInformationBCSM/oChangeOfPositionSpecificInfo
camel.oDisconnectSpecificInfo oDisconnectSpecificInfo
No value
EventSpecificInformationBCSM/oDisconnectSpecificInfo
camel.oMidCallSpecificInfo oMidCallSpecificInfo
No value
EventSpecificInformationBCSM/oMidCallSpecificInfo
camel.oNoAnswerSpecificInfo oNoAnswerSpecificInfo
No value
EventSpecificInformationBCSM/oNoAnswerSpecificInfo
camel.oServiceChangeSpecificInfo oServiceChangeSpecificInfo
No value
DpSpecificInfoAlt/oServiceChangeSpecificInfo
camel.oTermSeizedSpecificInfo oTermSeizedSpecificInfo
No value
EventSpecificInformationBCSM/oTermSeizedSpecificInfo
camel.o_smsFailureSpecificInfo o-smsFailureSpecificInfo
No value
EventSpecificInformationSMS/o-smsFailureSpecificInfo
camel.o_smsSubmittedSpecificInfo o-smsSubmittedSpecificInfo
No value
EventSpecificInformationSMS/o-smsSubmittedSpecificInfo
camel.oddEven oddEven
Signed 32-bit integer
camel.offeredCamel4Functionalities offeredCamel4Functionalities
Byte array
camel.operation operation
Signed 32-bit integer
CancelFailedPARAM/operation
camel.or-Interactions or-Interactions
Boolean
camel.or_Call or-Call
No value
camel.originalCalledPartyID originalCalledPartyID
Byte array
camel.originalReasons originalReasons
Signed 32-bit integer
PBRedirectionInformation/originalReasons
camel.originationReference originationReference
Unsigned 32-bit integer
CAPGPRSReferenceNumber/originationReference
camel.pDPAddress pDPAddress
Byte array
EndUserAddress/pDPAddress
camel.pDPContextEstablishmentAcknowledgementSpecificInformation pDPContextEstablishmentAcknowledgementSpecificInformation
No value
GPRSEventSpecificInformation/pDPContextEstablishmentAcknowledgementSpecificInformation
camel.pDPContextEstablishmentSpecificInformation pDPContextEstablishmentSpecificInformation
No value
GPRSEventSpecificInformation/pDPContextEstablishmentSpecificInformation
camel.pDPID pDPID
Byte array
camel.pDPInitiationType pDPInitiationType
Unsigned 32-bit integer
camel.pDPType pDPType
No value
camel.pDPTypeNumber pDPTypeNumber
Byte array
EndUserAddress/pDPTypeNumber
camel.pDPTypeOrganization pDPTypeOrganization
Byte array
EndUserAddress/pDPTypeOrganization
camel.partyToCharge partyToCharge
Unsigned 32-bit integer
CAMEL-CallResult/timeDurationChargingResult/partyToCharge
camel.partyToCharge1 partyToCharge1
Unsigned 32-bit integer
ApplyChargingArg/partyToCharge1
camel.partyToCharge2 partyToCharge2
Unsigned 32-bit integer
SendChargingInformationArg/partyToCharge2
camel.partyToCharge4 partyToCharge4
Unsigned 32-bit integer
CAMEL-FCIBillingChargingCharacteristics/fCIBCCCAMELsequence1/partyToCharge4
camel.pcs_Extensions pcs-Extensions
No value
ExtensionContainer/pcs-Extensions
camel.pdpID pdpID
Byte array
ConnectGPRSArg/pdpID
camel.pdp_ContextchangeOfPositionSpecificInformation pdp-ContextchangeOfPositionSpecificInformation
No value
GPRSEventSpecificInformation/pdp-ContextchangeOfPositionSpecificInformation
camel.phase1 phase1
Boolean
camel.phase2 phase2
Boolean
camel.phase3 phase3
Boolean
camel.phase4 phase4
Boolean
camel.playTone playTone
Boolean
camel.presentInd presentInd
Signed 32-bit integer
camel.price price
Byte array
VariablePart/price
camel.privateExtensionList privateExtensionList
Unsigned 32-bit integer
ExtensionContainer/privateExtensionList
camel.problem problem
Unsigned 32-bit integer
CancelFailedPARAM/problem
camel.qualityOfService qualityOfService
No value
camel.rOTimeGPRSIfNoTariffSwitch rOTimeGPRSIfNoTariffSwitch
Unsigned 32-bit integer
ElapsedTimeRollOver/rOTimeGPRSIfNoTariffSwitch
camel.rOTimeGPRSIfTariffSwitch rOTimeGPRSIfTariffSwitch
No value
ElapsedTimeRollOver/rOTimeGPRSIfTariffSwitch
camel.rOTimeGPRSSinceLastTariffSwitch rOTimeGPRSSinceLastTariffSwitch
Unsigned 32-bit integer
ElapsedTimeRollOver/rOTimeGPRSIfTariffSwitch/rOTimeGPRSSinceLastTariffSwitch
camel.rOTimeGPRSTariffSwitchInterval rOTimeGPRSTariffSwitchInterval
Unsigned 32-bit integer
ElapsedTimeRollOver/rOTimeGPRSIfTariffSwitch/rOTimeGPRSTariffSwitchInterval
camel.rOVolumeIfNoTariffSwitch rOVolumeIfNoTariffSwitch
Unsigned 32-bit integer
TransferredVolumeRollOver/rOVolumeIfNoTariffSwitch
camel.rOVolumeIfTariffSwitch rOVolumeIfTariffSwitch
No value
TransferredVolumeRollOver/rOVolumeIfTariffSwitch
camel.rOVolumeSinceLastTariffSwitch rOVolumeSinceLastTariffSwitch
Unsigned 32-bit integer
TransferredVolumeRollOver/rOVolumeIfTariffSwitch/rOVolumeSinceLastTariffSwitch
camel.rOVolumeTariffSwitchInterval rOVolumeTariffSwitchInterval
Unsigned 32-bit integer
TransferredVolumeRollOver/rOVolumeIfTariffSwitch/rOVolumeTariffSwitchInterval
camel.reason reason
Signed 32-bit integer
PBRedirectionInformation/reason
camel.receivingSideID receivingSideID
Byte array
camel.redirectingPartyID redirectingPartyID
Byte array
camel.redirectionInformation redirectionInformation
Byte array
camel.releaseCause releaseCause
Byte array
camel.releaseCauseValue releaseCauseValue
Byte array
RequestedInformationValue/releaseCauseValue
camel.releaseIfdurationExceeded releaseIfdurationExceeded
Boolean
camel.requestAnnouncementComplete requestAnnouncementComplete
Boolean
PlayAnnouncementArg/requestAnnouncementComplete
camel.requestedInformationList requestedInformationList
Unsigned 32-bit integer
CallInformationReportArg/requestedInformationList
camel.requestedInformationType requestedInformationType
Unsigned 32-bit integer
RequestedInformation/requestedInformationType
camel.requestedInformationTypeList requestedInformationTypeList
Unsigned 32-bit integer
CallInformationRequestArg/requestedInformationTypeList
camel.requestedInformationValue requestedInformationValue
Unsigned 32-bit integer
RequestedInformation/requestedInformationValue
camel.requested_QoS requested-QoS
Unsigned 32-bit integer
QualityOfService/requested-QoS
camel.requested_QoS_Extension requested-QoS-Extension
No value
QualityOfService/requested-QoS-Extension
camel.reserved reserved
Signed 32-bit integer
camel.resourceAddress resourceAddress
Unsigned 32-bit integer
ConnectToResourceArg/resourceAddress
camel.returnResult returnResult
No value
camelPDU/returnResult
camel.routeNotPermitted routeNotPermitted
No value
camel.routeSelectFailureSpecificInfo routeSelectFailureSpecificInfo
No value
EventSpecificInformationBCSM/routeSelectFailureSpecificInfo
camel.routeingAreaIdentity routeingAreaIdentity
Byte array
camel.routeingAreaUpdate routeingAreaUpdate
No value
camel.sCIBillingChargingCharacteristics sCIBillingChargingCharacteristics
Byte array
SendChargingInformationArg/sCIBillingChargingCharacteristics
camel.sCIGPRSBillingChargingCharacteristics sCIGPRSBillingChargingCharacteristics
Byte array
SendChargingInformationGPRSArg/sCIGPRSBillingChargingCharacteristics
camel.sGSNCapabilities sGSNCapabilities
Byte array
InitialDPGPRSArg/sGSNCapabilities
camel.sMSCAddress sMSCAddress
Byte array
camel.sMSEvents sMSEvents
Unsigned 32-bit integer
RequestReportSMSEventArg/sMSEvents
camel.saiPresent saiPresent
No value
LocationInformationGPRS/saiPresent
camel.scfID scfID
Byte array
camel.screening screening
Signed 32-bit integer
camel.secondaryPDPContext secondaryPDPContext
No value
camel.selectedLSAIdentity selectedLSAIdentity
Byte array
LocationInformationGPRS/selectedLSAIdentity
camel.sendingSideID sendingSideID
Byte array
camel.serviceAreaId serviceAreaId
Byte array
ChangeOfLocation/serviceAreaId
camel.serviceChangeDP serviceChangeDP
Boolean
camel.serviceInteractionIndicatorsTwo serviceInteractionIndicatorsTwo
No value
camel.serviceKey serviceKey
Unsigned 32-bit integer
camel.servingNetworkEnhancedDialledServices servingNetworkEnhancedDialledServices
Boolean
camel.sgsnNumber sgsnNumber
Byte array
InitialDPSMSArg/sgsnNumber
camel.sgsn_Number sgsn-Number
Byte array
LocationInformationGPRS/sgsn-Number
camel.short_QoS_format short-QoS-format
Byte array
GPRS-QoS/short-QoS-format
camel.smsReferenceNumber smsReferenceNumber
Byte array
InitialDPSMSArg/smsReferenceNumber
camel.smsfailureCause smsfailureCause
Unsigned 32-bit integer
EventSpecificInformationSMS/o-smsFailureSpecificInfo/smsfailureCause
camel.spare2 spare2
Unsigned 32-bit integer
PBRedirectionInformation/spare2
camel.spare3 spare3
Signed 32-bit integer
PBGeographicalInformation/spare3
camel.spare4 spare4
Unsigned 32-bit integer
PBRedirectionInformation/spare4
camel.spare5 spare5
Unsigned 32-bit integer
PBCalledPartyNumber/spare5
camel.spare6 spare6
Unsigned 32-bit integer
PBRedirectingNumber/spare6
camel.spare77 spare77
Unsigned 32-bit integer
PBCause/spare77
camel.splitLeg splitLeg
Boolean
camel.srfConnection srfConnection
Unsigned 32-bit integer
AChChargingAddress/srfConnection
camel.standardPartEnd standardPartEnd
Signed 32-bit integer
PBIPSSPCapabilities/standardPartEnd
camel.startDigit startDigit
Byte array
camel.subscribedEnhancedDialledServices subscribedEnhancedDialledServices
Boolean
camel.subscribed_QoS subscribed-QoS
Unsigned 32-bit integer
QualityOfService/subscribed-QoS
camel.subscribed_QoS_Extension subscribed-QoS-Extension
No value
QualityOfService/subscribed-QoS-Extension
camel.subscriberState subscriberState
Unsigned 32-bit integer
InitialDPArg/subscriberState
camel.supplement_to_long_QoS_format supplement-to-long-QoS-format
Byte array
GPRS-QoS-Extension/supplement-to-long-QoS-format
camel.supportedCamelPhases supportedCamelPhases
Byte array
camel.suppressOutgoingCallBarring suppressOutgoingCallBarring
No value
ContinueWithArgumentArgExtension/suppressOutgoingCallBarring
camel.suppress_D_CSI suppress-D-CSI
No value
ContinueWithArgumentArgExtension/suppress-D-CSI
camel.suppress_N_CSI suppress-N-CSI
No value
ContinueWithArgumentArgExtension/suppress-N-CSI
camel.suppress_O_CSI suppress-O-CSI
No value
ContinueWithArgumentArg/suppress-O-CSI
camel.suppress_T_CSI suppress-T-CSI
No value
InitiateCallAttemptArg/suppress-T-CSI
camel.suppressionOfAnnouncement suppressionOfAnnouncement
No value
camel.tAnswerSpecificInfo tAnswerSpecificInfo
No value
EventSpecificInformationBCSM/tAnswerSpecificInfo
camel.tBusySpecificInfo tBusySpecificInfo
No value
EventSpecificInformationBCSM/tBusySpecificInfo
camel.tChangeOfPositionSpecificInfo tChangeOfPositionSpecificInfo
No value
EventSpecificInformationBCSM/tChangeOfPositionSpecificInfo
camel.tDisconnectSpecificInfo tDisconnectSpecificInfo
No value
EventSpecificInformationBCSM/tDisconnectSpecificInfo
camel.tMidCallSpecificInfo tMidCallSpecificInfo
No value
EventSpecificInformationBCSM/tMidCallSpecificInfo
camel.tNoAnswerSpecificInfo tNoAnswerSpecificInfo
No value
EventSpecificInformationBCSM/tNoAnswerSpecificInfo
camel.tPDataCodingScheme tPDataCodingScheme
Byte array
InitialDPSMSArg/tPDataCodingScheme
camel.tPProtocolIdentifier tPProtocolIdentifier
Byte array
InitialDPSMSArg/tPProtocolIdentifier
camel.tPShortMessageSubmissionSpecificInfo tPShortMessageSubmissionSpecificInfo
Byte array
InitialDPSMSArg/tPShortMessageSubmissionSpecificInfo
camel.tPValidityPeriod tPValidityPeriod
Byte array
InitialDPSMSArg/tPValidityPeriod
camel.tServiceChangeSpecificInfo tServiceChangeSpecificInfo
No value
DpSpecificInfoAlt/tServiceChangeSpecificInfo
camel.t_smsDeliverySpecificInfo t-smsDeliverySpecificInfo
No value
EventSpecificInformationSMS/t-smsDeliverySpecificInfo
camel.t_smsFailureSpecificInfo t-smsFailureSpecificInfo
No value
EventSpecificInformationSMS/t-smsFailureSpecificInfo
camel.tariffSwitchInterval tariffSwitchInterval
Unsigned 32-bit integer
camel.text text
No value
MessageID/text
camel.time time
Byte array
VariablePart/time
camel.timeAndTimeZone timeAndTimeZone
Byte array
camel.timeAndTimezone timeAndTimezone
Byte array
camel.timeDurationCharging timeDurationCharging
No value
CAMEL-AChBillingChargingCharacteristics/timeDurationCharging
camel.timeDurationChargingResult timeDurationChargingResult
No value
CAMEL-CallResult/timeDurationChargingResult
camel.timeGPRSIfNoTariffSwitch timeGPRSIfNoTariffSwitch
Unsigned 32-bit integer
ElapsedTime/timeGPRSIfNoTariffSwitch
camel.timeGPRSIfTariffSwitch timeGPRSIfTariffSwitch
No value
ElapsedTime/timeGPRSIfTariffSwitch
camel.timeGPRSSinceLastTariffSwitch timeGPRSSinceLastTariffSwitch
Unsigned 32-bit integer
ElapsedTime/timeGPRSIfTariffSwitch/timeGPRSSinceLastTariffSwitch
camel.timeGPRSTariffSwitchInterval timeGPRSTariffSwitchInterval
Unsigned 32-bit integer
ElapsedTime/timeGPRSIfTariffSwitch/timeGPRSTariffSwitchInterval
camel.timeIfNoTariffSwitch timeIfNoTariffSwitch
Unsigned 32-bit integer
TimeInformation/timeIfNoTariffSwitch
camel.timeIfTariffSwitch timeIfTariffSwitch
No value
TimeInformation/timeIfTariffSwitch
camel.timeInformation timeInformation
Unsigned 32-bit integer
CAMEL-CallResult/timeDurationChargingResult/timeInformation
camel.timeSinceTariffSwitch timeSinceTariffSwitch
Unsigned 32-bit integer
TimeIfTariffSwitch/timeSinceTariffSwitch
camel.timerID timerID
Unsigned 32-bit integer
camel.timervalue timervalue
Unsigned 32-bit integer
camel.tone tone
Boolean
AudibleIndicator/tone
camel.toneDuration toneDuration
Unsigned 32-bit integer
Burst/toneDuration
camel.toneID toneID
Unsigned 32-bit integer
Tone/toneID
camel.toneInterval toneInterval
Unsigned 32-bit integer
Burst/toneInterval
camel.transferredVolume transferredVolume
Unsigned 32-bit integer
ChargingResult/transferredVolume
camel.transferredVolumeRollOver transferredVolumeRollOver
Unsigned 32-bit integer
ChargingRollOver/transferredVolumeRollOver
camel.tttariffSwitchInterval tttariffSwitchInterval
Unsigned 32-bit integer
TimeIfTariffSwitch/tttariffSwitchInterval
camel.type type
Unsigned 32-bit integer
ExtensionField/type
camel.typeOfAddress typeOfAddress
Signed 32-bit integer
PBGSNAddress/typeOfAddress
camel.typeOfNumber typeOfNumber
Unsigned 32-bit integer
PBCalledPartyBCDNumber/typeOfNumber
camel.typeOfShape typeOfShape
Signed 32-bit integer
PBGeographicalInformation/typeOfShape
camel.uncertaintyCode uncertaintyCode
Byte array
PBGeographicalInformation/uncertaintyCode
camel.uu_Data uu-Data
No value
InitialDPArgExtension/uu-Data
camel.value value
Unsigned 32-bit integer
ExtensionField/value
camel.variableMessage variableMessage
No value
MessageID/variableMessage
camel.variableParts variableParts
Unsigned 32-bit integer
MessageID/variableMessage/variableParts
camel.voiceBack voiceBack
Boolean
CollectedDigits/voiceBack
camel.voiceBack1 voiceBack1
Signed 32-bit integer
PBIPSSPCapabilities/voiceBack1
camel.voiceInfo1 voiceInfo1
Signed 32-bit integer
PBIPSSPCapabilities/voiceInfo1
camel.voiceInfo2 voiceInfo2
Signed 32-bit integer
PBIPSSPCapabilities/voiceInfo2
camel.voiceInformation voiceInformation
Boolean
CollectedDigits/voiceInformation
camel.volumeIfNoTariffSwitch volumeIfNoTariffSwitch
Unsigned 32-bit integer
TransferredVolume/volumeIfNoTariffSwitch
camel.volumeIfTariffSwitch volumeIfTariffSwitch
No value
TransferredVolume/volumeIfTariffSwitch
camel.volumeSinceLastTariffSwitch volumeSinceLastTariffSwitch
Unsigned 32-bit integer
TransferredVolume/volumeIfTariffSwitch/volumeSinceLastTariffSwitch
camel.volumeTariffSwitchInterval volumeTariffSwitchInterval
Unsigned 32-bit integer
TransferredVolume/volumeIfTariffSwitch/volumeTariffSwitchInterval
camel.warningPeriod warningPeriod
Unsigned 32-bit integer
BurstList/warningPeriod
camel.warningToneEnhancements warningToneEnhancements
Boolean
Cast Client Control Protocol (cast)
cast.DSCPValue DSCPValue
Unsigned 32-bit integer
DSCPValue.
cast.MPI MPI
Unsigned 32-bit integer
MPI.
cast.ORCStatus ORCStatus
Unsigned 32-bit integer
The status of the opened receive channel.
cast.RTPPayloadFormat RTPPayloadFormat
Unsigned 32-bit integer
RTPPayloadFormat.
cast.activeConferenceOnRegistration ActiveConferenceOnRegistration
Unsigned 32-bit integer
ActiveConferenceOnRegistration.
cast.activeStreamsOnRegistration ActiveStreamsOnRegistration
Unsigned 32-bit integer
ActiveStreamsOnRegistration.
cast.annexNandWFutureUse AnnexNandWFutureUse
Unsigned 32-bit integer
AnnexNandWFutureUse.
cast.audio AudioCodec
Unsigned 32-bit integer
The audio codec that is in use.
cast.bandwidth Bandwidth
Unsigned 32-bit integer
Bandwidth.
cast.callIdentifier Call Identifier
Unsigned 32-bit integer
Call identifier for this call.
cast.callInstance CallInstance
Unsigned 32-bit integer
CallInstance.
cast.callSecurityStatus CallSecurityStatus
Unsigned 32-bit integer
CallSecurityStatus.
cast.callState CallState
Unsigned 32-bit integer
CallState.
cast.callType Call Type
Unsigned 32-bit integer
What type of call, in/out/etc
cast.calledParty CalledParty
String
The number called.
cast.calledPartyName Called Party Name
String
The name of the party we are calling.
cast.callingPartyName Calling Party Name
String
The passed name of the calling party.
cast.cdpnVoiceMailbox CdpnVoiceMailbox
String
CdpnVoiceMailbox.
cast.cgpnVoiceMailbox CgpnVoiceMailbox
String
CgpnVoiceMailbox.
cast.clockConversionCode ClockConversionCode
Unsigned 32-bit integer
ClockConversionCode.
cast.clockDivisor ClockDivisor
Unsigned 32-bit integer
Clock Divisor.
cast.confServiceNum ConfServiceNum
Unsigned 32-bit integer
ConfServiceNum.
cast.conferenceID Conference ID
Unsigned 32-bit integer
The conference ID
cast.customPictureFormatCount CustomPictureFormatCount
Unsigned 32-bit integer
CustomPictureFormatCount.
cast.dataCapCount DataCapCount
Unsigned 32-bit integer
DataCapCount.
cast.data_length Data Length
Unsigned 32-bit integer
Number of bytes in the data portion.
cast.directoryNumber Directory Number
String
The number we are reporting statistics for.
cast.echoCancelType Echo Cancel Type
Unsigned 32-bit integer
Is echo cancelling enabled or not
cast.firstGOB FirstGOB
Unsigned 32-bit integer
FirstGOB.
cast.firstMB FirstMB
Unsigned 32-bit integer
FirstMB.
cast.format Format
Unsigned 32-bit integer
Format.
cast.g723BitRate G723 BitRate
Unsigned 32-bit integer
The G723 bit rate for this stream/JUNK if not g723 stream
cast.h263_capability_bitfield H263_capability_bitfield
Unsigned 32-bit integer
H263_capability_bitfield.
cast.ipAddress IP Address
IPv4 address
An IP address
cast.isConferenceCreator IsConferenceCreator
Unsigned 32-bit integer
IsConferenceCreator.
cast.lastRedirectingParty LastRedirectingParty
String
LastRedirectingParty.
cast.lastRedirectingPartyName LastRedirectingPartyName
String
LastRedirectingPartyName.
cast.lastRedirectingReason LastRedirectingReason
Unsigned 32-bit integer
LastRedirectingReason.
cast.lastRedirectingVoiceMailbox LastRedirectingVoiceMailbox
String
LastRedirectingVoiceMailbox.
cast.layout Layout
Unsigned 32-bit integer
Layout
cast.layoutCount LayoutCount
Unsigned 32-bit integer
LayoutCount.
cast.levelPreferenceCount LevelPreferenceCount
Unsigned 32-bit integer
LevelPreferenceCount.
cast.lineInstance Line Instance
Unsigned 32-bit integer
The display call plane associated with this call.
cast.longTermPictureIndex LongTermPictureIndex
Unsigned 32-bit integer
LongTermPictureIndex.
cast.marker Marker
Unsigned 32-bit integer
Marker value should ne zero.
cast.maxBW MaxBW
Unsigned 32-bit integer
MaxBW.
cast.maxBitRate MaxBitRate
Unsigned 32-bit integer
MaxBitRate.
cast.maxConferences MaxConferences
Unsigned 32-bit integer
MaxConferences.
cast.maxStreams MaxStreams
Unsigned 32-bit integer
32 bit unsigned integer indicating the maximum number of simultansous RTP duplex streams that the client can handle.
cast.messageid Message ID
Unsigned 32-bit integer
The function requested/done with this message.
cast.millisecondPacketSize MS/Packet
Unsigned 32-bit integer
The number of milliseconds of conversation in each packet
cast.minBitRate MinBitRate
Unsigned 32-bit integer
MinBitRate.
cast.miscCommandType MiscCommandType
Unsigned 32-bit integer
MiscCommandType
cast.modelNumber ModelNumber
Unsigned 32-bit integer
ModelNumber.
cast.numberOfGOBs NumberOfGOBs
Unsigned 32-bit integer
NumberOfGOBs.
cast.numberOfMBs NumberOfMBs
Unsigned 32-bit integer
NumberOfMBs.
cast.originalCalledParty Original Called Party
String
The number of the original calling party.
cast.originalCalledPartyName Original Called Party Name
String
name of the original person who placed the call.
cast.originalCdpnRedirectReason OriginalCdpnRedirectReason
Unsigned 32-bit integer
OriginalCdpnRedirectReason.
cast.originalCdpnVoiceMailbox OriginalCdpnVoiceMailbox
String
OriginalCdpnVoiceMailbox.
cast.passThruPartyID PassThruPartyID
Unsigned 32-bit integer
The pass thru party id
cast.payloadCapability PayloadCapability
Unsigned 32-bit integer
The payload capability for this media capability structure.
cast.payloadType PayloadType
Unsigned 32-bit integer
PayloadType.
cast.payload_rfc_number Payload_rfc_number
Unsigned 32-bit integer
Payload_rfc_number.
cast.pictureFormatCount PictureFormatCount
Unsigned 32-bit integer
PictureFormatCount.
cast.pictureHeight PictureHeight
Unsigned 32-bit integer
PictureHeight.
cast.pictureNumber PictureNumber
Unsigned 32-bit integer
PictureNumber.
cast.pictureWidth PictureWidth
Unsigned 32-bit integer
PictureWidth.
cast.pixelAspectRatio PixelAspectRatio
Unsigned 32-bit integer
PixelAspectRatio.
cast.portNumber Port Number
Unsigned 32-bit integer
A port number
cast.precedenceDm PrecedenceDm
Unsigned 32-bit integer
Precedence Domain.
cast.precedenceLv PrecedenceLv
Unsigned 32-bit integer
Precedence Level.
cast.precedenceValue Precedence
Unsigned 32-bit integer
Precedence value
cast.privacy Privacy
Unsigned 32-bit integer
Privacy.
cast.protocolDependentData ProtocolDependentData
Unsigned 32-bit integer
ProtocolDependentData.
cast.recoveryReferencePictureCount RecoveryReferencePictureCount
Unsigned 32-bit integer
RecoveryReferencePictureCount.
cast.requestorIpAddress RequestorIpAddress
IPv4 address
RequestorIpAddress
cast.serviceNum ServiceNum
Unsigned 32-bit integer
ServiceNum.
cast.serviceNumber ServiceNumber
Unsigned 32-bit integer
ServiceNumber.
cast.serviceResourceCount ServiceResourceCount
Unsigned 32-bit integer
ServiceResourceCount.
cast.stationFriendlyName StationFriendlyName
String
StationFriendlyName.
cast.stationGUID stationGUID
String
stationGUID.
cast.stationIpAddress StationIpAddress
IPv4 address
StationIpAddress
cast.stillImageTransmission StillImageTransmission
Unsigned 32-bit integer
StillImageTransmission.
cast.temporalSpatialTradeOff TemporalSpatialTradeOff
Unsigned 32-bit integer
TemporalSpatialTradeOff.
cast.temporalSpatialTradeOffCapability TemporalSpatialTradeOffCapability
Unsigned 32-bit integer
TemporalSpatialTradeOffCapability.
cast.transmitOrReceive TransmitOrReceive
Unsigned 32-bit integer
TransmitOrReceive
cast.transmitPreference TransmitPreference
Unsigned 32-bit integer
TransmitPreference.
cast.version Version
Unsigned 32-bit integer
The version in the keepalive version messages.
cast.videoCapCount VideoCapCount
Unsigned 32-bit integer
VideoCapCount.
skinny.bitRate BitRate
Unsigned 32-bit integer
BitRate.
Certificate Management Protocol (cmp)
cmp.CRLAnnContent_item Item
No value
CRLAnnContent/_item
cmp.GenMsgContent_item Item
No value
GenMsgContent/_item
cmp.GenRepContent_item Item
No value
GenRepContent/_item
cmp.PKIFreeText_item Item
String
PKIFreeText/_item
cmp.POPODecKeyChallContent_item Item
No value
POPODecKeyChallContent/_item
cmp.POPODecKeyRespContent_item Item
Signed 32-bit integer
POPODecKeyRespContent/_item
cmp.RevReqContent_item Item
No value
RevReqContent/_item
cmp.badAlg badAlg
Boolean
cmp.badCertId badCertId
Boolean
cmp.badDataFormat badDataFormat
Boolean
cmp.badMessageCheck badMessageCheck
Boolean
cmp.badPOP badPOP
Boolean
cmp.badRequest badRequest
Boolean
cmp.badSinceDate badSinceDate
String
cmp.badTime badTime
Boolean
cmp.body body
Unsigned 32-bit integer
cmp.caCerts caCerts
Unsigned 32-bit integer
KeyRecRepContent/caCerts
cmp.caCerts_item Item
No value
KeyRecRepContent/caCerts/_item
cmp.caPubs caPubs
Unsigned 32-bit integer
CertRepMessage/caPubs
cmp.caPubs_item Item
No value
CertRepMessage/caPubs/_item
cmp.cann cann
No value
PKIBody/cann
cmp.ccp ccp
No value
PKIBody/ccp
cmp.ccr ccr
Unsigned 32-bit integer
PKIBody/ccr
cmp.certDetails certDetails
No value
RevDetails/certDetails
cmp.certId certId
No value
cmp.certOrEncCert certOrEncCert
Unsigned 32-bit integer
CertifiedKeyPair/certOrEncCert
cmp.certReqId certReqId
Signed 32-bit integer
CertResponse/certReqId
cmp.certificate certificate
No value
CertOrEncCert/certificate
cmp.certifiedKeyPair certifiedKeyPair
No value
CertResponse/certifiedKeyPair
cmp.challenge challenge
Byte array
Challenge/challenge
cmp.ckuann ckuann
No value
PKIBody/ckuann
cmp.conf conf
No value
PKIBody/conf
cmp.cp cp
No value
PKIBody/cp
cmp.cr cr
Unsigned 32-bit integer
PKIBody/cr
cmp.crlDetails crlDetails
Unsigned 32-bit integer
RevAnnContent/crlDetails
cmp.crlEntryDetails crlEntryDetails
Unsigned 32-bit integer
RevDetails/crlEntryDetails
cmp.crlann crlann
Unsigned 32-bit integer
PKIBody/crlann
cmp.crls crls
Unsigned 32-bit integer
RevRepContent/crls
cmp.crls_item Item
No value
RevRepContent/crls/_item
cmp.encryptedCert encryptedCert
No value
CertOrEncCert/encryptedCert
cmp.error error
No value
PKIBody/error
cmp.errorCode errorCode
Signed 32-bit integer
ErrorMsgContent/errorCode
cmp.errorDetails errorDetails
Unsigned 32-bit integer
ErrorMsgContent/errorDetails
cmp.extraCerts extraCerts
Unsigned 32-bit integer
PKIMessage/extraCerts
cmp.extraCerts_item Item
No value
PKIMessage/extraCerts/_item
cmp.failInfo failInfo
Byte array
PKIStatusInfo/failInfo
cmp.freeText freeText
Unsigned 32-bit integer
PKIHeader/freeText
cmp.generalInfo generalInfo
Unsigned 32-bit integer
PKIHeader/generalInfo
cmp.generalInfo_item Item
No value
PKIHeader/generalInfo/_item
cmp.genm genm
Unsigned 32-bit integer
PKIBody/genm
cmp.genp genp
Unsigned 32-bit integer
PKIBody/genp
cmp.hashAlg hashAlg
No value
OOBCertHash/hashAlg
cmp.hashVal hashVal
Byte array
OOBCertHash/hashVal
cmp.header header
No value
cmp.incorrectData incorrectData
Boolean
cmp.infoType infoType
InfoTypeAndValue/infoType
cmp.infoValue infoValue
No value
InfoTypeAndValue/infoValue
cmp.ip ip
No value
PKIBody/ip
cmp.ir ir
Unsigned 32-bit integer
PKIBody/ir
cmp.iterationCount iterationCount
Signed 32-bit integer
PBMParameter/iterationCount
cmp.keyPairHist keyPairHist
Unsigned 32-bit integer
KeyRecRepContent/keyPairHist
cmp.keyPairHist_item Item
No value
KeyRecRepContent/keyPairHist/_item
cmp.krp krp
No value
PKIBody/krp
cmp.krr krr
Unsigned 32-bit integer
PKIBody/krr
cmp.kup kup
No value
PKIBody/kup
cmp.kur kur
Unsigned 32-bit integer
PKIBody/kur
cmp.mac mac
No value
cmp.messageTime messageTime
String
PKIHeader/messageTime
cmp.missingTimeStamp missingTimeStamp
Boolean
cmp.nested nested
No value
PKIBody/nested
cmp.newSigCert newSigCert
No value
KeyRecRepContent/newSigCert
cmp.newWithNew newWithNew
No value
CAKeyUpdAnnContent/newWithNew
cmp.newWithOld newWithOld
No value
CAKeyUpdAnnContent/newWithOld
cmp.next_poll_ref Next Polling Reference
Unsigned 32-bit integer
cmp.oldWithNew oldWithNew
No value
CAKeyUpdAnnContent/oldWithNew
cmp.owf owf
No value
cmp.pKIStatusInfo pKIStatusInfo
No value
ErrorMsgContent/pKIStatusInfo
cmp.poll_ref Polling Reference
Unsigned 32-bit integer
cmp.popdecc popdecc
Unsigned 32-bit integer
PKIBody/popdecc
cmp.popdecr popdecr
Unsigned 32-bit integer
PKIBody/popdecr
cmp.privateKey privateKey
No value
CertifiedKeyPair/privateKey
cmp.protection protection
Byte array
PKIMessage/protection
cmp.protectionAlg protectionAlg
No value
PKIHeader/protectionAlg
cmp.publicationInfo publicationInfo
No value
CertifiedKeyPair/publicationInfo
cmp.pvno pvno
Signed 32-bit integer
PKIHeader/pvno
cmp.rann rann
No value
PKIBody/rann
cmp.recipKID recipKID
Byte array
PKIHeader/recipKID
cmp.recipNonce recipNonce
Byte array
PKIHeader/recipNonce
cmp.recipient recipient
Unsigned 32-bit integer
PKIHeader/recipient
cmp.response response
Unsigned 32-bit integer
CertRepMessage/response
cmp.response_item Item
No value
CertRepMessage/response/_item
cmp.revCerts revCerts
Unsigned 32-bit integer
RevRepContent/revCerts
cmp.revCerts_item Item
No value
RevRepContent/revCerts/_item
cmp.revocationReason revocationReason
Byte array
RevDetails/revocationReason
cmp.rm Record Marker
Unsigned 32-bit integer
Record Marker length of PDU in bytes
cmp.rp rp
No value
PKIBody/rp
cmp.rr rr
Unsigned 32-bit integer
PKIBody/rr
cmp.rspInfo rspInfo
Byte array
CertResponse/rspInfo
cmp.salt salt
Byte array
PBMParameter/salt
cmp.sender sender
Unsigned 32-bit integer
PKIHeader/sender
cmp.senderKID senderKID
Byte array
PKIHeader/senderKID
cmp.senderNonce senderNonce
Byte array
PKIHeader/senderNonce
cmp.status status
Signed 32-bit integer
cmp.statusString statusString
Unsigned 32-bit integer
PKIStatusInfo/statusString
cmp.status_item Item
No value
RevRepContent/status/_item
cmp.transactionID transactionID
Byte array
PKIHeader/transactionID
cmp.ttcb Time to check Back
Date/Time stamp
cmp.type Type
Unsigned 8-bit integer
PDU Type
cmp.type.oid InfoType
String
Type of InfoTypeAndValue
cmp.willBeRevokedAt willBeRevokedAt
String
RevAnnContent/willBeRevokedAt
cmp.witness witness
Byte array
Challenge/witness
cmp.wrongAuthority wrongAuthority
Boolean
Certificate Request Message Format (crmf)
crmf.CertReqMessages_item Item
No value
CertReqMessages/_item
crmf.Controls_item Item
No value
Controls/_item
crmf.PBMParameter PBMParameter
No value
PBMParameter
crmf.action action
Signed 32-bit integer
PKIPublicationInfo/action
crmf.algId algId
No value
PKMACValue/algId
crmf.algorithmIdentifier algorithmIdentifier
No value
POPOSigningKey/algorithmIdentifier
crmf.archiveRemGenPrivKey archiveRemGenPrivKey
Boolean
PKIArchiveOptions/archiveRemGenPrivKey
crmf.authInfo authInfo
Unsigned 32-bit integer
POPOSigningKeyInput/authInfo
crmf.certReq certReq
No value
CertReqMsg/certReq
crmf.certReqId certReqId
Signed 32-bit integer
CertRequest/certReqId
crmf.certTemplate certTemplate
No value
CertRequest/certTemplate
crmf.controls controls
Unsigned 32-bit integer
CertRequest/controls
crmf.dhMAC dhMAC
Byte array
POPOPrivKey/dhMAC
crmf.encSymmKey encSymmKey
Byte array
EncryptedValue/encSymmKey
crmf.encValue encValue
Byte array
EncryptedValue/encValue
crmf.encryptedPrivKey encryptedPrivKey
Unsigned 32-bit integer
PKIArchiveOptions/encryptedPrivKey
crmf.encryptedValue encryptedValue
No value
EncryptedKey/encryptedValue
crmf.envelopedData envelopedData
No value
EncryptedKey/envelopedData
crmf.extensions extensions
Unsigned 32-bit integer
CertTemplate/extensions
crmf.generalTime generalTime
String
Time/generalTime
crmf.intendedAlg intendedAlg
No value
EncryptedValue/intendedAlg
crmf.issuer issuer
Unsigned 32-bit integer
CertTemplate/issuer
crmf.issuerUID issuerUID
Byte array
CertTemplate/issuerUID
crmf.iterationCount iterationCount
Signed 32-bit integer
PBMParameter/iterationCount
crmf.keyAgreement keyAgreement
Unsigned 32-bit integer
ProofOfPossession/keyAgreement
crmf.keyAlg keyAlg
No value
EncryptedValue/keyAlg
crmf.keyEncipherment keyEncipherment
Unsigned 32-bit integer
ProofOfPossession/keyEncipherment
crmf.keyGenParameters keyGenParameters
Byte array
PKIArchiveOptions/keyGenParameters
crmf.mac mac
No value
PBMParameter/mac
crmf.notAfter notAfter
Unsigned 32-bit integer
OptionalValidity/notAfter
crmf.notBefore notBefore
Unsigned 32-bit integer
OptionalValidity/notBefore
crmf.owf owf
No value
PBMParameter/owf
crmf.pop pop
Unsigned 32-bit integer
CertReqMsg/pop
crmf.poposkInput poposkInput
No value
POPOSigningKey/poposkInput
crmf.pubInfos pubInfos
Unsigned 32-bit integer
PKIPublicationInfo/pubInfos
crmf.pubInfos_item Item
No value
PKIPublicationInfo/pubInfos/_item
crmf.pubLocation pubLocation
Unsigned 32-bit integer
SinglePubInfo/pubLocation
crmf.pubMethod pubMethod
Signed 32-bit integer
SinglePubInfo/pubMethod
crmf.publicKey publicKey
No value
crmf.publicKeyMAC publicKeyMAC
No value
POPOSigningKeyInput/authInfo/publicKeyMAC
crmf.raVerified raVerified
No value
ProofOfPossession/raVerified
crmf.regInfo regInfo
Unsigned 32-bit integer
CertReqMsg/regInfo
crmf.regInfo_item Item
No value
CertReqMsg/regInfo/_item
crmf.salt salt
Byte array
PBMParameter/salt
crmf.sender sender
Unsigned 32-bit integer
POPOSigningKeyInput/authInfo/sender
crmf.serialNumber serialNumber
Signed 32-bit integer
crmf.signature signature
No value
ProofOfPossession/signature
crmf.signingAlg signingAlg
No value
CertTemplate/signingAlg
crmf.subject subject
Unsigned 32-bit integer
CertTemplate/subject
crmf.subjectUID subjectUID
Byte array
CertTemplate/subjectUID
crmf.subsequentMessage subsequentMessage
Signed 32-bit integer
POPOPrivKey/subsequentMessage
crmf.symmAlg symmAlg
No value
EncryptedValue/symmAlg
crmf.thisMessage thisMessage
Byte array
POPOPrivKey/thisMessage
crmf.type type
AttributeTypeAndValue/type
crmf.type.oid Type
String
Type of AttributeTypeAndValue
crmf.utcTime utcTime
String
Time/utcTime
crmf.validity validity
No value
CertTemplate/validity
crmf.value value
No value
AttributeTypeAndValue/value
crmf.valueHint valueHint
Byte array
EncryptedValue/valueHint
crmf.version version
Signed 32-bit integer
CertTemplate/version
Check Point High Availability Protocol (cpha)
cpha.ifn Interface Number
Unsigned 32-bit integer
cphap.cluster_number Cluster Number
Unsigned 16-bit integer
Cluster Number
cphap.dst_id Destination Machine ID
Unsigned 16-bit integer
Destination Machine ID
cphap.ethernet_addr Ethernet Address
6-byte Hardware (MAC) Address
Ethernet Address
cphap.filler Filler
Unsigned 16-bit integer
cphap.ha_mode HA mode
Unsigned 16-bit integer
HA Mode
cphap.ha_time_unit HA Time unit
Unsigned 16-bit integer
HA Time unit (ms)
cphap.hash_len Hash list length
Signed 32-bit integer
Hash list length
cphap.id_num Number of IDs reported
Unsigned 16-bit integer
Number of IDs reported
cphap.if_trusted Interface Trusted
Boolean
Interface Trusted
cphap.in_assume_up Interfaces assumed up in the Inbound
Signed 8-bit integer
cphap.in_up Interfaces up in the Inbound
Signed 8-bit integer
Interfaces up in the Inbound
cphap.ip IP Address
IPv4 address
IP Address
cphap.machine_num Machine Number
Signed 16-bit integer
Machine Number
cphap.magic_number CPHAP Magic Number
Unsigned 16-bit integer
CPHAP Magic Number
cphap.opcode OpCode
Unsigned 16-bit integer
OpCode
cphap.out_assume_up Interfaces assumed up in the Outbound
Signed 8-bit integer
cphap.out_up Interfaces up in the Outbound
Signed 8-bit integer
cphap.policy_id Policy ID
Unsigned 16-bit integer
Policy ID
cphap.random_id Random ID
Unsigned 16-bit integer
Random ID
cphap.reported_ifs Reported Interfaces
Unsigned 32-bit integer
Reported Interfaces
cphap.seed Seed
Unsigned 32-bit integer
Seed
cphap.slot_num Slot Number
Signed 16-bit integer
Slot Number
cphap.src_id Source Machine ID
Unsigned 16-bit integer
Source Machine ID
cphap.src_if Source Interface
Unsigned 16-bit integer
Source Interface
cphap.status Status
Unsigned 32-bit integer
cphap.version Protocol Version
Unsigned 16-bit integer
CPHAP Version
Checkpoint FW-1 (fw1)
fw1.chain Chain Position
String
Chain Position
fw1.direction Direction
String
Direction
fw1.interface Interface
String
Interface
fw1.type Type
Unsigned 16-bit integer
fw1.uuid UUID
Unsigned 32-bit integer
UUID
Cisco Auto-RP (auto_rp)
auto_rp.group_prefix Prefix
IPv4 address
Group prefix
auto_rp.holdtime Holdtime
Unsigned 16-bit integer
The amount of time in seconds this announcement is valid
auto_rp.mask_len Mask length
Unsigned 8-bit integer
Length of group prefix
auto_rp.pim_ver Version
Unsigned 8-bit integer
RP's highest PIM version
auto_rp.prefix_sign Sign
Unsigned 8-bit integer
Group prefix sign
auto_rp.rp_addr RP address
IPv4 address
The unicast IP address of the RP
auto_rp.rp_count RP count
Unsigned 8-bit integer
The number of RP addresses contained in this message
auto_rp.type Packet type
Unsigned 8-bit integer
Auto-RP packet type
auto_rp.version Protocol version
Unsigned 8-bit integer
Auto-RP protocol version
Cisco Discovery Protocol (cdp)
cdp.checksum Checksum
Unsigned 16-bit integer
cdp.tlv.len Length
Unsigned 16-bit integer
cdp.tlv.type Type
Unsigned 16-bit integer
cdp.ttl TTL
Unsigned 16-bit integer
cdp.version Version
Unsigned 8-bit integer
Cisco Group Management Protocol (cgmp)
cgmp.count Count
Unsigned 8-bit integer
cgmp.gda Group Destination Address
6-byte Hardware (MAC) Address
Group Destination Address
cgmp.type Type
Unsigned 8-bit integer
cgmp.usa Unicast Source Address
6-byte Hardware (MAC) Address
Unicast Source Address
cgmp.version Version
Unsigned 8-bit integer
Cisco HDLC (chdlc)
chdlc.address Address
Unsigned 8-bit integer
chdlc.protocol Protocol
Unsigned 16-bit integer
Cisco Hot Standby Router Protocol (hsrp)
hsrp.adv.activegrp Adv active groups
Unsigned 8-bit integer
Advertisement active group count
hsrp.adv.passivegrp Adv passive groups
Unsigned 8-bit integer
Advertisement passive group count
hsrp.adv.reserved1 Adv reserved1
Unsigned 8-bit integer
Advertisement tlv length
hsrp.adv.reserved2 Adv reserved2
Unsigned 32-bit integer
Advertisement tlv length
hsrp.adv.state Adv state
Unsigned 8-bit integer
Advertisement tlv length
hsrp.adv.tlvlength Adv length
Unsigned 16-bit integer
Advertisement tlv length
hsrp.adv.tlvtype Adv type
Unsigned 16-bit integer
Advertisement tlv type
hsrp.auth_data Authentication Data
String
Contains a clear-text 8 character reused password
hsrp.group Group
Unsigned 8-bit integer
This field identifies the standby group
hsrp.hellotime Hellotime
Unsigned 8-bit integer
The approximate period between the Hello messages that the router sends
hsrp.holdtime Holdtime
Unsigned 8-bit integer
Time that the current Hello message should be considered valid
hsrp.opcode Op Code
Unsigned 8-bit integer
The type of message contained in this packet
hsrp.priority Priority
Unsigned 8-bit integer
Used to elect the active and standby routers. Numerically higher priority wins vote
hsrp.reserved Reserved
Unsigned 8-bit integer
Reserved
hsrp.state State
Unsigned 8-bit integer
The current state of the router sending the message
hsrp.version Version
Unsigned 8-bit integer
The version of the HSRP messages
hsrp.virt_ip Virtual IP Address
IPv4 address
The virtual IP address used by this group
Cisco ISL (isl)
isl.addr Source or Destination Address
6-byte Hardware (MAC) Address
Source or Destination Hardware Address
isl.bpdu BPDU
Boolean
BPDU indicator
isl.crc CRC
Unsigned 32-bit integer
CRC field of encapsulated frame
isl.dst Destination
Byte array
Destination Address
isl.dst_route_desc Destination route descriptor
Unsigned 16-bit integer
Route descriptor to be used for forwarding
isl.esize Esize
Unsigned 8-bit integer
Frame size for frames less than 64 bytes
isl.explorer Explorer
Boolean
Explorer
isl.fcs_not_incl FCS Not Included
Boolean
FCS not included
isl.hsa HSA
Unsigned 24-bit integer
High bits of source address
isl.index Index
Unsigned 16-bit integer
Port index of packet source
isl.len Length
Unsigned 16-bit integer
isl.src Source
6-byte Hardware (MAC) Address
Source Hardware Address
isl.src_route_desc Source-route descriptor
Unsigned 16-bit integer
Route descriptor to be used for source learning
isl.src_vlan_id Source VLAN ID
Unsigned 16-bit integer
Source Virtual LAN ID
isl.trailer Trailer
Byte array
Ethernet Trailer or Checksum
isl.type Type
Unsigned 8-bit integer
Type
isl.user User
Unsigned 8-bit integer
User-defined bits
isl.user_eth User
Unsigned 8-bit integer
Priority (for Ethernet)
isl.vlan_id VLAN ID
Unsigned 16-bit integer
Virtual LAN ID
Cisco Interior Gateway Routing Protocol (igrp)
igrp.as Autonomous System
Unsigned 16-bit integer
Autonomous System number
igrp.update Update Release
Unsigned 8-bit integer
Update Release number
Cisco NetFlow (cflow)
cflow.aggmethod AggMethod
Unsigned 8-bit integer
CFlow V8 Aggregation Method
cflow.aggversion AggVersion
Unsigned 8-bit integer
CFlow V8 Aggregation Version
cflow.bgpnexthop BGPNextHop
IPv4 address
BGP Router Nexthop
cflow.bgpnexthopv6 BGPNextHop
IPv6 address
BGP Router Nexthop
cflow.count Count
Unsigned 16-bit integer
Count of PDUs
cflow.data_flowset_id Data FlowSet (Template Id)
Unsigned 16-bit integer
Data FlowSet with corresponding to a template Id
cflow.dstaddr DstAddr
IPv4 address
Flow Destination Address
cflow.dstaddrv6 DstAddr
IPv6 address
Flow Destination Address
cflow.dstas DstAS
Unsigned 16-bit integer
Destination AS
cflow.dstmask DstMask
Unsigned 8-bit integer
Destination Prefix Mask
cflow.dstport DstPort
Unsigned 16-bit integer
Flow Destination Port
cflow.engine_id EngineId
Unsigned 8-bit integer
Slot number of switching engine
cflow.engine_type EngineType
Unsigned 8-bit integer
Flow switching engine type
cflow.flags Export Flags
Unsigned 8-bit integer
CFlow Flags
cflow.flow_active_timeout Flow active timeout
Unsigned 16-bit integer
Flow active timeout
cflow.flow_inactive_timeout Flow inactive timeout
Unsigned 16-bit integer
Flow inactive timeout
cflow.flows Flows
Unsigned 32-bit integer
Flows Aggregated in PDU
cflow.flowset_id FlowSet Id
Unsigned 16-bit integer
FlowSet Id
cflow.flowset_length FlowSet Length
Unsigned 16-bit integer
FlowSet length
cflow.flowsexp FlowsExp
Unsigned 32-bit integer
Flows exported
cflow.inputint InputInt
Unsigned 16-bit integer
Flow Input Interface
cflow.muloctets MulticastOctets
Unsigned 32-bit integer
Count of multicast octets
cflow.mulpackets MulticastPackets
Unsigned 32-bit integer
Count of multicast packets
cflow.nexthop NextHop
IPv4 address
Router nexthop
cflow.nexthopv6 NextHop
IPv6 address
Router nexthop
cflow.octets Octets
Unsigned 32-bit integer
Count of bytes
cflow.octets64 Octets
Unsigned 64-bit integer
Count of bytes
cflow.octetsexp OctetsExp
Unsigned 32-bit integer
Octets exported
cflow.option_length Option Length
Unsigned 16-bit integer
Option length
cflow.option_scope_length Option Scope Length
Unsigned 16-bit integer
Option scope length
cflow.options_flowset_id Options FlowSet
Unsigned 16-bit integer
Options FlowSet
cflow.outputint OutputInt
Unsigned 16-bit integer
Flow Output Interface
cflow.packets Packets
Unsigned 32-bit integer
Count of packets
cflow.packets64 Packets
Unsigned 64-bit integer
Count of packets
cflow.packetsexp PacketsExp
Unsigned 32-bit integer
Packets exported
cflow.packetsout PacketsOut
Unsigned 64-bit integer
Count of packets going out
cflow.protocol Protocol
Unsigned 8-bit integer
IP Protocol
cflow.routersc Router Shortcut
IPv4 address
Router shortcut by switch
cflow.samplerate SampleRate
Unsigned 16-bit integer
Sample Frequency of exporter
cflow.sampling_algorithm Sampling algorithm
Unsigned 8-bit integer
Sampling algorithm
cflow.sampling_interval Sampling interval
Unsigned 32-bit integer
Sampling interval
cflow.samplingmode SamplingMode
Unsigned 16-bit integer
Sampling Mode of exporter
cflow.scope_field_length Scope Field Length
Unsigned 16-bit integer
Scope field length
cflow.scope_field_type Scope Type
Unsigned 16-bit integer
Scope field type
cflow.sequence FlowSequence
Unsigned 32-bit integer
Sequence number of flows seen
cflow.source_id SourceId
Unsigned 32-bit integer
Identifier for export device
cflow.srcaddr SrcAddr
IPv4 address
Flow Source Address
cflow.srcaddrv6 SrcAddr
IPv6 address
Flow Source Address
cflow.srcas SrcAS
Unsigned 16-bit integer
Source AS
cflow.srcmask SrcMask
Unsigned 8-bit integer
Source Prefix Mask
cflow.srcnet SrcNet
IPv4 address
Flow Source Network
cflow.srcport SrcPort
Unsigned 16-bit integer
Flow Source Port
cflow.sysuptime SysUptime
Unsigned 32-bit integer
Time since router booted (in milliseconds)
cflow.tcpflags TCP Flags
Unsigned 8-bit integer
TCP Flags
cflow.template_field_count Field Count
Unsigned 16-bit integer
Template field count
cflow.template_field_length Length
Unsigned 16-bit integer
Template field length
cflow.template_field_type Type
Unsigned 16-bit integer
Template field type
cflow.template_flowset_id Template FlowSet
Unsigned 16-bit integer
Template FlowSet
cflow.template_id Template Id
Unsigned 16-bit integer
Template Id
cflow.timeend EndTime
Time duration
Uptime at end of flow
cflow.timestamp Timestamp
Date/Time stamp
Current seconds since epoch
cflow.timestart StartTime
Time duration
Uptime at start of flow
cflow.toplabeladdr TopLabelAddr
IPv4 address
Top MPLS label PE address
cflow.toplabeltype TopLabelType
Unsigned 8-bit integer
Top MPLS label Type
cflow.tos IP ToS
Unsigned 8-bit integer
IP Type of Service
cflow.unix_nsecs CurrentNSecs
Unsigned 32-bit integer
Residual nanoseconds since epoch
cflow.unix_secs CurrentSecs
Unsigned 32-bit integer
Current seconds since epoch
cflow.version Version
Unsigned 16-bit integer
NetFlow Version
Cisco SLARP (slarp)
slarp.address Address
IPv4 address
slarp.mysequence Outgoing sequence number
Unsigned 32-bit integer
slarp.ptype Packet type
Unsigned 32-bit integer
slarp.yoursequence Returned sequence number
Unsigned 32-bit integer
Cisco Wireless Layer 2 (ciscowl)
ciscowl.dstmac Dst MAC
6-byte Hardware (MAC) Address
Destination MAC
ciscowl.ip IP
IPv4 address
Device IP
ciscowl.length Length
Unsigned 16-bit integer
ciscowl.name Name
String
Device Name
ciscowl.null1 Null1
Byte array
ciscowl.null2 Null2
Byte array
ciscowl.rest Rest
Byte array
Unknown remaining data
ciscowl.somemac Some MAC
6-byte Hardware (MAC) Address
Some unknown MAC
ciscowl.srcmac Src MAC
6-byte Hardware (MAC) Address
Source MAC
ciscowl.type Type
Unsigned 16-bit integer
Type(?)
ciscowl.unknown1 Unknown1
Byte array
ciscowl.unknown2 Unknown2
Byte array
ciscowl.unknown3 Unknown3
Byte array
ciscowl.unknown4 Unknown4
Byte array
ciscowl.version Version
String
Device Version String
Clearcase NFS (clearcase)
clearcase.procedure_v3 V3 Procedure
Unsigned 32-bit integer
V3 Procedure
CoSine IPNOS L2 debug output (cosine)
cosine.err Error Code
Unsigned 8-bit integer
cosine.off Offset
Unsigned 8-bit integer
cosine.pri Priority
Unsigned 8-bit integer
cosine.pro Protocol
Unsigned 8-bit integer
cosine.rm Rate Marking
Unsigned 8-bit integer
Common Image Generator Interface (cigi)
cigi.aerosol_concentration_response Aerosol Concentration Response
String
Aerosol Concentration Response Packet
cigi.aerosol_concentration_response.aerosol_concentration Aerosol Concentration (g/m^3)
Identifies the concentration of airborne particles
cigi.aerosol_concentration_response.layer_id Layer ID
Unsigned 8-bit integer
Identifies the weather layer whose aerosol concentration is being described
cigi.aerosol_concentration_response.request_id Request ID
Unsigned 8-bit integer
Identifies the environmental conditions request to which this response packet corresponds
cigi.animation_stop_notification Animation Stop Notification
String
Animation Stop Notification Packet
cigi.animation_stop_notification.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity ID of the animation that has stopped
cigi.art_part_control Articulated Parts Control
String
Articulated Parts Control Packet
cigi.art_part_control.entity_id Entity ID
Unsigned 16-bit integer
Identifies the entity to which this data packet will be applied
cigi.art_part_control.part_enable Articulated Part Enable
Boolean
Determines whether the articulated part submodel should be enabled or disabled within the scene graph
cigi.art_part_control.part_id Articulated Part ID
Unsigned 8-bit integer
Identifies which articulated part is controlled with this data packet
cigi.art_part_control.part_state Articulated Part State
Boolean
Indicates whether an articulated part is to be shown in the display
cigi.art_part_control.pitch Pitch (degrees)
Specifies the pitch of this part with respect to the submodel coordinate system
cigi.art_part_control.pitch_enable Pitch Enable
Boolean
Identifies whether the articulated part pitch enable in this data packet is manipulated from the host
cigi.art_part_control.roll Roll (degrees)
Specifies the roll of this part with respect to the submodel coordinate system
cigi.art_part_control.roll_enable Roll Enable
Boolean
Identifies whether the articulated part roll enable in this data packet is manipulated from the host
cigi.art_part_control.x_offset X Offset (m)
Identifies the distance along the X axis by which the articulated part should be moved
cigi.art_part_control.xoff X Offset (m)
Specifies the distance of the articulated part along its X axis
cigi.art_part_control.xoff_enable X Offset Enable
Boolean
Identifies whether the articulated part x offset in this data packet is manipulated from the host
cigi.art_part_control.y_offset Y Offset (m)
Identifies the distance along the Y axis by which the articulated part should be moved
cigi.art_part_control.yaw Yaw (degrees)
Specifies the yaw of this part with respect to the submodel coordinate system
cigi.art_part_control.yaw_enable Yaw Enable
Unsigned 8-bit integer
Identifies whether the articulated part yaw enable in this data packet is manipulated from the host
cigi.art_part_control.yoff Y Offset (m)
Specifies the distance of the articulated part along its Y axis
cigi.art_part_control.yoff_enable Y Offset Enable
Boolean
Identifies whether the articulated part y offset in this data packet is manipulated from the host
cigi.art_part_control.z_offset Z Offset (m)
Identifies the distance along the Z axis by which the articulated part should be moved
cigi.art_part_control.zoff Z Offset (m)
Specifies the distance of the articulated part along its Z axis
cigi.art_part_control.zoff_enable Z Offset Enable
Boolean
Identifies whether the articulated part z offset in this data packet is manipulated from the host
cigi.atmosphere_control Atmosphere Control
String
Atmosphere Control Packet
cigi.atmosphere_control.air_temp Global Air Temperature (degrees C)
Specifies the global air temperature of the environment
cigi.atmosphere_control.atmospheric_model_enable Atmospheric Model Enable
Boolean
Specifies whether the IG should use an atmospheric model to determine spectral radiances for sensor applications
cigi.atmosphere_control.barometric_pressure Global Barometric Pressure (mb or hPa)
Specifies the global atmospheric pressure
cigi.atmosphere_control.horiz_wind Global Horizontal Wind Speed (m/s)
Specifies the global wind speed parallel to the ellipsoid-tangential reference plane
cigi.atmosphere_control.humidity Global Humidity (%)
Unsigned 8-bit integer
Specifies the global humidity of the environment
cigi.atmosphere_control.vert_wind Global Vertical Wind Speed (m/s)
Specifies the global vertical wind speed
cigi.atmosphere_control.visibility_range Global Visibility Range (m)
Specifies the global visibility range through the atmosphere
cigi.atmosphere_control.wind_direction Global Wind Direction (degrees)
Specifies the global wind direction
cigi.byte_swap Byte Swap
Unsigned 16-bit integer
Used to determine whether the incoming data should be byte-swapped
cigi.celestial_sphere_control Celestial Sphere Control
String
Celestial Sphere Control Packet
cigi.celestial_sphere_control.date Date (MMDDYYYY)
Unsigned 32-bit integer
Specifies the current date within the simulation
cigi.celestial_sphere_control.date_time_valid Date/Time Valid
Boolean
Specifies whether the Hour, Minute, and Date parameters are valid
cigi.celestial_sphere_control.ephemeris_enable Ephemeris Model Enable
Boolean
Controls whether the time of day is static or continuous
cigi.celestial_sphere_control.hour Hour (h)
Unsigned 8-bit integer
Specifies the current hour of the day within the simulation
cigi.celestial_sphere_control.minute Minute (min)
Unsigned 8-bit integer
Specifies the current minute of the day within the simulation
cigi.celestial_sphere_control.moon_enable Moon Enable
Boolean
Specifies whether the moon is enabled in the sky model
cigi.celestial_sphere_control.star_enable Star Field Enable
Boolean
Specifies whether the start field is enabled in the sky model
cigi.celestial_sphere_control.star_intensity Star Field Intensity (%)
Specifies the intensity of the star field within the sky model
cigi.celestial_sphere_control.sun_enable Sun Enable
Boolean
Specifies whether the sun is enabled in the sky model
cigi.coll_det_seg_def Collision Detection Segment Definition
String
Collision Detection Segment Definition Packet
cigi.coll_det_seg_def.collision_mask Collision Mask
Byte array
Indicates which environment features will be included in or excluded from consideration for collision detection testing
cigi.coll_det_seg_def.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity to which this collision detection definition is assigned
cigi.coll_det_seg_def.material_mask Material Mask
Unsigned 32-bit integer
Specifies the environmental and cultural features to be included in or excluded from consideration for collision testing
cigi.coll_det_seg_def.segment_enable Segment Enable
Boolean
Indicates whether the defined segment is enabled for collision testing
cigi.coll_det_seg_def.segment_id Segment ID
Unsigned 8-bit integer
Indicates which segment is being uniquely defined for the given entity
cigi.coll_det_seg_def.x1 X1 (m)
Specifies the X offset of one endpoint of the collision segment
cigi.coll_det_seg_def.x2 X2 (m)
Specifies the X offset of one endpoint of the collision segment
cigi.coll_det_seg_def.x_end Segment X End (m)
Specifies the ending point of the collision segment in the X-axis with respect to the entity's reference point
cigi.coll_det_seg_def.x_start Segment X Start (m)
Specifies the starting point of the collision segment in the X-axis with respect to the entity's reference point
cigi.coll_det_seg_def.y1 Y1 (m)
Specifies the Y offset of one endpoint of the collision segment
cigi.coll_det_seg_def.y2 Y2 (m)
Specifies the Y offset of one endpoint of the collision segment
cigi.coll_det_seg_def.y_end Segment Y End (m)
Specifies the ending point of the collision segment in the Y-axis with respect to the entity's reference point
cigi.coll_det_seg_def.y_start Segment Y Start (m)
Specifies the starting point of the collision segment in the Y-axis with respect to the entity's reference point
cigi.coll_det_seg_def.z1 Z1 (m)
Specifies the Z offset of one endpoint of the collision segment
cigi.coll_det_seg_def.z2 Z2 (m)
Specifies the Z offset of one endpoint of the collision segment
cigi.coll_det_seg_def.z_end Segment Z End (m)
Specifies the ending point of the collision segment in the Z-axis with respect to the entity's reference point
cigi.coll_det_seg_def.z_start Segment Z Start (m)
Specifies the starting point of the collision segment in the Z-axis with respect to the entity's reference point
cigi.coll_det_seg_notification Collision Detection Segment Notification
String
Collision Detection Segment Notification Packet
cigi.coll_det_seg_notification.contacted_entity_id Contacted Entity ID
Unsigned 16-bit integer
Indicates the entity with which the collision occurred
cigi.coll_det_seg_notification.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity to which the collision detection segment belongs
cigi.coll_det_seg_notification.intersection_distance Intersection Distance (m)
Indicates the distance along the collision test vector from the source endpoint to the point of intersection
cigi.coll_det_seg_notification.material_code Material Code
Unsigned 32-bit integer
Indicates the material code of the surface at the point of collision
cigi.coll_det_seg_notification.segment_id Segment ID
Unsigned 8-bit integer
Indicates the ID of the collision detection segment along which the collision occurred
cigi.coll_det_seg_notification.type Collision Type
Boolean
Indicates whether the collision occurred with another entity or with a non-entity object
cigi.coll_det_seg_response Collision Detection Segment Response
String
Collision Detection Segment Response Packet
cigi.coll_det_seg_response.collision_x Collision Point X (m)
Specifies the X component of a vector, which lies along the defined segment where the segment intersected a surface
cigi.coll_det_seg_response.collision_y Collision Point Y (m)
Specifies the Y component of a vector, which lies along the defined segment where the segment intersected a surface
cigi.coll_det_seg_response.collision_z Collision Point Z (m)
Specifies the Z component of a vector, which lies along the defined segment where the segment intersected a surface
cigi.coll_det_seg_response.contact Entity/Non-Entity Contact
Boolean
Indicates whether another entity was contacted during this collision
cigi.coll_det_seg_response.contacted_entity Contacted Entity ID
Unsigned 16-bit integer
Indicates which entity was contacted during the collision
cigi.coll_det_seg_response.entity_id Entity ID
Unsigned 16-bit integer
Indicates which entity experienced a collision
cigi.coll_det_seg_response.material_type Material Type
Signed 32-bit integer
Specifies the material type of the surface that this collision test segment contacted
cigi.coll_det_seg_response.segment_id Segment ID
Unsigned 8-bit integer
Identifies the collision segment
cigi.coll_det_vol_def Collision Detection Volume Definition
String
Collision Detection Volume Definition Packet
cigi.coll_det_vol_def.depth Depth (m)
Specifies the depth of the volume
cigi.coll_det_vol_def.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity to which this collision detection definition is assigned
cigi.coll_det_vol_def.height Height (m)
Specifies the height of the volume
cigi.coll_det_vol_def.pitch Pitch (degrees)
Specifies the pitch of the cuboid with respect to the entity's coordinate system
cigi.coll_det_vol_def.radius_height Radius (m)/Height (m)
Specifies the radius of the sphere or specifies the length of the cuboid along its Z axis
cigi.coll_det_vol_def.roll Roll (degrees)
Specifies the roll of the cuboid with respect to the entity's coordinate system
cigi.coll_det_vol_def.volume_enable Volume Enable
Boolean
Indicates whether the defined volume is enabled for collision testing
cigi.coll_det_vol_def.volume_id Volume ID
Unsigned 8-bit integer
Indicates which volume is being uniquely defined for a given entity
cigi.coll_det_vol_def.volume_type Volume Type
Boolean
Specified whether the volume is spherical or cuboid
cigi.coll_det_vol_def.width Width (m)
Specifies the width of the volume
cigi.coll_det_vol_def.x X (m)
Specifies the X offset of the center of the volume
cigi.coll_det_vol_def.x_offset Centroid X Offset (m)
Specifies the offset of the volume's centroid along the X axis with respect to the entity's reference point
cigi.coll_det_vol_def.y Y (m)
Specifies the Y offset of the center of the volume
cigi.coll_det_vol_def.y_offset Centroid Y Offset (m)
Specifies the offset of the volume's centroid along the Y axis with respect to the entity's reference point
cigi.coll_det_vol_def.yaw Yaw (degrees)
Specifies the yaw of the cuboid with respect to the entity's coordinate system
cigi.coll_det_vol_def.z Z (m)
Specifies the Z offset of the center of the volume
cigi.coll_det_vol_def.z_offset Centroid Z Offset (m)
Specifies the offset of the volume's centroid along the Z axis with respect to the entity's reference point
cigi.coll_det_vol_notification Collision Detection Volume Notification
String
Collision Detection Volume Notification Packet
cigi.coll_det_vol_notification.contacted_entity_id Contacted Entity ID
Unsigned 16-bit integer
Indicates the entity with which the collision occurred
cigi.coll_det_vol_notification.contacted_volume_id Contacted Volume ID
Unsigned 8-bit integer
Indicates the ID of the collision detection volume with which the collision occurred
cigi.coll_det_vol_notification.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity to which the collision detection volume belongs
cigi.coll_det_vol_notification.type Collision Type
Boolean
Indicates whether the collision occurred with another entity or with a non-entity object
cigi.coll_det_vol_notification.volume_id Volume ID
Unsigned 8-bit integer
Indicates the ID of the collision detection volume within which the collision occurred
cigi.coll_det_vol_response Collision Detection Volume Response
String
Collision Detection Volume Response Packet
cigi.coll_det_vol_response.contact Entity/Non-Entity Contact
Boolean
Indicates whether another entity was contacted during this collision
cigi.coll_det_vol_response.contact_entity Contacted Entity ID
Unsigned 16-bit integer
Indicates which entity was contacted with during the collision
cigi.coll_det_vol_response.entity_id Entity ID
Unsigned 16-bit integer
Indicates which entity experienced a collision
cigi.coll_det_vol_response.volume_id Volume ID
Unsigned 8-bit integer
Identifies the collision volume corresponding to the associated Collision Detection Volume Request
cigi.component_control Component Control
String
Component Control Packet
cigi.component_control.component_class Component Class
Unsigned 8-bit integer
Identifies the class the component being controlled is in
cigi.component_control.component_id Component ID
Unsigned 16-bit integer
Identifies the component of a component class and instance ID this packet will be applied to
cigi.component_control.component_state Component State
Unsigned 16-bit integer
Identifies the commanded state of a component
cigi.component_control.component_val1 Component Value 1
Identifies a continuous value to be applied to a component
cigi.component_control.component_val2 Component Value 2
Identifies a continuous value to be applied to a component
cigi.component_control.data_1 Component Data 1
Byte array
User-defined component data
cigi.component_control.data_2 Component Data 2
Byte array
User-defined component data
cigi.component_control.data_3 Component Data 3
Byte array
User-defined component data
cigi.component_control.data_4 Component Data 4
Byte array
User-defined component data
cigi.component_control.data_5 Component Data 5
Byte array
User-defined component data
cigi.component_control.data_6 Component Data 6
Byte array
User-defined component data
cigi.component_control.instance_id Instance ID
Unsigned 16-bit integer
Identifies the instance of the a class the component being controlled belongs to
cigi.conformal_clamped_entity_control Conformal Clamped Entity Control
String
Conformal Clamped Entity Control Packet
cigi.conformal_clamped_entity_control.entity_id Entity ID
Unsigned 16-bit integer
Specifies the entity to which this packet is applied
cigi.conformal_clamped_entity_control.lat Latitude (degrees)
Double-precision floating point
Specifies the entity's geodetic latitude
cigi.conformal_clamped_entity_control.lon Longitude (degrees)
Double-precision floating point
Specifies the entity's geodetic longitude
cigi.conformal_clamped_entity_control.yaw Yaw (degrees)
Specifies the instantaneous heading of the entity
cigi.destport Destination Port
Unsigned 16-bit integer
Destination Port
cigi.earth_ref_model_def Earth Reference Model Definition
String
Earth Reference Model Definition Packet
cigi.earth_ref_model_def.equatorial_radius Equatorial Radius (m)
Double-precision floating point
Specifies the semi-major axis of the ellipsoid
cigi.earth_ref_model_def.erm_enable Custom ERM Enable
Boolean
Specifies whether the IG should use the Earth Reference Model defined by this packet
cigi.earth_ref_model_def.flattening Flattening (m)
Double-precision floating point
Specifies the flattening of the ellipsoid
cigi.entity_control Entity Control
String
Entity Control Packet
cigi.entity_control.alpha Alpha
Unsigned 8-bit integer
Specifies the explicit alpha to be applied to the entity's geometry
cigi.entity_control.alt Altitude (m)
Double-precision floating point
Identifies the altitude position of the reference point of the entity in meters
cigi.entity_control.alt_zoff Altitude (m)/Z Offset (m)
Double-precision floating point
Specifies the entity's altitude or the distance from the parent's reference point along its parent's Z axis
cigi.entity_control.animation_dir Animation Direction
Boolean
Specifies the direction in which an animation plays
cigi.entity_control.animation_loop_mode Animation Loop Mode
Boolean
Specifies whether an animation should be a one-shot
cigi.entity_control.animation_state Animation State
Unsigned 8-bit integer
Specifies the state of an animation
cigi.entity_control.attach_state Attach State
Boolean
Identifies whether the entity should be attach as a child to a parent
cigi.entity_control.coll_det_request Collision Detection Request
Boolean
Determines whether any collision detection segments and volumes associated with this entity are used as the source in collision testing
cigi.entity_control.collision_detect Collision Detection Request
Boolean
Identifies if collision detection is enabled for the entity
cigi.entity_control.effect_state Effect Animation State
Unsigned 8-bit integer
Identifies the animation state of a special effect
cigi.entity_control.entity_id Entity ID
Unsigned 16-bit integer
Identifies the entity motion system
cigi.entity_control.entity_state Entity State
Unsigned 8-bit integer
Identifies the entity's geometry state
cigi.entity_control.entity_type Entity Type
Unsigned 16-bit integer
Specifies the type for the entity
cigi.entity_control.ground_ocean_clamp Ground/Ocean Clamp
Unsigned 8-bit integer
Specifies whether the entity should be clamped to the ground or water surface
cigi.entity_control.inherit_alpha Inherit Alpha
Boolean
Specifies whether the entity's alpha is combined with the apparent alpha of its parent
cigi.entity_control.internal_temp Internal Temperature (degrees C)
Specifies the internal temperature of the entity in degrees Celsius
cigi.entity_control.lat Latitude (degrees)
Double-precision floating point
Identifies the latitude position of the reference point of the entity in degrees
cigi.entity_control.lat_xoff Latitude (degrees)/X Offset (m)
Double-precision floating point
Specifies the entity's geodetic latitude or the distance from the parent's reference point along its parent's X axis
cigi.entity_control.lon Longitude (degrees)
Double-precision floating point
Identifies the longitude position of the reference point of the entity in degrees
cigi.entity_control.lon_yoff Longitude (°)/Y Offset (m)
Double-precision floating point
Specifies the entity's geodetic longitude or the distance from the parent's reference point along its parent's Y axis
cigi.entity_control.opacity Percent Opacity
Specifies the degree of opacity of the entity
cigi.entity_control.parent_id Parent Entity ID
Unsigned 16-bit integer
Identifies the parent to which the entity should be attached
cigi.entity_control.pitch Pitch (degrees)
Specifies the pitch angle of the entity
cigi.entity_control.roll Roll (degrees)
Identifies the roll angle of the entity in degrees
cigi.entity_control.type Entity Type
Unsigned 16-bit integer
Identifies the type of the entity
cigi.entity_control.yaw Yaw (degrees)
Specifies the instantaneous heading of the entity
cigi.env_cond_request Environmental Conditions Request
String
Environmental Conditions Request Packet
cigi.env_cond_request.alt Altitude (m)
Double-precision floating point
Specifies the geodetic altitude at which the environmental state is requested
cigi.env_cond_request.id Request ID
Unsigned 8-bit integer
Identifies the environmental conditions request
cigi.env_cond_request.lat Latitude (degrees)
Double-precision floating point
Specifies the geodetic latitude at which the environmental state is requested
cigi.env_cond_request.lon Longitude (degrees)
Double-precision floating point
Specifies the geodetic longitude at which the environmental state is requested
cigi.env_cond_request.type Request Type
Unsigned 8-bit integer
Specifies the desired response type for the request
cigi.env_control Environment Control
String
Environment Control Packet
cigi.env_control.aerosol Aerosol (gm/m^3)
Controls the liquid water content for the defined atmosphere
cigi.env_control.air_temp Air Temperature (degrees C)
Identifies the global temperature of the environment
cigi.env_control.date Date (MMDDYYYY)
Signed 32-bit integer
Specifies the desired date for use by the ephemeris program within the image generator
cigi.env_control.ephemeris_enable Ephemeris Enable
Boolean
Identifies whether a continuous time of day or static time of day is used
cigi.env_control.global_visibility Global Visibility (m)
Identifies the global visibility
cigi.env_control.hour Hour (h)
Unsigned 8-bit integer
Identifies the hour of the day for the ephemeris program within the image generator
cigi.env_control.humidity Humidity (%)
Unsigned 8-bit integer
Specifies the global humidity of the environment
cigi.env_control.minute Minute (min)
Unsigned 8-bit integer
Identifies the minute of the hour for the ephemeris program within the image generator
cigi.env_control.modtran_enable MODTRAN
Boolean
Identifies whether atmospherics will be included in the calculations
cigi.env_control.pressure Barometric Pressure (mb)
Controls the atmospheric pressure input into MODTRAN
cigi.env_control.wind_direction Wind Direction (degrees)
Identifies the global wind direction
cigi.env_control.wind_speed Wind Speed (m/s)
Identifies the global wind speed
cigi.env_region_control Environmental Region Control
String
Environmental Region Control Packet
cigi.env_region_control.corner_radius Corner Radius (m)
Specifies the radius of the corner of the rounded rectangle
cigi.env_region_control.lat Latitude (degrees)
Double-precision floating point
Specifies the geodetic latitude of the center of the rounded rectangle
cigi.env_region_control.lon Longitude (degrees)
Double-precision floating point
Specifies the geodetic longitude of the center of the rounded rectangle
cigi.env_region_control.merge_aerosol Merge Aerosol Concentrations
Boolean
Specifies whether the concentrations of aerosols found within this region should be merged with those of other regions within areas of overlap
cigi.env_region_control.merge_maritime Merge Maritime Surface Conditions
Boolean
Specifies whether the maritime surface conditions found within this region should be merged with those of other regions within areas of overlap
cigi.env_region_control.merge_terrestrial Merge Terrestrial Surface Conditions
Boolean
Specifies whether the terrestrial surface conditions found within this region should be merged with those of other regions within areas of overlap
cigi.env_region_control.merge_weather Merge Weather Properties
Boolean
Specifies whether atmospheric conditions within this region should be merged with those of other regions within areas of overlap
cigi.env_region_control.region_id Region ID
Unsigned 16-bit integer
Specifies the environmental region to which the data in this packet will be applied
cigi.env_region_control.region_state Region State
Unsigned 8-bit integer
Specifies whether the region should be active or destroyed
cigi.env_region_control.rotation Rotation (degrees)
Specifies the yaw angle of the rounded rectangle
cigi.env_region_control.size_x Size X (m)
Specifies the length of the environmental region along its X axis at the geoid surface
cigi.env_region_control.size_y Size Y (m)
Specifies the length of the environmental region along its Y axis at the geoid surface
cigi.env_region_control.transition_perimeter Transition Perimeter (m)
Specifies the width of the transition perimeter around the environmental region
cigi.event_notification Event Notification
String
Event Notification Packet
cigi.event_notification.data_1 Event Data 1
Byte array
Used for user-defined event data
cigi.event_notification.data_2 Event Data 2
Byte array
Used for user-defined event data
cigi.event_notification.data_3 Event Data 3
Byte array
Used for user-defined event data
cigi.event_notification.event_id Event ID
Unsigned 16-bit integer
Indicates which event has occurred
cigi.frame_size Frame Size (bytes)
Unsigned 8-bit integer
Number of bytes sent with all cigi packets in this frame
cigi.hat_hot_ext_response HAT/HOT Extended Response
String
HAT/HOT Extended Response Packet
cigi.hat_hot_ext_response.hat HAT
Double-precision floating point
Indicates the height of the test point above the terrain
cigi.hat_hot_ext_response.hat_hot_id HAT/HOT ID
Unsigned 16-bit integer
Identifies the HAT/HOT response
cigi.hat_hot_ext_response.hot HOT
Double-precision floating point
Indicates the height of terrain above or below the test point
cigi.hat_hot_ext_response.material_code Material Code
Unsigned 32-bit integer
Indicates the material code of the terrain surface at the point of intersection with the HAT/HOT test vector
cigi.hat_hot_ext_response.normal_vector_azimuth Normal Vector Azimuth (degrees)
Indicates the azimuth of the normal unit vector of the surface intersected by the HAT/HOT test vector
cigi.hat_hot_ext_response.normal_vector_elevation Normal Vector Elevation (degrees)
Indicates the elevation of the normal unit vector of the surface intersected by the HAT/HOT test vector
cigi.hat_hot_ext_response.valid Valid
Boolean
Indicates whether the remaining parameters in this packet contain valid numbers
cigi.hat_hot_request HAT/HOT Request
String
HAT/HOT Request Packet
cigi.hat_hot_request.alt_zoff Altitude (m)/Z Offset (m)
Double-precision floating point
Specifies the altitude from which the HAT/HOT request is being made or specifies the Z offset of the point from which the HAT/HOT request is being made
cigi.hat_hot_request.coordinate_system Coordinate System
Boolean
Specifies the coordinate system within which the test point is defined
cigi.hat_hot_request.entity_id Entity ID
Unsigned 16-bit integer
Specifies the entity relative to which the test point is defined
cigi.hat_hot_request.hat_hot_id HAT/HOT ID
Unsigned 16-bit integer
Identifies the HAT/HOT request
cigi.hat_hot_request.lat_xoff Latitude (degrees)/X Offset (m)
Double-precision floating point
Specifies the latitude from which the HAT/HOT request is being made or specifies the X offset of the point from which the HAT/HOT request is being made
cigi.hat_hot_request.lon_yoff Longitude (degrees)/Y Offset (m)
Double-precision floating point
Specifies the longitude from which the HAT/HOT request is being made or specifies the Y offset of the point from which the HAT/HOT request is being made
cigi.hat_hot_request.type Request Type
Unsigned 8-bit integer
Determines the type of response packet the IG should return for this packet
cigi.hat_hot_response HAT/HOT Response
String
HAT/HOT Response Packet
cigi.hat_hot_response.hat_hot_id HAT/HOT ID
Unsigned 16-bit integer
Identifies the HAT or HOT response
cigi.hat_hot_response.height Height
Double-precision floating point
Contains the requested height
cigi.hat_hot_response.type Response Type
Boolean
Indicates whether the Height parameter represent Height Above Terrain or Height Of Terrain
cigi.hat_hot_response.valid Valid
Boolean
Indicates whether the Height parameter contains a valid number
cigi.hat_request Height Above Terrain Request
String
Height Above Terrain Request Packet
cigi.hat_request.alt Altitude (m)
Double-precision floating point
Specifies the altitude from which the HAT request is being made
cigi.hat_request.hat_id HAT ID
Unsigned 16-bit integer
Identifies the HAT request
cigi.hat_request.lat Latitude (degrees)
Double-precision floating point
Specifies the latitudinal position from which the HAT request is being made
cigi.hat_request.lon Longitude (degrees)
Double-precision floating point
Specifies the longitudinal position from which the HAT request is being made
cigi.hat_response Height Above Terrain Response
String
Height Above Terrain Response Packet
cigi.hat_response.alt Altitude (m)
Double-precision floating point
Represents the altitude above or below the terrain for the position requested
cigi.hat_response.hat_id HAT ID
Unsigned 16-bit integer
Identifies the HAT response
cigi.hat_response.material_type Material Type
Signed 32-bit integer
Specifies the material type of the object intersected by the HAT test vector
cigi.hat_response.valid Valid
Boolean
Indicates whether the response is valid or invalid
cigi.hot_request Height of Terrain Request
String
Height of Terrain Request Packet
cigi.hot_request.hot_id HOT ID
Unsigned 16-bit integer
Identifies the HOT request
cigi.hot_request.lat Latitude (degrees)
Double-precision floating point
Specifies the latitudinal position from which the HOT request is made
cigi.hot_request.lon Longitude (degrees)
Double-precision floating point
Specifies the longitudinal position from which the HOT request is made
cigi.hot_response Height of Terrain Response
String
Height of Terrain Response Packet
cigi.hot_response.alt Altitude (m)
Double-precision floating point
Represents the altitude of the terrain for the position requested in the HOT request data packet
cigi.hot_response.hot_id HOT ID
Unsigned 16-bit integer
Identifies the HOT response corresponding to the associated HOT request
cigi.hot_response.material_type Material Type
Signed 32-bit integer
Specifies the material type of the object intersected by the HOT test segment
cigi.hot_response.valid Valid
Boolean
Indicates whether the response is valid or invalid
cigi.ig_control IG Control
String
IG Control Packet
cigi.ig_control.boresight Tracking Device Boresight
Boolean
Used by the host to enable boresight mode
cigi.ig_control.db_number Database Number
Signed 8-bit integer
Identifies the number associated with the database requiring loading
cigi.ig_control.frame_ctr Frame Counter
Unsigned 32-bit integer
Identifies a particular frame
cigi.ig_control.ig_mode IG Mode Change Request
Unsigned 8-bit integer
Commands the IG to enter its various modes
cigi.ig_control.time_tag Timing Value (microseconds)
Identifies synchronous operation
cigi.ig_control.timestamp Timestamp (microseconds)
Unsigned 32-bit integer
Indicates the number of 10 microsecond "ticks" since some initial reference time
cigi.ig_control.timestamp_valid Timestamp Valid
Boolean
Indicates whether the timestamp contains a valid value
cigi.ig_control.tracking_enable Tracking Device Enable
Boolean
Identifies the state of an external tracking device
cigi.image_generator_message Image Generator Message
String
Image Generator Message Packet
cigi.image_generator_message.message Message
String
Image generator message
cigi.image_generator_message.message_id Message ID
Unsigned 16-bit integer
Uniquely identifies an instance of an Image Generator Response Message
cigi.los_ext_response Line of Sight Extended Response
String
Line of Sight Extended Response Packet
cigi.los_ext_response.alpha Alpha
Unsigned 8-bit integer
Indicates the alpha component of the surface at the point of intersection
cigi.los_ext_response.alt_zoff Altitude (m)/Z Offset(m)
Double-precision floating point
Indicates the geodetic altitude of the point of intersection along the LOS test segment or vector or specifies the offset of the point of intersection of the LOS test segment or vector along the intersected entity's Z axis
cigi.los_ext_response.blue Blue
Unsigned 8-bit integer
Indicates the blue color component of the surface at the point of intersection
cigi.los_ext_response.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity with which a LOS test vector or segment intersects
cigi.los_ext_response.entity_id_valid Entity ID Valid
Boolean
Indicates whether the LOS test vector or segment intersects with an entity
cigi.los_ext_response.green Green
Unsigned 8-bit integer
Indicates the green color component of the surface at the point of intersection
cigi.los_ext_response.intersection_coord Intersection Point Coordinate System
Boolean
Indicates the coordinate system relative to which the intersection point is specified
cigi.los_ext_response.lat_xoff Latitude (degrees)/X Offset (m)
Double-precision floating point
Indicates the geodetic latitude of the point of intersection along the LOS test segment or vector or specifies the offset of the point of intersection of the LOS test segment or vector along the intersected entity's X axis
cigi.los_ext_response.lon_yoff Longitude (degrees)/Y Offset (m)
Double-precision floating point
Indicates the geodetic longitude of the point of intersection along the LOS test segment or vector or specifies the offset of the point of intersection of the LOS test segment or vector along the intersected entity's Y axis
cigi.los_ext_response.los_id LOS ID
Unsigned 16-bit integer
Identifies the LOS response
cigi.los_ext_response.material_code Material Code
Unsigned 32-bit integer
Indicates the material code of the surface intersected by the LOS test segment of vector
cigi.los_ext_response.normal_vector_azimuth Normal Vector Azimuth (degrees)
Indicates the azimuth of a unit vector normal to the surface intersected by the LOS test segment or vector
cigi.los_ext_response.normal_vector_elevation Normal Vector Elevation (degrees)
Indicates the elevation of a unit vector normal to the surface intersected by the LOS test segment or vector
cigi.los_ext_response.range Range (m)
Double-precision floating point
Indicates the distance along the LOS test segment or vector from the source point to the point of intersection with an object
cigi.los_ext_response.range_valid Range Valid
Boolean
Indicates whether the Range parameter is valid
cigi.los_ext_response.red Red
Unsigned 8-bit integer
Indicates the red color component of the surface at the point of intersection
cigi.los_ext_response.response_count Response Count
Unsigned 8-bit integer
Indicates the total number of Line of Sight Extended Response packets the IG will return for the corresponding request
cigi.los_ext_response.valid Valid
Boolean
Indicates whether this packet contains valid data
cigi.los_ext_response.visible Visible
Boolean
Indicates whether the destination point is visible from the source point
cigi.los_occult_request Line of Sight Occult Request
String
Line of Sight Occult Request Packet
cigi.los_occult_request.dest_alt Destination Altitude (m)
Double-precision floating point
Specifies the altitude of the destination point for the LOS request segment
cigi.los_occult_request.dest_lat Destination Latitude (degrees)
Double-precision floating point
Specifies the latitudinal position for the destination point for the LOS request segment
cigi.los_occult_request.dest_lon Destination Longitude (degrees)
Double-precision floating point
Specifies the longitudinal position of the destination point for the LOS request segment
cigi.los_occult_request.los_id LOS ID
Unsigned 16-bit integer
Identifies the LOS request
cigi.los_occult_request.source_alt Source Altitude (m)
Double-precision floating point
Specifies the altitude of the source point for the LOS request segment
cigi.los_occult_request.source_lat Source Latitude (degrees)
Double-precision floating point
Specifies the latitudinal position of the source point for the LOS request segment
cigi.los_occult_request.source_lon Source Longitude (degrees)
Double-precision floating point
Specifies the longitudinal position of the source point for the LOS request segment
cigi.los_range_request Line of Sight Range Request
String
Line of Sight Range Request Packet
cigi.los_range_request.azimuth Azimuth (degrees)
Specifies the azimuth of the LOS vector
cigi.los_range_request.elevation Elevation (degrees)
Specifies the elevation for the LOS vector
cigi.los_range_request.los_id LOS ID
Unsigned 16-bit integer
Identifies the LOS request
cigi.los_range_request.max_range Maximum Range (m)
Specifies the maximum extent from the source position specified in this data packet to a point along the LOS vector where intersection testing will end
cigi.los_range_request.min_range Minimum Range (m)
Specifies the distance from the source position specified in this data packet to a point along the LOS vector where intersection testing will begin
cigi.los_range_request.source_alt Source Altitude (m)
Double-precision floating point
Specifies the altitude of the source point of the LOS request vector
cigi.los_range_request.source_lat Source Latitude (degrees)
Double-precision floating point
Specifies the latitudinal position of the source point of the LOS request vector
cigi.los_range_request.source_lon Source Longitude (degrees)
Double-precision floating point
Specifies the longitudinal position of the source point of the LOS request vector
cigi.los_response Line of Sight Response
String
Line of Sight Response Packet
cigi.los_response.alt Intersection Altitude (m)
Double-precision floating point
Specifies the altitude of the point of intersection of the LOS request vector with an object
cigi.los_response.count Response Count
Unsigned 8-bit integer
Indicates the total number of Line of Sight Response packets the IG will return for the corresponding request
cigi.los_response.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity with which an LOS test vector or segment intersects
cigi.los_response.entity_id_valid Entity ID Valid
Boolean
Indicates whether the LOS test vector or segment intersects with an entity or a non-entity
cigi.los_response.lat Intersection Latitude (degrees)
Double-precision floating point
Specifies the latitudinal position of the intersection point of the LOS request vector with an object
cigi.los_response.lon Intersection Longitude (degrees)
Double-precision floating point
Specifies the longitudinal position of the intersection point of the LOS request vector with an object
cigi.los_response.los_id LOS ID
Unsigned 16-bit integer
Identifies the LOS response corresponding tot he associated LOS request
cigi.los_response.material_type Material Type
Signed 32-bit integer
Specifies the material type of the object intersected by the LOS test segment
cigi.los_response.occult_response Occult Response
Boolean
Used to respond to the LOS occult request data packet
cigi.los_response.range Range (m)
Used to respond to the Line of Sight Range Request data packet
cigi.los_response.valid Valid
Boolean
Indicates whether the response is valid or invalid
cigi.los_response.visible Visible
Boolean
Indicates whether the destination point is visible from the source point
cigi.los_segment_request Line of Sight Segment Request
String
Line of Sight Segment Request Packet
cigi.los_segment_request.alpha_threshold Alpha Threshold
Unsigned 8-bit integer
Specifies the minimum alpha value a surface may have for an LOS response to be generated
cigi.los_segment_request.destination_alt_zoff Destination Altitude (m)/ Destination Z Offset (m)
Double-precision floating point
Specifies the altitude of the destination endpoint of the LOS test segment or specifies the Z offset of the destination endpoint of the LOS test segment
cigi.los_segment_request.destination_coord Destination Point Coordinate System
Boolean
Indicates the coordinate system relative to which the test segment destination endpoint is specified
cigi.los_segment_request.destination_lat_xoff Destination Latitude (degrees)/ Destination X Offset (m)
Double-precision floating point
Specifies the latitude of the destination endpoint of the LOS test segment or specifies the X offset of the destination endpoint of the LOS test segment
cigi.los_segment_request.destination_lon_yoff Destination Longitude (degrees)/Destination Y Offset (m)
Double-precision floating point
Specifies the longitude of the destination endpoint of the LOS test segment or specifies the Y offset of the destination endpoint of the LOS test segment
cigi.los_segment_request.entity_id Entity ID
Unsigned 16-bit integer
Specifies the entity relative to which the test segment endpoints are defined
cigi.los_segment_request.los_id LOS ID
Unsigned 16-bit integer
Identifies the LOS request
cigi.los_segment_request.material_mask Material Mask
Unsigned 32-bit integer
Specifies the environmental and cultural features to be included in or excluded from consideration for the LOS segment testing
cigi.los_segment_request.response_coord Response Coordinate System
Boolean
Specifies the coordinate system to be used in the response
cigi.los_segment_request.source_alt_zoff Source Altitude (m)/Source Z Offset (m)
Double-precision floating point
Specifies the altitude of the source endpoint of the LOS test segment or specifies the Z offset of the source endpoint of the LOS test segment
cigi.los_segment_request.source_coord Source Point Coordinate System
Boolean
Indicates the coordinate system relative to which the test segment source endpoint is specified
cigi.los_segment_request.source_lat_xoff Source Latitude (degrees)/Source X Offset (m)
Double-precision floating point
Specifies the latitude of the source endpoint of the LOS test segment or specifies the X offset of the source endpoint of the LOS test segment
cigi.los_segment_request.source_lon_yoff Source Longitude (degrees)/Source Y Offset (m)
Double-precision floating point
Specifies the longitude of the source endpoint of the LOS test segment or specifies the Y offset of the source endpoint of the LOS test segment
cigi.los_segment_request.type Request Type
Boolean
Determines what type of response the IG should return for this request
cigi.los_vector_request Line of Sight Vector Request
String
Line of Sight Vector Request Packet
cigi.los_vector_request.alpha Alpha Threshold
Unsigned 8-bit integer
Specifies the minimum alpha value a surface may have for an LOS response to be generated
cigi.los_vector_request.azimuth Azimuth (degrees)
Specifies the horizontal angle of the LOS test vector
cigi.los_vector_request.elevation Elevation (degrees)
Specifies the vertical angle of the LOS test vector
cigi.los_vector_request.entity_id Entity ID
Unsigned 16-bit integer
Specifies the entity relative to which the test segment endpoints are defined
cigi.los_vector_request.los_id LOS ID
Unsigned 16-bit integer
Identifies the LOS request
cigi.los_vector_request.material_mask Material Mask
Unsigned 32-bit integer
Specifies the environmental and cultural features to be included in LOS segment testing
cigi.los_vector_request.max_range Maximum Range (m)
Specifies the maximum range along the LOS test vector at which intersection testing should occur
cigi.los_vector_request.min_range Minimum Range (m)
Specifies the minimum range along the LOS test vector at which intersection testing should occur
cigi.los_vector_request.response_coord Response Coordinate System
Boolean
Specifies the coordinate system to be used in the response
cigi.los_vector_request.source_alt_zoff Source Altitude (m)/Source Z Offset (m)
Double-precision floating point
Specifies the altitude of the source point of the LOS test vector or specifies the Z offset of the source point of the LOS test vector
cigi.los_vector_request.source_coord Source Point Coordinate System
Boolean
Indicates the coordinate system relative to which the test vector source point is specified
cigi.los_vector_request.source_lat_xoff Source Latitude (degrees)/Source X Offset (m)
Double-precision floating point
Specifies the latitude of the source point of the LOS test vector
cigi.los_vector_request.source_lon_yoff Source Longitude (degrees)/Source Y Offset (m)
Double-precision floating point
Specifies the longitude of the source point of the LOS test vector
cigi.los_vector_request.type Request Type
Boolean
Determines what type of response the IG should return for this request
cigi.maritime_surface_conditions_control Maritime Surface Conditions Control
String
Maritime Surface Conditions Control Packet
cigi.maritime_surface_conditions_control.entity_region_id Entity ID/Region ID
Unsigned 16-bit integer
Specifies the entity to which the surface attributes in this packet are applied or specifies the region to which the surface attributes are confined
cigi.maritime_surface_conditions_control.scope Scope
Unsigned 8-bit integer
Specifies whether this packet is applied globally, applied to region, or assigned to an entity
cigi.maritime_surface_conditions_control.sea_surface_height Sea Surface Height (m)
Specifies the height of the water above MSL at equilibrium
cigi.maritime_surface_conditions_control.surface_clarity Surface Clarity (%)
Specifies the clarity of the water at its surface
cigi.maritime_surface_conditions_control.surface_conditions_enable Surface Conditions Enable
Boolean
Determines the state of the specified surface conditions
cigi.maritime_surface_conditions_control.surface_water_temp Surface Water Temperature (degrees C)
Specifies the water temperature at the surface
cigi.maritime_surface_conditions_control.whitecap_enable Whitecap Enable
Boolean
Determines whether whitecaps are enabled
cigi.maritime_surface_conditions_response Maritime Surface Conditions Response
String
Maritime Surface Conditions Response Packet
cigi.maritime_surface_conditions_response.request_id Request ID
Unsigned 8-bit integer
Identifies the environmental conditions request to which this response packet corresponds
cigi.maritime_surface_conditions_response.sea_surface_height Sea Surface Height (m)
Indicates the height of the sea surface at equilibrium
cigi.maritime_surface_conditions_response.surface_clarity Surface Clarity (%)
Indicates the clarity of the water at its surface
cigi.maritime_surface_conditions_response.surface_water_temp Surface Water Temperature (degrees C)
Indicates the water temperature at the sea surface
cigi.motion_tracker_control Motion Tracker Control
String
Motion Tracker Control Packet
cigi.motion_tracker_control.boresight_enable Boresight Enable
Boolean
Sets the boresight state of the external tracking device
cigi.motion_tracker_control.pitch_enable Pitch Enable
Boolean
Used to enable or disable the pitch of the motion tracker
cigi.motion_tracker_control.roll_enable Roll Enable
Boolean
Used to enable or disable the roll of the motion tracker
cigi.motion_tracker_control.tracker_enable Tracker Enable
Boolean
Specifies whether the tracking device is enabled
cigi.motion_tracker_control.tracker_id Tracker ID
Unsigned 8-bit integer
Specifies the tracker whose state the data in this packet represents
cigi.motion_tracker_control.view_group_id View/View Group ID
Unsigned 16-bit integer
Specifies the view or view group to which the tracking device is attached
cigi.motion_tracker_control.view_group_select View/View Group Select
Boolean
Specifies whether the tracking device is attached to a single view or a view group
cigi.motion_tracker_control.x_enable X Enable
Boolean
Used to enable or disable the X-axis position of the motion tracker
cigi.motion_tracker_control.y_enable Y Enable
Boolean
Used to enable or disable the Y-axis position of the motion tracker
cigi.motion_tracker_control.yaw_enable Yaw Enable
Boolean
Used to enable or disable the yaw of the motion tracker
cigi.motion_tracker_control.z_enable Z Enable
Boolean
Used to enable or disable the Z-axis position of the motion tracker
cigi.packet_id Packet ID
Unsigned 8-bit integer
Identifies the packet's id
cigi.packet_size Packet Size (bytes)
Unsigned 8-bit integer
Identifies the number of bytes in this type of packet
cigi.port Source or Destination Port
Unsigned 16-bit integer
Source or Destination Port
cigi.pos_request Position Request
String
Position Request Packet
cigi.pos_request.coord_system Coordinate System
Unsigned 8-bit integer
Specifies the desired coordinate system relative to which the position and orientation should be given
cigi.pos_request.object_class Object Class
Unsigned 8-bit integer
Specifies the type of object whose position is being requested
cigi.pos_request.object_id Object ID
Unsigned 16-bit integer
Identifies the entity, view, view group, or motion tracking device whose position is being requested
cigi.pos_request.part_id Articulated Part ID
Unsigned 8-bit integer
Identifies the articulated part whose position is being requested
cigi.pos_request.update_mode Update Mode
Boolean
Specifies whether the IG should report the position of the requested object each frame
cigi.pos_response Position Response
String
Position Response Packet
cigi.pos_response.alt_zoff Altitude (m)/Z Offset (m)
Double-precision floating point
Indicates the geodetic altitude of the entity, articulated part, view, or view group or indicates the Z offset from the parent entity's origin to the child entity, articulated part, view, or view group
cigi.pos_response.coord_system Coordinate System
Unsigned 8-bit integer
Indicates the coordinate system in which the position and orientation are specified
cigi.pos_response.lat_xoff Latitude (degrees)/X Offset (m)
Double-precision floating point
Indicates the geodetic latitude of the entity, articulated part, view, or view group or indicates the X offset from the parent entity's origin to the child entity, articulated part, view or view group
cigi.pos_response.lon_yoff Longitude (degrees)/Y Offset (m)
Double-precision floating point
Indicates the geodetic longitude of the entity, articulated part, view, or view group or indicates the Y offset from the parent entity's origin to the child entity, articulated part, view, or view group
cigi.pos_response.object_class Object Class
Unsigned 8-bit integer
Indicates the type of object whose position is being reported
cigi.pos_response.object_id Object ID
Unsigned 16-bit integer
Identifies the entity, view, view group, or motion tracking device whose position is being reported
cigi.pos_response.part_id Articulated Part ID
Unsigned 8-bit integer
Identifies the articulated part whose position is being reported
cigi.pos_response.pitch Pitch (degrees)
Indicates the pitch angle of the specified entity, articulated part, view, or view group
cigi.pos_response.roll Roll (degrees)
Indicates the roll angle of the specified entity, articulated part, view, or view group
cigi.pos_response.yaw Yaw (degrees)
Indicates the yaw angle of the specified entity, articulated part, view, or view group
cigi.rate_control Rate Control
String
Rate Control Packet
cigi.rate_control.apply_to_part Apply to Articulated Part
Boolean
Determines whether the rate is applied to the articulated part specified by the Articulated Part ID parameter
cigi.rate_control.entity_id Entity ID
Unsigned 16-bit integer
Specifies the entity to which this data packet will be applied
cigi.rate_control.part_id Articulated Part ID
Signed 8-bit integer
Identifies which articulated part is controlled with this data packet
cigi.rate_control.pitch_rate Pitch Angular Rate (degrees/s)
Specifies the pitch angular rate for the entity being represented
cigi.rate_control.roll_rate Roll Angular Rate (degrees/s)
Specifies the roll angular rate for the entity being represented
cigi.rate_control.x_rate X Linear Rate (m/s)
Specifies the x component of the velocity vector for the entity being represented
cigi.rate_control.y_rate Y Linear Rate (m/s)
Specifies the y component of the velocity vector for the entity being represented
cigi.rate_control.yaw_rate Yaw Angular Rate (degrees/s)
Specifies the yaw angular rate for the entity being represented
cigi.rate_control.z_rate Z Linear Rate (m/s)
Specifies the z component of the velocity vector for the entity being represented
cigi.sensor_control Sensor Control
String
Sensor Control Packet
cigi.sensor_control.ac_coupling AC Coupling
Indicates the AC Coupling decay rate for the weapon sensor option
cigi.sensor_control.auto_gain Automatic Gain
Boolean
When set to "on," cause the weapons sensor to automatically adjust the gain value to optimize the brightness and contrast of the sensor display
cigi.sensor_control.gain Gain
Indicates the gain value for the weapon sensor option
cigi.sensor_control.level Level
Indicates the level value for the weapon sensor option
cigi.sensor_control.line_dropout Line-by-Line Dropout
Boolean
Indicates whether the line-by-line dropout feature is enabled
cigi.sensor_control.line_dropout_enable Line-by-Line Dropout Enable
Boolean
Specifies whether line-by-line dropout is enabled
cigi.sensor_control.noise Noise
Indicates the detector-noise gain for the weapon sensor option
cigi.sensor_control.polarity Polarity
Boolean
Indicates whether this sensor is showing white hot or black hot
cigi.sensor_control.response_type Response Type
Boolean
Specifies whether the IG should return a Sensor Response packet or a Sensor Extended Response packet
cigi.sensor_control.sensor_enable Sensor On/Off
Boolean
Indicates whether the sensor is turned on or off
cigi.sensor_control.sensor_id Sensor ID
Unsigned 8-bit integer
Identifies the sensor to which this packet should be applied
cigi.sensor_control.sensor_on_off Sensor On/Off
Boolean
Specifies whether the sensor is turned on or off
cigi.sensor_control.track_mode Track Mode
Unsigned 8-bit integer
Indicates which track mode the sensor should be
cigi.sensor_control.track_polarity Track White/Black
Boolean
Identifies whether the weapons sensor will track wither white or black
cigi.sensor_control.track_white_black Track White/Black
Boolean
Specifies whether the sensor tracks white or black
cigi.sensor_control.view_id View ID
Unsigned 8-bit integer
Dictates to which view the corresponding sensor is assigned, regardless of the view group
cigi.sensor_ext_response Sensor Extended Response
String
Sensor Extended Response Packet
cigi.sensor_ext_response.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity ID of the target
cigi.sensor_ext_response.entity_id_valid Entity ID Valid
Boolean
Indicates whether the target is an entity or a non-entity object
cigi.sensor_ext_response.frame_ctr Frame Counter
Unsigned 32-bit integer
Indicates the IG's frame counter at the time that the IG calculates the gate and line-of-sight intersection data
cigi.sensor_ext_response.gate_x_pos Gate X Position (degrees)
Specifies the gate symbol's position along the view's X axis
cigi.sensor_ext_response.gate_x_size Gate X Size (pixels or raster lines)
Unsigned 16-bit integer
Specifies the gate symbol size along the view's X axis
cigi.sensor_ext_response.gate_y_pos Gate Y Position (degrees)
Specifies the gate symbol's position along the view's Y axis
cigi.sensor_ext_response.gate_y_size Gate Y Size (pixels or raster lines)
Unsigned 16-bit integer
Specifies the gate symbol size along the view's Y axis
cigi.sensor_ext_response.sensor_id Sensor ID
Unsigned 8-bit integer
Specifies the sensor to which the data in this packet apply
cigi.sensor_ext_response.sensor_status Sensor Status
Unsigned 8-bit integer
Indicates the current tracking state of the sensor
cigi.sensor_ext_response.track_alt Track Point Altitude (m)
Double-precision floating point
Indicates the geodetic altitude of the point being tracked by the sensor
cigi.sensor_ext_response.track_lat Track Point Latitude (degrees)
Double-precision floating point
Indicates the geodetic latitude of the point being tracked by the sensor
cigi.sensor_ext_response.track_lon Track Point Longitude (degrees)
Double-precision floating point
Indicates the geodetic longitude of the point being tracked by the sensor
cigi.sensor_ext_response.view_id View ID
Unsigned 16-bit integer
Specifies the view that represents the sensor display
cigi.sensor_response Sensor Response
String
Sensor Response Packet
cigi.sensor_response.frame_ctr Frame Counter
Unsigned 32-bit integer
Indicates the IG's frame counter at the time that the IG calculates the gate and line-of-sight intersection data
cigi.sensor_response.gate_x_pos Gate X Position (degrees)
Specifies the gate symbol's position along the view's X axis
cigi.sensor_response.gate_x_size Gate X Size (pixels or raster lines)
Unsigned 16-bit integer
Specifies the gate symbol size along the view's X axis
cigi.sensor_response.gate_y_pos Gate Y Position (degrees)
Specifies the gate symbol's position along the view's Y axis
cigi.sensor_response.gate_y_size Gate Y Size (pixels or raster lines)
Unsigned 16-bit integer
Specifies the gate symbol size along the view's Y axis
cigi.sensor_response.sensor_id Sensor ID
Unsigned 8-bit integer
Identifies the sensor response corresponding to the associated sensor control data packet
cigi.sensor_response.sensor_status Sensor Status
Unsigned 8-bit integer
Indicates the current tracking state of the sensor
cigi.sensor_response.status Sensor Status
Unsigned 8-bit integer
Indicates the current sensor mode
cigi.sensor_response.view_id View ID
Unsigned 8-bit integer
Indicates the sensor view
cigi.sensor_response.x_offset Gate X Offset (degrees)
Unsigned 16-bit integer
Specifies the target's horizontal offset from the view plane normal
cigi.sensor_response.x_size Gate X Size
Unsigned 16-bit integer
Specifies the target size in the X direction (horizontal) in pixels
cigi.sensor_response.y_offset Gate Y Offset (degrees)
Unsigned 16-bit integer
Specifies the target's vertical offset from the view plane normal
cigi.sensor_response.y_size Gate Y Size
Unsigned 16-bit integer
Specifies the target size in the Y direction (vertical) in pixels
cigi.short_art_part_control Short Articulated Part Control
String
Short Articulated Part Control Packet
cigi.short_art_part_control.dof_1 DOF 1
Specifies either an offset or an angular position for the part identified by Articulated Part ID 1
cigi.short_art_part_control.dof_2 DOF 2
Specifies either an offset or an angular position for the part identified by Articulated Part ID 2
cigi.short_art_part_control.dof_select_1 DOF Select 1
Unsigned 8-bit integer
Specifies the degree of freedom to which the value of DOF 1 is applied
cigi.short_art_part_control.dof_select_2 DOF Select 2
Unsigned 8-bit integer
Specifies the degree of freedom to which the value of DOF 2 is applied
cigi.short_art_part_control.entity_id Entity ID
Unsigned 16-bit integer
Specifies the entity to which the articulated part(s) belongs
cigi.short_art_part_control.part_enable_1 Articulated Part Enable 1
Boolean
Determines whether the articulated part submodel specified by Articulated Part ID 1 should be enabled or disabled within the scene graph
cigi.short_art_part_control.part_enable_2 Articulated Part Enable 2
Boolean
Determines whether the articulated part submodel specified by Articulated Part ID 2 should be enabled or disabled within the scene graph
cigi.short_art_part_control.part_id_1 Articulated Part ID 1
Unsigned 8-bit integer
Specifies an articulated part to which the data in this packet should be applied
cigi.short_art_part_control.part_id_2 Articulated Part ID 2
Unsigned 8-bit integer
Specifies an articulated part to which the data in this packet should be applied
cigi.short_component_control Short Component Control
String
Short Component Control Packet
cigi.short_component_control.component_class Component Class
Unsigned 8-bit integer
Identifies the type of object to which the Instance ID parameter refers
cigi.short_component_control.component_id Component ID
Unsigned 16-bit integer
Identifies the component to which the data in this packet should be applied
cigi.short_component_control.component_state Component State
Unsigned 8-bit integer
Specifies a discrete state for the component
cigi.short_component_control.data_1 Component Data 1
Byte array
User-defined component data
cigi.short_component_control.data_2 Component Data 2
Byte array
User-defined component data
cigi.short_component_control.instance_id Instance ID
Unsigned 16-bit integer
Identifies the object to which the component belongs
cigi.sof Start of Frame
String
Start of Frame Packet
cigi.sof.db_number Database Number
Signed 8-bit integer
Indicates load status of the requested database
cigi.sof.earth_reference_model Earth Reference Model
Boolean
Indicates whether the IG is using a custom Earth Reference Model or the default WGS 84 reference ellipsoid for coordinate conversion calculations
cigi.sof.frame_ctr IG to Host Frame Counter
Unsigned 32-bit integer
Contains a number representing a particular frame
cigi.sof.ig_mode IG Mode
Unsigned 8-bit integer
Identifies to the host the current operating mode of the IG
cigi.sof.ig_status IG Status Code
Unsigned 8-bit integer
Indicates the error status of the IG
cigi.sof.ig_status_code IG Status Code
Unsigned 8-bit integer
Indicates the operational status of the IG
cigi.sof.time_tag Timing Value (microseconds)
Contains a timing value that is used to time-tag the ethernet message during asynchronous operation
cigi.sof.timestamp Timestamp (microseconds)
Unsigned 32-bit integer
Indicates the number of 10 microsecond "ticks" since some initial reference time
cigi.sof.timestamp_valid Timestamp Valid
Boolean
Indicates whether the Timestamp parameter contains a valid value
cigi.special_effect_def Special Effect Definition
String
Special Effect Definition Packet
cigi.special_effect_def.blue Blue Color Value
Unsigned 8-bit integer
Specifies the blue component of a color to be applied to the effect
cigi.special_effect_def.burst_interval Burst Interval (s)
Indicates the time between successive bursts
cigi.special_effect_def.color_enable Color Enable
Boolean
Indicates whether the red, green, and blue color values will be applied to the special effect
cigi.special_effect_def.duration Duration (s)
Indicates how long an effect or sequence of burst will be active
cigi.special_effect_def.effect_count Effect Count
Unsigned 16-bit integer
Indicates how many effects are contained within a single burst
cigi.special_effect_def.entity_id Entity ID
Unsigned 16-bit integer
Indicates which effect is being modified
cigi.special_effect_def.green Green Color Value
Unsigned 8-bit integer
Specifies the green component of a color to be applied to the effect
cigi.special_effect_def.red Red Color Value
Unsigned 8-bit integer
Specifies the red component of a color to be applied to the effect
cigi.special_effect_def.separation Separation (m)
Indicates the distance between particles within a burst
cigi.special_effect_def.seq_direction Sequence Direction
Boolean
Indicates whether the effect animation sequence should be sequence from beginning to end or vice versa
cigi.special_effect_def.time_scale Time Scale
Specifies a scale factor to apply to the time period for the effect's animation sequence
cigi.special_effect_def.x_scale X Scale
Specifies a scale factor to apply along the effect's X axis
cigi.special_effect_def.y_scale Y Scale
Specifies a scale factor to apply along the effect's Y axis
cigi.special_effect_def.z_scale Z Scale
Specifies a scale factor to apply along the effect's Z axis
cigi.srcport Source Port
Unsigned 16-bit integer
Source Port
cigi.terr_surface_cond_response Terrestrial Surface Conditions Response
String
Terrestrial Surface Conditions Response Packet
cigi.terr_surface_cond_response.request_id Request ID
Unsigned 8-bit integer
Identifies the environmental conditions request to which this response packet corresponds
cigi.terr_surface_cond_response.surface_id Surface Condition ID
Unsigned 32-bit integer
Indicates the presence of a specific surface condition or contaminant at the test point
cigi.terrestrial_surface_conditions_control Terrestrial Surface Conditions Control
String
Terrestrial Surface Conditions Control Packet
cigi.terrestrial_surface_conditions_control.coverage Coverage (%)
Unsigned 8-bit integer
Determines the degree of coverage of the specified surface contaminant
cigi.terrestrial_surface_conditions_control.entity_region_id Entity ID/Region ID
Unsigned 16-bit integer
Specifies the environmental entity to which the surface condition attributes in this packet are applied
cigi.terrestrial_surface_conditions_control.scope Scope
Unsigned 8-bit integer
Determines whether the specified surface conditions are applied globally, regionally, or to an environmental entity
cigi.terrestrial_surface_conditions_control.severity Severity
Unsigned 8-bit integer
Determines the degree of severity for the specified surface contaminant(s)
cigi.terrestrial_surface_conditions_control.surface_condition_enable Surface Condition Enable
Boolean
Specifies whether the surface condition attribute identified by the Surface Condition ID parameter should be enabled
cigi.terrestrial_surface_conditions_control.surface_condition_id Surface Condition ID
Unsigned 16-bit integer
Identifies a surface condition or contaminant
cigi.trajectory_def Trajectory Definition
String
Trajectory Definition Packet
cigi.trajectory_def.acceleration Acceleration Factor (m/s^2)
Indicates the acceleration factor that will be applied to the Vz component of the velocity vector over time to simulate the effects of gravity on the object
cigi.trajectory_def.acceleration_x Acceleration X (m/s^2)
Specifies the X component of the acceleration vector
cigi.trajectory_def.acceleration_y Acceleration Y (m/s^2)
Specifies the Y component of the acceleration vector
cigi.trajectory_def.acceleration_z Acceleration Z (m/s^2)
Specifies the Z component of the acceleration vector
cigi.trajectory_def.entity_id Entity ID
Unsigned 16-bit integer
Indicates which entity is being influenced by this trajectory behavior
cigi.trajectory_def.retardation Retardation Rate (m/s)
Indicates what retardation factor will be applied to the object's motion
cigi.trajectory_def.retardation_rate Retardation Rate (m/s^2)
Specifies the magnitude of an acceleration applied against the entity's instantaneous linear velocity vector
cigi.trajectory_def.terminal_velocity Terminal Velocity (m/s)
Indicates what final velocity the object will be allowed to obtain
cigi.unknown Unknown
String
Unknown Packet
cigi.user_definable User Definable
String
User definable packet
cigi.user_defined User-Defined
String
User-Defined Packet
cigi.version CIGI Version
Unsigned 8-bit integer
Identifies the version of CIGI interface that is currently running on the host
cigi.view_control View Control
String
View Control Packet
cigi.view_control.entity_id Entity ID
Unsigned 16-bit integer
Indicates the entity to which this view should be attached
cigi.view_control.group_id Group ID
Unsigned 8-bit integer
Specifies the view group to which the contents of this packet are applied
cigi.view_control.pitch Pitch (degrees)
The rotation about the view's Y axis
cigi.view_control.pitch_enable Pitch Enable
Unsigned 8-bit integer
Identifies whether the pitch parameter should be applied to the specified view or view group
cigi.view_control.roll Roll (degrees)
The rotation about the view's X axis
cigi.view_control.roll_enable Roll Enable
Unsigned 8-bit integer
Identifies whether the roll parameter should be applied to the specified view or view group
cigi.view_control.view_group View Group Select
Unsigned 8-bit integer
Specifies which view group is to be controlled by the offsets
cigi.view_control.view_id View ID
Unsigned 8-bit integer
Specifies which view position is associated with offsets and rotation specified by this data packet
cigi.view_control.x_offset X Offset (m)
Defines the X component of the view offset vector along the entity's longitudinal axis
cigi.view_control.xoff X Offset (m)
Specifies the position of the view eyepoint along the X axis of the entity specified by the Entity ID parameter
cigi.view_control.xoff_enable X Offset Enable
Boolean
Identifies whether the x offset parameter should be applied to the specified view or view group
cigi.view_control.y_offset Y Offset
Defines the Y component of the view offset vector along the entity's lateral axis
cigi.view_control.yaw Yaw (degrees)
The rotation about the view's Z axis
cigi.view_control.yaw_enable Yaw Enable
Unsigned 8-bit integer
Identifies whether the yaw parameter should be applied to the specified view or view group
cigi.view_control.yoff Y Offset (m)
Specifies the position of the view eyepoint along the Y axis of the entity specified by the Entity ID parameter
cigi.view_control.yoff_enable Y Offset Enable
Unsigned 8-bit integer
Identifies whether the y offset parameter should be applied to the specified view or view group
cigi.view_control.z_offset Z Offset
Defines the Z component of the view offset vector along the entity's vertical axis
cigi.view_control.zoff Z Offset (m)
Specifies the position of the view eyepoint along the Z axis of the entity specified by the Entity ID parameter
cigi.view_control.zoff_enable Z Offset Enable
Unsigned 8-bit integer
Identifies whether the z offset parameter should be applied to the specified view or view group
cigi.view_def View Definition
String
View Definition Packet
cigi.view_def.bottom Bottom (degrees)
Specifies the bottom half-angle of the view frustum
cigi.view_def.bottom_enable Field of View Bottom Enable
Boolean
Identifies whether the field of view bottom value is manipulated from the Host
cigi.view_def.far Far (m)
Specifies the position of the view's far clipping plane
cigi.view_def.far_enable Field of View Far Enable
Boolean
Identifies whether the field of view far value is manipulated from the Host
cigi.view_def.fov_bottom Field of View Bottom (degrees)
Defines the bottom clipping plane for the view
cigi.view_def.fov_far Field of View Far (m)
Defines the far clipping plane for the view
cigi.view_def.fov_left Field of View Left (degrees)
Defines the left clipping plane for the view
cigi.view_def.fov_near Field of View Near (m)
Defines the near clipping plane for the view
cigi.view_def.fov_right Field of View Right (degrees)
Defines the right clipping plane for the view
cigi.view_def.fov_top Field of View Top (degrees)
Defines the top clipping plane for the view
cigi.view_def.group_id Group ID
Unsigned 8-bit integer
Specifies the group to which the view is to be assigned
cigi.view_def.left Left (degrees)
Specifies the left half-angle of the view frustum
cigi.view_def.left_enable Field of View Left Enable
Boolean
Identifies whether the field of view left value is manipulated from the Host
cigi.view_def.mirror View Mirror
Unsigned 8-bit integer
Specifies what mirroring function should be applied to the view
cigi.view_def.mirror_mode Mirror Mode
Unsigned 8-bit integer
Specifies the mirroring function to be performed on the view
cigi.view_def.near Near (m)
Specifies the position of the view's near clipping plane
cigi.view_def.near_enable Field of View Near Enable
Boolean
Identifies whether the field of view near value is manipulated from the Host
cigi.view_def.pixel_rep Pixel Replication
Unsigned 8-bit integer
Specifies what pixel replication function should be applied to the view
cigi.view_def.pixel_replication Pixel Replication Mode
Unsigned 8-bit integer
Specifies the pixel replication function to be performed on the view
cigi.view_def.projection_type Projection Type
Boolean
Specifies whether the view projection should be perspective or orthographic parallel
cigi.view_def.reorder Reorder
Boolean
Specifies whether the view should be moved to the top of any overlapping views
cigi.view_def.right Right (degrees)
Specifies the right half-angle of the view frustum
cigi.view_def.right_enable Field of View Right Enable
Boolean
Identifies whether the field of view right value is manipulated from the Host
cigi.view_def.top Top (degrees)
Specifies the top half-angle of the view frustum
cigi.view_def.top_enable Field of View Top Enable
Boolean
Identifies whether the field of view top value is manipulated from the Host
cigi.view_def.tracker_assign Tracker Assign
Boolean
Specifies whether the view should be controlled by an external tracking device
cigi.view_def.view_group View Group
Unsigned 8-bit integer
Specifies the view group to which the view is to be assigned
cigi.view_def.view_id View ID
Unsigned 8-bit integer
Specifies the view to which this packet should be applied
cigi.view_def.view_type View Type
Unsigned 8-bit integer
Specifies the view type
cigi.wave_control Wave Control
String
Wave Control Packet
cigi.wave_control.breaker_type Breaker Type
Unsigned 8-bit integer
Specifies the type of breaker within the surf zone
cigi.wave_control.direction Direction (degrees)
Specifies the direction in which the wave propagates
cigi.wave_control.entity_region_id Entity ID/Region ID
Unsigned 16-bit integer
Specifies the surface entity for which the wave is defined or specifies the environmental region for which the wave is defined
cigi.wave_control.height Wave Height (m)
Specifies the average vertical distance from trough to crest produced by the wave
cigi.wave_control.leading Leading (degrees)
Specifies the phase angle at which the crest occurs
cigi.wave_control.period Period (s)
Specifies the time required fro one complete oscillation of the wave
cigi.wave_control.phase_offset Phase Offset (degrees)
Specifies a phase offset for the wave
cigi.wave_control.scope Scope
Unsigned 8-bit integer
Specifies whether the wave is defined for global, regional, or entity-controlled maritime surface conditions
cigi.wave_control.wave_enable Wave Enable
Boolean
Determines whether the wave is enabled or disabled
cigi.wave_control.wave_id Wave ID
Unsigned 8-bit integer
Specifies the wave to which the attributes in this packet are applied
cigi.wave_control.wavelength Wavelength (m)
Specifies the distance from a particular phase on a wave to the same phase on an adjacent wave
cigi.wea_cond_response Weather Conditions Response
String
Weather Conditions Response Packet
cigi.wea_cond_response.air_temp Air Temperature (degrees C)
Indicates the air temperature at the requested location
cigi.wea_cond_response.barometric_pressure Barometric Pressure (mb or hPa)
Indicates the atmospheric pressure at the requested location
cigi.wea_cond_response.horiz_speed Horizontal Wind Speed (m/s)
Indicates the local wind speed parallel to the ellipsoid-tangential reference plane
cigi.wea_cond_response.humidity Humidity (%)
Unsigned 8-bit integer
Indicates the humidity at the request location
cigi.wea_cond_response.request_id Request ID
Unsigned 8-bit integer
Identifies the environmental conditions request to which this response packet corresponds
cigi.wea_cond_response.vert_speed Vertical Wind Speed (m/s)
Indicates the local vertical wind speed
cigi.wea_cond_response.visibility_range Visibility Range (m)
Indicates the visibility range at the requested location
cigi.wea_cond_response.wind_direction Wind Direction (degrees)
Indicates the local wind direction
cigi.weather_control Weather Control
String
Weather Control Packet
cigi.weather_control.aerosol_concentration Aerosol Concentration (g/m^3)
Specifies the concentration of water, smoke, dust, or other particles suspended in the air
cigi.weather_control.air_temp Air Temperature (degrees C)
Identifies the local temperature inside the weather phenomenon
cigi.weather_control.barometric_pressure Barometric Pressure (mb or hPa)
Specifies the atmospheric pressure within the weather layer
cigi.weather_control.base_elevation Base Elevation (m)
Specifies the altitude of the base of the weather layer
cigi.weather_control.cloud_type Cloud Type
Unsigned 8-bit integer
Specifies the type of clouds contained within the weather layer
cigi.weather_control.coverage Coverage (%)
Indicates the amount of area coverage a particular phenomenon has over the specified global visibility range given in the environment control data packet
cigi.weather_control.elevation Elevation (m)
Indicates the base altitude of the weather phenomenon
cigi.weather_control.entity_id Entity ID
Unsigned 16-bit integer
Identifies the entity's ID
cigi.weather_control.entity_region_id Entity ID/Region ID
Unsigned 16-bit integer
Specifies the entity to which the weather attributes in this packet are applied
cigi.weather_control.horiz_wind Horizontal Wind Speed (m/s)
Specifies the local wind speed parallel to the ellipsoid-tangential reference plane
cigi.weather_control.humidity Humidity (%)
Unsigned 8-bit integer
Specifies the humidity within the weather layer
cigi.weather_control.layer_id Layer ID
Unsigned 8-bit integer
Specifies the weather layer to which the data in this packet are applied
cigi.weather_control.opacity Opacity (%)
Identifies the opacity of the weather phenomenon
cigi.weather_control.phenomenon_type Phenomenon Type
Unsigned 16-bit integer
Identifies the type of weather described by this data packet
cigi.weather_control.random_lightning_enable Random Lightning Enable
Unsigned 8-bit integer
Specifies whether the weather layer exhibits random lightning effects
cigi.weather_control.random_winds Random Winds Aloft
Boolean
Indicates whether a random frequency and duration should be applied to the winds aloft value
cigi.weather_control.random_winds_enable Random Winds Enable
Boolean
Specifies whether a random frequency and duration should be applied to the local wind effects
cigi.weather_control.scope Scope
Unsigned 8-bit integer
Specifies whether the weather is global, regional, or assigned to an entity
cigi.weather_control.scud_enable Scud Enable
Boolean
Indicates whether there will be scud effects applied to the phenomenon specified by this data packet
cigi.weather_control.scud_frequency Scud Frequency (%)
Identifies the frequency for the scud effect
cigi.weather_control.severity Severity
Unsigned 8-bit integer
Indicates the severity of the weather phenomenon
cigi.weather_control.thickness Thickness (m)
Indicates the vertical thickness of the weather phenomenon
cigi.weather_control.transition_band Transition Band (m)
Indicates a vertical transition band both above and below a phenomenon
cigi.weather_control.vert_wind Vertical Wind Speed (m/s)
Specifies the local vertical wind speed
cigi.weather_control.visibility_range Visibility Range (m)
Specifies the visibility range through the weather layer
cigi.weather_control.weather_enable Weather Enable
Boolean
Indicates whether the phenomena specified by this data packet is visible
cigi.weather_control.wind_direction Winds Aloft Direction (degrees)
Indicates local direction of the wind applied to the phenomenon
cigi.weather_control.wind_speed Winds Aloft Speed
Identifies the local wind speed applied to the phenomenon
Common Industrial Protocol (cip)
cip.attribute Attribute
Unsigned 8-bit integer
Attribute
cip.class Class
Unsigned 8-bit integer
Class
cip.connpoint Connection Point
Unsigned 8-bit integer
Connection Point
cip.devtype Device Type
Unsigned 16-bit integer
Device Type
cip.epath EPath
Byte array
EPath
cip.fwo.cmp Compatibility
Unsigned 8-bit integer
Fwd Open: Compatibility bit
cip.fwo.consize Connection Size
Unsigned 16-bit integer
Fwd Open: Connection size
cip.fwo.dir Direction
Unsigned 8-bit integer
Fwd Open: Direction
cip.fwo.f_v Connection Size Type
Unsigned 16-bit integer
Fwd Open: Fixed or variable connection size
cip.fwo.major Major Revision
Unsigned 8-bit integer
Fwd Open: Major Revision
cip.fwo.owner Owner
Unsigned 16-bit integer
Fwd Open: Redundant owner bit
cip.fwo.prio Priority
Unsigned 16-bit integer
Fwd Open: Connection priority
cip.fwo.transport Class
Unsigned 8-bit integer
Fwd Open: Transport Class
cip.fwo.trigger Trigger
Unsigned 8-bit integer
Fwd Open: Production trigger
cip.fwo.type Connection Type
Unsigned 16-bit integer
Fwd Open: Connection type
cip.genstat General Status
Unsigned 8-bit integer
General Status
cip.instance Instance
Unsigned 8-bit integer
Instance
cip.linkaddress Link Address
Unsigned 8-bit integer
Link Address
cip.port Port
Unsigned 8-bit integer
Port Identifier
cip.rr Request/Response
Unsigned 8-bit integer
Request or Response message
cip.sc Service
Unsigned 8-bit integer
Service Code
cip.symbol Symbol
String
ANSI Extended Symbol Segment
cip.vendor Vendor ID
Unsigned 16-bit integer
Vendor ID
Common Open Policy Service (cops)
cops.accttimer.value Contents: ACCT Timer Value
Unsigned 16-bit integer
Accounting Timer Value in AcctTimer object
cops.c_num C-Num
Unsigned 8-bit integer
C-Num in COPS Object Header
cops.c_type C-Type
Unsigned 8-bit integer
C-Type in COPS Object Header
cops.client_type Client Type
Unsigned 16-bit integer
Client Type in COPS Common Header
cops.context.m_type M-Type
Unsigned 16-bit integer
M-Type in COPS Context Object
cops.context.r_type R-Type
Unsigned 16-bit integer
R-Type in COPS Context Object
cops.cperror Error
Unsigned 16-bit integer
Error in Error object
cops.cperror_sub Error Sub-code
Unsigned 16-bit integer
Error Sub-code in Error object
cops.decision.cmd Command-Code
Unsigned 16-bit integer
Command-Code in Decision/LPDP Decision object
cops.decision.flags Flags
Unsigned 16-bit integer
Flags in Decision/LPDP Decision object
cops.error Error
Unsigned 16-bit integer
Error in Error object
cops.error_sub Error Sub-code
Unsigned 16-bit integer
Error Sub-code in Error object
cops.flags Flags
Unsigned 8-bit integer
Flags in COPS Common Header
cops.gperror Error
Unsigned 16-bit integer
Error in Error object
cops.gperror_sub Error Sub-code
Unsigned 16-bit integer
Error Sub-code in Error object
cops.in-int.ipv4 IPv4 address
IPv4 address
IPv4 address in COPS IN-Int object
cops.in-int.ipv6 IPv6 address
IPv6 address
IPv6 address in COPS IN-Int object
cops.in-out-int.ifindex ifIndex
Unsigned 32-bit integer
If SNMP is supported, corresponds to MIB-II ifIndex
cops.integrity.key_id Contents: Key ID
Unsigned 32-bit integer
Key ID in Integrity object
cops.integrity.seq_num Contents: Sequence Number
Unsigned 32-bit integer
Sequence Number in Integrity object
cops.katimer.value Contents: KA Timer Value
Unsigned 16-bit integer
Keep-Alive Timer Value in KATimer object
cops.lastpdpaddr.ipv4 IPv4 address
IPv4 address
IPv4 address in COPS LastPDPAddr object
cops.lastpdpaddr.ipv6 IPv6 address
IPv6 address
IPv6 address in COPS LastPDPAddr object
cops.msg_len Message Length
Unsigned 32-bit integer
Message Length in COPS Common Header
cops.obj.len Object Length
Unsigned 32-bit integer
Object Length in COPS Object Header
cops.op_code Op Code
Unsigned 8-bit integer
Op Code in COPS Common Header
cops.out-int.ipv4 IPv4 address
IPv4 address
IPv4 address in COPS OUT-Int object
cops.out-int.ipv6 IPv6 address
IPv6 address
IPv6 address in COPS OUT-Int
cops.pc_activity_count Count
Unsigned 32-bit integer
Count
cops.pc_algorithm Algorithm
Unsigned 16-bit integer
Algorithm
cops.pc_bcid Billing Correlation ID
Unsigned 32-bit integer
Billing Correlation ID
cops.pc_bcid_ev BDID Event Counter
Unsigned 32-bit integer
BCID Event Counter
cops.pc_bcid_ts BDID Timestamp
Unsigned 32-bit integer
BCID Timestamp
cops.pc_close_subcode Reason Sub Code
Unsigned 16-bit integer
Reason Sub Code
cops.pc_cmts_ip CMTS IP Address
IPv4 address
CMTS IP Address
cops.pc_cmts_ip_port CMTS IP Port
Unsigned 16-bit integer
CMTS IP Port
cops.pc_delete_subcode Reason Sub Code
Unsigned 16-bit integer
Reason Sub Code
cops.pc_dest_ip Destination IP Address
IPv4 address
Destination IP Address
cops.pc_dest_port Destination IP Port
Unsigned 16-bit integer
Destination IP Port
cops.pc_dfccc_id CCC ID
Unsigned 32-bit integer
CCC ID
cops.pc_dfccc_ip DF IP Address CCC
IPv4 address
DF IP Address CCC
cops.pc_dfccc_ip_port DF IP Port CCC
Unsigned 16-bit integer
DF IP Port CCC
cops.pc_dfcdc_ip DF IP Address CDC
IPv4 address
DF IP Address CDC
cops.pc_dfcdc_ip_port DF IP Port CDC
Unsigned 16-bit integer
DF IP Port CDC
cops.pc_direction Direction
Unsigned 8-bit integer
Direction
cops.pc_ds_field DS Field (DSCP or TOS)
Unsigned 8-bit integer
DS Field (DSCP or TOS)
cops.pc_gate_command_type Gate Command Type
Unsigned 16-bit integer
Gate Command Type
cops.pc_gate_id Gate Identifier
Unsigned 32-bit integer
Gate Identifier
cops.pc_gate_spec_flags Flags
Unsigned 8-bit integer
Flags
cops.pc_key Security Key
Unsigned 32-bit integer
Security Key
cops.pc_max_packet_size Maximum Packet Size
Unsigned 32-bit integer
Maximum Packet Size
cops.pc_min_policed_unit Minimum Policed Unit
Unsigned 32-bit integer
Minimum Policed Unit
cops.pc_mm_amid_am_tag AMID Application Manager Tag
Unsigned 32-bit integer
PacketCable Multimedia AMID Application Manager Tag
cops.pc_mm_amid_application_type AMID Application Type
Unsigned 32-bit integer
PacketCable Multimedia AMID Application Type
cops.pc_mm_amrtrps Assumed Minimum Reserved Traffic Rate Packet Size
Unsigned 16-bit integer
PacketCable Multimedia Committed Envelope Assumed Minimum Reserved Traffic Rate Packet Size
cops.pc_mm_classifier_action Priority
Unsigned 8-bit integer
PacketCable Multimedia Classifier Action
cops.pc_mm_classifier_activation_state Priority
Unsigned 8-bit integer
PacketCable Multimedia Classifier Activation State
cops.pc_mm_classifier_dscp DSCP/TOS Field
Unsigned 8-bit integer
PacketCable Multimedia Classifier DSCP/TOS Field
cops.pc_mm_classifier_dscp_mask DSCP/TOS Mask
Unsigned 8-bit integer
PacketCable Multimedia Classifer DSCP/TOS Mask
cops.pc_mm_classifier_dst_addr Destination address
IPv4 address
PacketCable Multimedia Classifier Destination IP Address
cops.pc_mm_classifier_dst_mask Destination address
IPv4 address
PacketCable Multimedia Classifier Destination Mask
cops.pc_mm_classifier_dst_port Destination Port
Unsigned 16-bit integer
PacketCable Multimedia Classifier Source Port
cops.pc_mm_classifier_dst_port_end Destination Port
Unsigned 16-bit integer
PacketCable Multimedia Classifier Source Port End
cops.pc_mm_classifier_id Priority
Unsigned 16-bit integer
PacketCable Multimedia Classifier ID
cops.pc_mm_classifier_priority Priority
Unsigned 8-bit integer
PacketCable Multimedia Classifier Priority
cops.pc_mm_classifier_proto_id Protocol ID
Unsigned 16-bit integer
PacketCable Multimedia Classifier Protocol ID
cops.pc_mm_classifier_src_addr Source address
IPv4 address
PacketCable Multimedia Classifier Source IP Address
cops.pc_mm_classifier_src_mask Source mask
IPv4 address
PacketCable Multimedia Classifier Source Mask
cops.pc_mm_classifier_src_port Source Port
Unsigned 16-bit integer
PacketCable Multimedia Classifier Source Port
cops.pc_mm_classifier_src_port_end Source Port End
Unsigned 16-bit integer
PacketCable Multimedia Classifier Source Port End
cops.pc_mm_docsis_scn Service Class Name
String
PacketCable Multimedia DOCSIS Service Class Name
cops.pc_mm_envelope Envelope
Unsigned 8-bit integer
PacketCable Multimedia Envelope
cops.pc_mm_error_ec Error-Code
Unsigned 16-bit integer
PacketCable Multimedia PacketCable-Error Error-Code
cops.pc_mm_error_esc Error-code
Unsigned 16-bit integer
PacketCable Multimedia PacketCable-Error Error Sub-code
cops.pc_mm_fs_envelope Envelope
Unsigned 8-bit integer
PacketCable Multimedia Flow Spec Envelope
cops.pc_mm_fs_svc_num Service Number
Unsigned 8-bit integer
PacketCable Multimedia Flow Spec Service Number
cops.pc_mm_gpi Grants Per Interval
Unsigned 8-bit integer
PacketCable Multimedia Grants Per Interval
cops.pc_mm_gs_dscp DSCP/TOS Field
Unsigned 8-bit integer
PacketCable Multimedia GateSpec DSCP/TOS Field
cops.pc_mm_gs_dscp_mask DSCP/TOS Mask
Unsigned 8-bit integer
PacketCable Multimedia GateSpec DSCP/TOS Mask
cops.pc_mm_gs_flags Flags
Unsigned 8-bit integer
PacketCable Multimedia GateSpec Flags
cops.pc_mm_gs_reason Reason
Unsigned 16-bit integer
PacketCable Multimedia Gate State Reason
cops.pc_mm_gs_scid SessionClassID
Unsigned 8-bit integer
PacketCable Multimedia GateSpec SessionClassID
cops.pc_mm_gs_scid_conf SessionClassID Configurable
Unsigned 8-bit integer
PacketCable Multimedia GateSpec SessionClassID Configurable
cops.pc_mm_gs_scid_preempt SessionClassID Preemption
Unsigned 8-bit integer
PacketCable Multimedia GateSpec SessionClassID Preemption
cops.pc_mm_gs_scid_prio SessionClassID Priority
Unsigned 8-bit integer
PacketCable Multimedia GateSpec SessionClassID Priority
cops.pc_mm_gs_state State
Unsigned 16-bit integer
PacketCable Multimedia Gate State
cops.pc_mm_gs_timer_t1 Timer T1
Unsigned 16-bit integer
PacketCable Multimedia GateSpec Timer T1
cops.pc_mm_gs_timer_t2 Timer T2
Unsigned 16-bit integer
PacketCable Multimedia GateSpec Timer T2
cops.pc_mm_gs_timer_t3 Timer T3
Unsigned 16-bit integer
PacketCable Multimedia GateSpec Timer T3
cops.pc_mm_gs_timer_t4 Timer T4
Unsigned 16-bit integer
PacketCable Multimedia GateSpec Timer T4
cops.pc_mm_gti Gate Time Info
Unsigned 32-bit integer
PacketCable Multimedia Gate Time Info
cops.pc_mm_gui Gate Usage Info
Unsigned 32-bit integer
PacketCable Multimedia Gate Usage Info
cops.pc_mm_mdl Maximum Downstream Latency
Unsigned 32-bit integer
PacketCable Multimedia Maximum Downstream Latency
cops.pc_mm_mrtr Minimum Reserved Traffic Rate
Unsigned 32-bit integer
PacketCable Multimedia Committed Envelope Minimum Reserved Traffic Rate
cops.pc_mm_msg_receipt_key Msg Receipt Key
Unsigned 32-bit integer
PacketCable Multimedia Msg Receipt Key
cops.pc_mm_mstr Maximum Sustained Traffic Rate
Unsigned 32-bit integer
PacketCable Multimedia Committed Envelope Maximum Sustained Traffic Rate
cops.pc_mm_mtb Maximum Traffic Burst
Unsigned 32-bit integer
PacketCable Multimedia Committed Envelope Maximum Traffic Burst
cops.pc_mm_ngi Nominal Grant Interval
Unsigned 32-bit integer
PacketCable Multimedia Nominal Grant Interval
cops.pc_mm_npi Nominal Polling Interval
Unsigned 32-bit integer
PacketCable Multimedia Nominal Polling Interval
cops.pc_mm_psid PSID
Unsigned 32-bit integer
PacketCable Multimedia PSID
cops.pc_mm_rtp Request Transmission Policy
Unsigned 32-bit integer
PacketCable Multimedia Committed Envelope Traffic Priority
cops.pc_mm_synch_options_report_type Report Type
Unsigned 8-bit integer
PacketCable Multimedia Synch Options Report Type
cops.pc_mm_synch_options_synch_type Synch Type
Unsigned 8-bit integer
PacketCable Multimedia Synch Options Synch Type
cops.pc_mm_tbul_ul Usage Limit
Unsigned 32-bit integer
PacketCable Multimedia Time-Based Usage Limit
cops.pc_mm_tgj Tolerated Grant Jitter
Unsigned 32-bit integer
PacketCable Multimedia Tolerated Grant Jitter
cops.pc_mm_tp Traffic Priority
Unsigned 8-bit integer
PacketCable Multimedia Committed Envelope Traffic Priority
cops.pc_mm_tpj Tolerated Poll Jitter
Unsigned 32-bit integer
PacketCable Multimedia Tolerated Poll Jitter
cops.pc_mm_ugs Unsolicited Grant Size
Unsigned 16-bit integer
PacketCable Multimedia Unsolicited Grant Size
cops.pc_mm_vbul_ul Usage Limit
Unsigned 64-bit integer
PacketCable Multimedia Volume-Based Usage Limit
cops.pc_mm_vi_major Major Version Number
Unsigned 16-bit integer
PacketCable Multimedia Major Version Number
cops.pc_mm_vi_minor Minor Version Number
Unsigned 16-bit integer
PacketCable Multimedia Minor Version Number
cops.pc_packetcable_err_code Error Code
Unsigned 16-bit integer
Error Code
cops.pc_packetcable_sub_code Error Sub Code
Unsigned 16-bit integer
Error Sub Code
cops.pc_peak_data_rate Peak Data Rate
Peak Data Rate
cops.pc_prks_ip PRKS IP Address
IPv4 address
PRKS IP Address
cops.pc_prks_ip_port PRKS IP Port
Unsigned 16-bit integer
PRKS IP Port
cops.pc_protocol_id Protocol ID
Unsigned 8-bit integer
Protocol ID
cops.pc_reason_code Reason Code
Unsigned 16-bit integer
Reason Code
cops.pc_remote_flags Flags
Unsigned 16-bit integer
Flags
cops.pc_remote_gate_id Remote Gate ID
Unsigned 32-bit integer
Remote Gate ID
cops.pc_reserved Reserved
Unsigned 32-bit integer
Reserved
cops.pc_session_class Session Class
Unsigned 8-bit integer
Session Class
cops.pc_slack_term Slack Term
Unsigned 32-bit integer
Slack Term
cops.pc_spec_rate Rate
Rate
cops.pc_src_ip Source IP Address
IPv4 address
Source IP Address
cops.pc_src_port Source IP Port
Unsigned 16-bit integer
Source IP Port
cops.pc_srks_ip SRKS IP Address
IPv4 address
SRKS IP Address
cops.pc_srks_ip_port SRKS IP Port
Unsigned 16-bit integer
SRKS IP Port
cops.pc_subscriber_id4 Subscriber Identifier (IPv4)
IPv4 address
Subscriber Identifier (IPv4)
cops.pc_subscriber_id6 Subscriber Identifier (IPv6)
IPv6 address
Subscriber Identifier (IPv6)
cops.pc_subtree Object Subtree
Unsigned 16-bit integer
Object Subtree
cops.pc_t1_value Timer T1 Value (sec)
Unsigned 16-bit integer
Timer T1 Value (sec)
cops.pc_t7_value Timer T7 Value (sec)
Unsigned 16-bit integer
Timer T7 Value (sec)
cops.pc_t8_value Timer T8 Value (sec)
Unsigned 16-bit integer
Timer T8 Value (sec)
cops.pc_token_bucket_rate Token Bucket Rate
Token Bucket Rate
cops.pc_token_bucket_size Token Bucket Size
Token Bucket Size
cops.pc_transaction_id Transaction Identifier
Unsigned 16-bit integer
Transaction Identifier
cops.pdp.tcp_port TCP Port Number
Unsigned 32-bit integer
TCP Port Number of PDP in PDPRedirAddr/LastPDPAddr object
cops.pdprediraddr.ipv4 IPv4 address
IPv4 address
IPv4 address in COPS PDPRedirAddr object
cops.pdprediraddr.ipv6 IPv6 address
IPv6 address
IPv6 address in COPS PDPRedirAddr object
cops.pepid.id Contents: PEP Id
String
PEP Id in PEPID object
cops.reason Reason
Unsigned 16-bit integer
Reason in Reason object
cops.reason_sub Reason Sub-code
Unsigned 16-bit integer
Reason Sub-code in Reason object
cops.report_type Contents: Report-Type
Unsigned 16-bit integer
Report-Type in Report-Type object
cops.s_num S-Num
Unsigned 8-bit integer
S-Num in COPS-PR Object Header
cops.s_type S-Type
Unsigned 8-bit integer
S-Type in COPS-PR Object Header
cops.ver_flags Version and Flags
Unsigned 8-bit integer
Version and Flags in COPS Common Header
cops.version Version
Unsigned 8-bit integer
Version in COPS Common Header
Common Unix Printing System (CUPS) Browsing Protocol (cups)
cups.ptype Type
Unsigned 32-bit integer
cups.state State
Unsigned 8-bit integer
Compressed Data Type (cdt)
cdt.CompressedData CompressedData
No value
CompressedData
cdt.algorithmID_OID algorithmID-OID
CompressionAlgorithmIdentifier/algorithmID-OID
cdt.algorithmID_ShortForm algorithmID-ShortForm
Signed 32-bit integer
CompressionAlgorithmIdentifier/algorithmID-ShortForm
cdt.compressedContent compressedContent
Byte array
CompressedContentInfo/compressedContent
cdt.compressedContentInfo compressedContentInfo
No value
CompressedData/compressedContentInfo
cdt.compressionAlgorithm compressionAlgorithm
Unsigned 32-bit integer
CompressedData/compressionAlgorithm
cdt.contentType contentType
Unsigned 32-bit integer
CompressedContentInfo/contentType
cdt.contentType_OID contentType-OID
CompressedContentInfo/contentType/contentType-OID
cdt.contentType_ShortForm contentType-ShortForm
Signed 32-bit integer
CompressedContentInfo/contentType/contentType-ShortForm
Compuserve GIF (image-gif)
image-gif.end Trailer (End of the GIF stream)
No value
This byte tells the decoder that the data stream is finished.
image-gif.extension Extension
No value
Extension.
image-gif.extension.label Extension label
Unsigned 8-bit integer
Extension label.
image-gif.global.bpp Image bits per pixel minus 1
Unsigned 8-bit integer
The number of bits per pixel is one plus the field value.
image-gif.global.color_bpp Bits per color minus 1
Unsigned 8-bit integer
The number of bits per color is one plus the field value.
image-gif.global.color_map Global color map
Byte array
Global color map.
image-gif.global.color_map.ordered Global color map is ordered
Unsigned 8-bit integer
Indicates whether the global color map is ordered.
image-gif.global.color_map.present Global color map is present
Unsigned 8-bit integer
Indicates if the global color map is present
image-gif.global.pixel_aspect_ratio Global pixel aspect ratio
Unsigned 8-bit integer
Gives an approximate value of the aspect ratio of the pixels.
image-gif.image Image
No value
Image.
image-gif.image.code_size LZW minimum code size
Unsigned 8-bit integer
Minimum code size for the LZW compression.
image-gif.image.height Image height
Unsigned 16-bit integer
Image height.
image-gif.image.left Image left position
Unsigned 16-bit integer
Offset between left of Screen and left of Image.
image-gif.image.top Image top position
Unsigned 16-bit integer
Offset between top of Screen and top of Image.
image-gif.image.width Image width
Unsigned 16-bit integer
Image width.
image-gif.image_background_index Background color index
Unsigned 8-bit integer
Index of the background color in the color map.
image-gif.local.bpp Image bits per pixel minus 1
Unsigned 8-bit integer
The number of bits per pixel is one plus the field value.
image-gif.local.color_bpp Bits per color minus 1
Unsigned 8-bit integer
The number of bits per color is one plus the field value.
image-gif.local.color_map Local color map
Byte array
Local color map.
image-gif.local.color_map.ordered Local color map is ordered
Unsigned 8-bit integer
Indicates whether the local color map is ordered.
image-gif.local.color_map.present Local color map is present
Unsigned 8-bit integer
Indicates if the local color map is present
image-gif.screen.height Screen height
Unsigned 16-bit integer
Screen height
image-gif.screen.width Screen width
Unsigned 16-bit integer
Screen width
image-gif.version Version
String
GIF Version
Computer Interface to Message Distribution (cimd)
cimd.aoi Alphanumeric Originating Address
String
CIMD Alphanumeric Originating Address
cimd.ce Cancel Enabled
String
CIMD Cancel Enabled
cimd.chksum Checksum
Unsigned 8-bit integer
CIMD Checksum
cimd.cm Cancel Mode
String
CIMD Cancel Mode
cimd.da Destination Address
String
CIMD Destination Address
cimd.dcs Data Coding Scheme
Unsigned 8-bit integer
CIMD Data Coding Scheme
cimd.dcs.cf Compressed
Unsigned 8-bit integer
CIMD DCS Compressed Flag
cimd.dcs.cg Coding Group
Unsigned 8-bit integer
CIMD DCS Coding Group
cimd.dcs.chs Character Set
Unsigned 8-bit integer
CIMD DCS Character Set
cimd.dcs.is Indication Sense
Unsigned 8-bit integer
CIMD DCS Indication Sense
cimd.dcs.it Indication Type
Unsigned 8-bit integer
CIMD DCS Indication Type
cimd.dcs.mc Message Class
Unsigned 8-bit integer
CIMD DCS Message Class
|