aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_a_common.h
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-04-09 17:18:52 +0000
committerBill Meier <wmeier@newsguy.com>2011-04-09 17:18:52 +0000
commit8f2ce2f3080c6adb4006704908303fcaba2fb566 (patch)
tree0febd26e5aefe20dc6c32b1fa4f914f72a007787 /epan/dissectors/packet-gsm_a_common.h
parente69a4c6e45065351bd02dd1709960ec8894502f2 (diff)
Do some whitespace cleanup.
svn path=/trunk/; revision=36531
Diffstat (limited to 'epan/dissectors/packet-gsm_a_common.h')
-rw-r--r--epan/dissectors/packet-gsm_a_common.h1526
1 files changed, 763 insertions, 763 deletions
diff --git a/epan/dissectors/packet-gsm_a_common.h b/epan/dissectors/packet-gsm_a_common.h
index b911fde5c8..cd3b33760d 100644
--- a/epan/dissectors/packet-gsm_a_common.h
+++ b/epan/dissectors/packet-gsm_a_common.h
@@ -25,7 +25,7 @@
* Core network protocols;
* Stage 3
* (3GPP TS 24.008 version 6.7.0 Release 6)
- * (3GPP TS 24.008 version 6.8.0 Release 6)
+ * (3GPP TS 24.008 version 6.8.0 Release 6)
*
* Copyright 2003, Michael Lum <mlum [AT] telostech.com>,
* In association with Telos Technology Inc.
@@ -60,16 +60,16 @@ typedef void (*msg_fcn)(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo, gui
/* XXX moved to tvbuff.h, clean up later */
typedef struct dgt_set_t
{
- unsigned char out[15];
+ unsigned char out[15];
}
dgt_set_t;
#endif
-int my_dgt_tbcd_unpack(
- char *out, /* ASCII pattern out */
- guchar *in, /* packed pattern in */
- int num_octs, /* Number of octets to unpack */
- dgt_set_t *dgt /* Digit definitions */
- );
+int my_dgt_tbcd_unpack(
+ char *out, /* ASCII pattern out */
+ guchar *in, /* packed pattern in */
+ int num_octs, /* Number of octets to unpack */
+ dgt_set_t *dgt /* Digit definitions */
+ );
/* globals needed as a result of spltting the packet-gsm_a.c into several files
* until further restructuring can take place to make them more modular
@@ -176,159 +176,159 @@ extern int hf_gsm_a_spare_bits;
extern int hf_gsm_a_lac;
/* for the nasty hack below */
-#define GSM_BSSMAP_APDU_IE 0x49
+#define GSM_BSSMAP_APDU_IE 0x49
/* flags for the packet-gsm_a_common routines */
-#define GSM_A_PDU_TYPE_BSSMAP 0 /* BSSAP_PDU_TYPE_BSSMAP i.e. 0 - until split complete at least! */
-#define GSM_A_PDU_TYPE_DTAP 1 /* BSSAP_PDU_TYPE_DTAP i.e. 1 - until split complete at least! */
-#define GSM_A_PDU_TYPE_RP 2
-#define GSM_A_PDU_TYPE_RR 3
-#define GSM_A_PDU_TYPE_COMMON 4
-#define GSM_A_PDU_TYPE_GM 5
-#define GSM_A_PDU_TYPE_BSSLAP 6
-#define GSM_A_PDU_TYPE_SACCH 7
-#define GSM_PDU_TYPE_BSSMAP_LE 8
-#define NAS_PDU_TYPE_COMMON 9
-#define NAS_PDU_TYPE_EMM 10
-#define NAS_PDU_TYPE_ESM 11
-#define SGSAP_PDU_TYPE 12
-#define BSSGP_PDU_TYPE 13
+#define GSM_A_PDU_TYPE_BSSMAP 0 /* BSSAP_PDU_TYPE_BSSMAP i.e. 0 - until split complete at least! */
+#define GSM_A_PDU_TYPE_DTAP 1 /* BSSAP_PDU_TYPE_DTAP i.e. 1 - until split complete at least! */
+#define GSM_A_PDU_TYPE_RP 2
+#define GSM_A_PDU_TYPE_RR 3
+#define GSM_A_PDU_TYPE_COMMON 4
+#define GSM_A_PDU_TYPE_GM 5
+#define GSM_A_PDU_TYPE_BSSLAP 6
+#define GSM_A_PDU_TYPE_SACCH 7
+#define GSM_PDU_TYPE_BSSMAP_LE 8
+#define NAS_PDU_TYPE_COMMON 9
+#define NAS_PDU_TYPE_EMM 10
+#define NAS_PDU_TYPE_ESM 11
+#define SGSAP_PDU_TYPE 12
+#define BSSGP_PDU_TYPE 13
extern const char* get_gsm_a_msg_string(int pdu_type, int idx);
/*
* this should be set on a per message basis, if possible
*/
-#define IS_UPLINK_FALSE 0
-#define IS_UPLINK_TRUE 1
-#define IS_UPLINK_UNKNOWN 2
+#define IS_UPLINK_FALSE 0
+#define IS_UPLINK_TRUE 1
+#define IS_UPLINK_UNKNOWN 2
-/* Defines and nasty static for handling half octet mandatory V IEs
+/* Defines and nasty static for handling half octet mandatory V IEs
* TODO: Note originally UPPER_NIBBLE was -2 and LOWER_NIBBLE was -1
* changed here to unsigned integer as it wouldn't compile (Warnings on Ubuntu)
* ugly hack...
*/
-#define UPPER_NIBBLE (2)
-#define LOWER_NIBBLE (1)
+#define UPPER_NIBBLE (2)
+#define LOWER_NIBBLE (1)
/* FUNCTIONS */
/* ELEMENT FUNCTIONS */
-#define EXTRANEOUS_DATA_CHECK(edc_len, edc_max_len) \
- if (((edc_len) > (edc_max_len))||lower_nibble) \
- { \
- proto_tree_add_text(tree, tvb, \
- curr_offset, (edc_len) - (edc_max_len), "Extraneous Data"); \
- curr_offset += ((edc_len) - (edc_max_len)); \
- }
-
-#define EXTRANEOUS_DATA_CHECK_EXPERT(edc_len, edc_max_len, pinfo) \
- if (((edc_len) > (edc_max_len))||lower_nibble) \
- { \
- proto_item *expert_item; \
- expert_item = proto_tree_add_text(tree, tvb, \
- curr_offset, (edc_len) - (edc_max_len), "Extraneous Data, dissector bug or later version spec(report to wireshark.org)"); \
- expert_add_info_format(pinfo, expert_item, PI_PROTOCOL, PI_NOTE, "Extraneous Data, dissector bug or later version spec(report to wireshark.org)"); \
- PROTO_ITEM_SET_GENERATED(expert_item); \
- curr_offset += ((edc_len) - (edc_max_len)); \
- }
-
-#define SHORT_DATA_CHECK(sdc_len, sdc_min_len) \
- if ((sdc_len) < (sdc_min_len)) \
- { \
- proto_tree_add_text(tree, tvb, \
- curr_offset, (sdc_len), "Short Data (?)"); \
- curr_offset += (sdc_len); \
- return(curr_offset - offset); \
- }
-
-#define EXACT_DATA_CHECK(edc_len, edc_eq_len) \
- if ((edc_len) != (edc_eq_len)) \
- { \
- proto_tree_add_text(tree, tvb, \
- curr_offset, (edc_len), "Unexpected Data Length"); \
- curr_offset += (edc_len); \
- return(curr_offset - offset); \
- }
-
-#define NO_MORE_DATA_CHECK(nmdc_len) \
- if ((nmdc_len) == (curr_offset - offset)) return(nmdc_len);
-
-#define SET_ELEM_VARS(SEV_pdu_type, SEV_elem_names, SEV_elem_ett, SEV_elem_funcs) \
- switch (SEV_pdu_type) \
- { \
- case GSM_A_PDU_TYPE_BSSMAP: \
- SEV_elem_names = gsm_bssmap_elem_strings; \
- SEV_elem_ett = ett_gsm_bssmap_elem; \
- SEV_elem_funcs = bssmap_elem_fcn; \
- break; \
- case GSM_A_PDU_TYPE_DTAP: \
- SEV_elem_names = gsm_dtap_elem_strings; \
- SEV_elem_ett = ett_gsm_dtap_elem; \
- SEV_elem_funcs = dtap_elem_fcn; \
- break; \
- case GSM_A_PDU_TYPE_RP: \
- SEV_elem_names = gsm_rp_elem_strings; \
- SEV_elem_ett = ett_gsm_rp_elem; \
- SEV_elem_funcs = rp_elem_fcn; \
- break; \
- case GSM_A_PDU_TYPE_RR: \
- SEV_elem_names = gsm_rr_elem_strings; \
- SEV_elem_ett = ett_gsm_rr_elem; \
- SEV_elem_funcs = rr_elem_fcn; \
- break; \
- case GSM_A_PDU_TYPE_COMMON: \
- SEV_elem_names = gsm_common_elem_strings; \
- SEV_elem_ett = ett_gsm_common_elem; \
- SEV_elem_funcs = common_elem_fcn; \
- break; \
- case GSM_A_PDU_TYPE_GM: \
- SEV_elem_names = gsm_gm_elem_strings; \
- SEV_elem_ett = ett_gsm_gm_elem; \
- SEV_elem_funcs = gm_elem_fcn; \
- break; \
- case GSM_A_PDU_TYPE_BSSLAP: \
- SEV_elem_names = gsm_bsslap_elem_strings; \
- SEV_elem_ett = ett_gsm_bsslap_elem; \
- SEV_elem_funcs = bsslap_elem_fcn; \
- break; \
- case GSM_PDU_TYPE_BSSMAP_LE: \
- SEV_elem_names = gsm_bssmap_le_elem_strings; \
- SEV_elem_ett = ett_gsm_bssmap_le_elem; \
- SEV_elem_funcs = bssmap_le_elem_fcn; \
- break; \
- case NAS_PDU_TYPE_COMMON: \
- SEV_elem_names = nas_eps_common_elem_strings; \
- SEV_elem_ett = ett_nas_eps_common_elem; \
- SEV_elem_funcs = nas_eps_common_elem_fcn; \
- break; \
- case NAS_PDU_TYPE_EMM: \
- SEV_elem_names = nas_emm_elem_strings; \
- SEV_elem_ett = ett_nas_eps_emm_elem; \
- SEV_elem_funcs = emm_elem_fcn; \
- break; \
- case NAS_PDU_TYPE_ESM: \
- SEV_elem_names = nas_esm_elem_strings; \
- SEV_elem_ett = ett_nas_eps_esm_elem; \
- SEV_elem_funcs = esm_elem_fcn; \
- break; \
- case SGSAP_PDU_TYPE: \
- SEV_elem_names = sgsap_elem_strings; \
- SEV_elem_ett = ett_sgsap_elem; \
- SEV_elem_funcs = sgsap_elem_fcn; \
- break; \
- case BSSGP_PDU_TYPE: \
- SEV_elem_names = bssgp_elem_strings; \
- SEV_elem_ett = ett_bssgp_elem; \
- SEV_elem_funcs = bssgp_elem_fcn; \
- break; \
- default: \
- proto_tree_add_text(tree, \
- tvb, curr_offset, -1, \
- "Unknown PDU type (%u) gsm_a_common", SEV_pdu_type); \
- return(consumed); \
- }
+#define EXTRANEOUS_DATA_CHECK(edc_len, edc_max_len) \
+ if (((edc_len) > (edc_max_len))||lower_nibble) \
+ { \
+ proto_tree_add_text(tree, tvb, \
+ curr_offset, (edc_len) - (edc_max_len), "Extraneous Data"); \
+ curr_offset += ((edc_len) - (edc_max_len)); \
+ }
+
+#define EXTRANEOUS_DATA_CHECK_EXPERT(edc_len, edc_max_len, pinfo) \
+ if (((edc_len) > (edc_max_len))||lower_nibble) \
+ { \
+ proto_item *expert_item; \
+ expert_item = proto_tree_add_text(tree, tvb, \
+ curr_offset, (edc_len) - (edc_max_len), "Extraneous Data, dissector bug or later version spec(report to wireshark.org)"); \
+ expert_add_info_format(pinfo, expert_item, PI_PROTOCOL, PI_NOTE, "Extraneous Data, dissector bug or later version spec(report to wireshark.org)"); \
+ PROTO_ITEM_SET_GENERATED(expert_item); \
+ curr_offset += ((edc_len) - (edc_max_len)); \
+ }
+
+#define SHORT_DATA_CHECK(sdc_len, sdc_min_len) \
+ if ((sdc_len) < (sdc_min_len)) \
+ { \
+ proto_tree_add_text(tree, tvb, \
+ curr_offset, (sdc_len), "Short Data (?)"); \
+ curr_offset += (sdc_len); \
+ return(curr_offset - offset); \
+ }
+
+#define EXACT_DATA_CHECK(edc_len, edc_eq_len) \
+ if ((edc_len) != (edc_eq_len)) \
+ { \
+ proto_tree_add_text(tree, tvb, \
+ curr_offset, (edc_len), "Unexpected Data Length"); \
+ curr_offset += (edc_len); \
+ return(curr_offset - offset); \
+ }
+
+#define NO_MORE_DATA_CHECK(nmdc_len) \
+ if ((nmdc_len) == (curr_offset - offset)) return(nmdc_len);
+
+#define SET_ELEM_VARS(SEV_pdu_type, SEV_elem_names, SEV_elem_ett, SEV_elem_funcs) \
+ switch (SEV_pdu_type) \
+ { \
+ case GSM_A_PDU_TYPE_BSSMAP: \
+ SEV_elem_names = gsm_bssmap_elem_strings; \
+ SEV_elem_ett = ett_gsm_bssmap_elem; \
+ SEV_elem_funcs = bssmap_elem_fcn; \
+ break; \
+ case GSM_A_PDU_TYPE_DTAP: \
+ SEV_elem_names = gsm_dtap_elem_strings; \
+ SEV_elem_ett = ett_gsm_dtap_elem; \
+ SEV_elem_funcs = dtap_elem_fcn; \
+ break; \
+ case GSM_A_PDU_TYPE_RP: \
+ SEV_elem_names = gsm_rp_elem_strings; \
+ SEV_elem_ett = ett_gsm_rp_elem; \
+ SEV_elem_funcs = rp_elem_fcn; \
+ break; \
+ case GSM_A_PDU_TYPE_RR: \
+ SEV_elem_names = gsm_rr_elem_strings; \
+ SEV_elem_ett = ett_gsm_rr_elem; \
+ SEV_elem_funcs = rr_elem_fcn; \
+ break; \
+ case GSM_A_PDU_TYPE_COMMON: \
+ SEV_elem_names = gsm_common_elem_strings; \
+ SEV_elem_ett = ett_gsm_common_elem; \
+ SEV_elem_funcs = common_elem_fcn; \
+ break; \
+ case GSM_A_PDU_TYPE_GM: \
+ SEV_elem_names = gsm_gm_elem_strings; \
+ SEV_elem_ett = ett_gsm_gm_elem; \
+ SEV_elem_funcs = gm_elem_fcn; \
+ break; \
+ case GSM_A_PDU_TYPE_BSSLAP: \
+ SEV_elem_names = gsm_bsslap_elem_strings; \
+ SEV_elem_ett = ett_gsm_bsslap_elem; \
+ SEV_elem_funcs = bsslap_elem_fcn; \
+ break; \
+ case GSM_PDU_TYPE_BSSMAP_LE: \
+ SEV_elem_names = gsm_bssmap_le_elem_strings; \
+ SEV_elem_ett = ett_gsm_bssmap_le_elem; \
+ SEV_elem_funcs = bssmap_le_elem_fcn; \
+ break; \
+ case NAS_PDU_TYPE_COMMON: \
+ SEV_elem_names = nas_eps_common_elem_strings; \
+ SEV_elem_ett = ett_nas_eps_common_elem; \
+ SEV_elem_funcs = nas_eps_common_elem_fcn; \
+ break; \
+ case NAS_PDU_TYPE_EMM: \
+ SEV_elem_names = nas_emm_elem_strings; \
+ SEV_elem_ett = ett_nas_eps_emm_elem; \
+ SEV_elem_funcs = emm_elem_fcn; \
+ break; \
+ case NAS_PDU_TYPE_ESM: \
+ SEV_elem_names = nas_esm_elem_strings; \
+ SEV_elem_ett = ett_nas_eps_esm_elem; \
+ SEV_elem_funcs = esm_elem_fcn; \
+ break; \
+ case SGSAP_PDU_TYPE: \
+ SEV_elem_names = sgsap_elem_strings; \
+ SEV_elem_ett = ett_sgsap_elem; \
+ SEV_elem_funcs = sgsap_elem_fcn; \
+ break; \
+ case BSSGP_PDU_TYPE: \
+ SEV_elem_names = bssgp_elem_strings; \
+ SEV_elem_ett = ett_bssgp_elem; \
+ SEV_elem_funcs = bssgp_elem_fcn; \
+ break; \
+ default: \
+ proto_tree_add_text(tree, \
+ tvb, curr_offset, -1, \
+ "Unknown PDU type (%u) gsm_a_common", SEV_pdu_type); \
+ return(consumed); \
+ }
/*
* Type Length Value (TLV) element dissector
@@ -406,24 +406,24 @@ extern guint16 elem_v_short(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo,
#define ELEM_MAND_TLV(EMT_iei, EMT_pdu_type, EMT_elem_idx, EMT_elem_name_addition) \
{\
- if ((consumed = elem_tlv(tvb, tree, pinfo, (guint8) EMT_iei, EMT_pdu_type, EMT_elem_idx, curr_offset, curr_len, EMT_elem_name_addition)) > 0) \
- { \
- curr_offset += consumed; \
- curr_len -= consumed; \
- } \
- else \
- { \
- proto_tree_add_text(tree, \
- tvb, curr_offset, 0, \
- "Missing Mandatory element (0x%02x) %s%s, rest of dissection is suspect", \
- EMT_iei, \
- get_gsm_a_msg_string(EMT_pdu_type, EMT_elem_idx), \
- (EMT_elem_name_addition == NULL) ? "" : EMT_elem_name_addition \
- ); \
- } \
- if ((signed)curr_len <= 0) return; \
+ if ((consumed = elem_tlv(tvb, tree, pinfo, (guint8) EMT_iei, EMT_pdu_type, EMT_elem_idx, curr_offset, curr_len, EMT_elem_name_addition)) > 0) \
+ { \
+ curr_offset += consumed; \
+ curr_len -= consumed; \
+ } \
+ else \
+ { \
+ proto_tree_add_text(tree, \
+ tvb, curr_offset, 0, \
+ "Missing Mandatory element (0x%02x) %s%s, rest of dissection is suspect", \
+ EMT_iei, \
+ get_gsm_a_msg_string(EMT_pdu_type, EMT_elem_idx), \
+ (EMT_elem_name_addition == NULL) ? "" : EMT_elem_name_addition \
+ ); \
+ } \
+ if ((signed)curr_len <= 0) return; \
}
-/* This is a version where the length field can be one or two octets depending
+/* This is a version where the length field can be one or two octets depending
* if the extension bit is set or not (TS 48.016 p 10.1.2).
* 8 7 6 5 4 3 2 1
* octet 2 0/1 ext length
@@ -431,177 +431,177 @@ extern guint16 elem_v_short(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo,
*/
#define ELEM_MAND_TELV(EMT_iei, EMT_pdu_type, EMT_elem_idx, EMT_elem_name_addition) \
{\
- if ((consumed = elem_telv(tvb, tree, pinfo, (guint8) EMT_iei, EMT_pdu_type, EMT_elem_idx, curr_offset, curr_len, EMT_elem_name_addition)) > 0) \
- { \
- curr_offset += consumed; \
- curr_len -= consumed; \
- } \
- else \
- { \
- proto_tree_add_text(tree, \
- tvb, curr_offset, 0, \
- "Missing Mandatory element (0x%02x) %s%s, rest of dissection is suspect", \
- EMT_iei, \
- get_gsm_a_msg_string(EMT_pdu_type, EMT_elem_idx), \
- (EMT_elem_name_addition == NULL) ? "" : EMT_elem_name_addition \
- ); \
- } \
- if ((signed)curr_len <= 0) return; \
+ if ((consumed = elem_telv(tvb, tree, pinfo, (guint8) EMT_iei, EMT_pdu_type, EMT_elem_idx, curr_offset, curr_len, EMT_elem_name_addition)) > 0) \
+ { \
+ curr_offset += consumed; \
+ curr_len -= consumed; \
+ } \
+ else \
+ { \
+ proto_tree_add_text(tree, \
+ tvb, curr_offset, 0, \
+ "Missing Mandatory element (0x%02x) %s%s, rest of dissection is suspect", \
+ EMT_iei, \
+ get_gsm_a_msg_string(EMT_pdu_type, EMT_elem_idx), \
+ (EMT_elem_name_addition == NULL) ? "" : EMT_elem_name_addition \
+ ); \
+ } \
+ if ((signed)curr_len <= 0) return; \
}
#define ELEM_MAND_TLV_E(EMT_iei, EMT_pdu_type, EMT_elem_idx, EMT_elem_name_addition) \
{\
- if ((consumed = elem_tlv_e(tvb, tree, pinfo, (guint8) EMT_iei, EMT_pdu_type, EMT_elem_idx, curr_offset, curr_len, EMT_elem_name_addition)) > 0) \
- { \
- curr_offset += consumed; \
- curr_len -= consumed; \
- } \
- else \
- { \
- proto_tree_add_text(tree, \
- tvb, curr_offset, 0, \
- "Missing Mandatory element (0x%02x) %s%s, rest of dissection is suspect", \
- EMT_iei, \
- get_gsm_a_msg_string(EMT_pdu_type, EMT_elem_idx), \
- (EMT_elem_name_addition == NULL) ? "" : EMT_elem_name_addition \
- ); \
- } \
- if ((signed)curr_len <= 0) return; \
+ if ((consumed = elem_tlv_e(tvb, tree, pinfo, (guint8) EMT_iei, EMT_pdu_type, EMT_elem_idx, curr_offset, curr_len, EMT_elem_name_addition)) > 0) \
+ { \
+ curr_offset += consumed; \
+ curr_len -= consumed; \
+ } \
+ else \
+ { \
+ proto_tree_add_text(tree, \
+ tvb, curr_offset, 0, \
+ "Missing Mandatory element (0x%02x) %s%s, rest of dissection is suspect", \
+ EMT_iei, \
+ get_gsm_a_msg_string(EMT_pdu_type, EMT_elem_idx), \
+ (EMT_elem_name_addition == NULL) ? "" : EMT_elem_name_addition \
+ ); \
+ } \
+ if ((signed)curr_len <= 0) return; \
}
#define ELEM_OPT_TLV(EOT_iei, EOT_pdu_type, EOT_elem_idx, EOT_elem_name_addition) \
{\
- if ((consumed = elem_tlv(tvb, tree, pinfo, (guint8) EOT_iei, EOT_pdu_type, EOT_elem_idx, curr_offset, curr_len, EOT_elem_name_addition)) > 0) \
- { \
- curr_offset += consumed; \
- curr_len -= consumed; \
- } \
+ if ((consumed = elem_tlv(tvb, tree, pinfo, (guint8) EOT_iei, EOT_pdu_type, EOT_elem_idx, curr_offset, curr_len, EOT_elem_name_addition)) > 0) \
+ { \
+ curr_offset += consumed; \
+ curr_len -= consumed; \
+ } \
if ((signed)curr_len <= 0) return; \
}
#define ELEM_OPT_TELV(EOT_iei, EOT_pdu_type, EOT_elem_idx, EOT_elem_name_addition) \
{\
- if ((consumed = elem_telv(tvb, tree, pinfo, (guint8) EOT_iei, EOT_pdu_type, EOT_elem_idx, curr_offset, curr_len, EOT_elem_name_addition)) > 0) \
- { \
- curr_offset += consumed; \
- curr_len -= consumed; \
- } \
+ if ((consumed = elem_telv(tvb, tree, pinfo, (guint8) EOT_iei, EOT_pdu_type, EOT_elem_idx, curr_offset, curr_len, EOT_elem_name_addition)) > 0) \
+ { \
+ curr_offset += consumed; \
+ curr_len -= consumed; \
+ } \
if ((signed)curr_len <= 0) return; \
}
#define ELEM_OPT_TLV_E(EOT_iei, EOT_pdu_type, EOT_elem_idx, EOT_elem_name_addition) \
{\
- if ((consumed = elem_tlv_e(tvb, tree, pinfo, (guint8) EOT_iei, EOT_pdu_type, EOT_elem_idx, curr_offset, curr_len, EOT_elem_name_addition)) > 0) \
- { \
- curr_offset += consumed; \
- curr_len -= consumed; \
- } \
- if ((signed)curr_len <= 0) return; \
+ if ((consumed = elem_tlv_e(tvb, tree, pinfo, (guint8) EOT_iei, EOT_pdu_type, EOT_elem_idx, curr_offset, curr_len, EOT_elem_name_addition)) > 0) \
+ { \
+ curr_offset += consumed; \
+ curr_len -= consumed; \
+ } \
+ if ((signed)curr_len <= 0) return; \
}
#define ELEM_MAND_TV(EMT_iei, EMT_pdu_type, EMT_elem_idx, EMT_elem_name_addition) \
{\
- if ((consumed = elem_tv(tvb, tree, pinfo, (guint8) EMT_iei, EMT_pdu_type, EMT_elem_idx, curr_offset, EMT_elem_name_addition)) > 0) \
- { \
- curr_offset += consumed; \
- curr_len -= consumed; \
- } \
- else \
- { \
- proto_tree_add_text(tree, \
- tvb, curr_offset, 0, \
- "Missing Mandatory element (0x%02x) %s%s, rest of dissection is suspect", \
- EMT_iei, \
- get_gsm_a_msg_string(EMT_pdu_type, EMT_elem_idx), \
- (EMT_elem_name_addition == NULL) ? "" : EMT_elem_name_addition \
- ); \
- } \
- if ((signed)curr_len <= 0) return; \
+ if ((consumed = elem_tv(tvb, tree, pinfo, (guint8) EMT_iei, EMT_pdu_type, EMT_elem_idx, curr_offset, EMT_elem_name_addition)) > 0) \
+ { \
+ curr_offset += consumed; \
+ curr_len -= consumed; \
+ } \
+ else \
+ { \
+ proto_tree_add_text(tree, \
+ tvb, curr_offset, 0, \
+ "Missing Mandatory element (0x%02x) %s%s, rest of dissection is suspect", \
+ EMT_iei, \
+ get_gsm_a_msg_string(EMT_pdu_type, EMT_elem_idx), \
+ (EMT_elem_name_addition == NULL) ? "" : EMT_elem_name_addition \
+ ); \
+ } \
+ if ((signed)curr_len <= 0) return; \
}
#define ELEM_OPT_TV(EOT_iei, EOT_pdu_type, EOT_elem_idx, EOT_elem_name_addition) \
{\
- if ((consumed = elem_tv(tvb, tree, pinfo, (guint8) EOT_iei, EOT_pdu_type, EOT_elem_idx, curr_offset, EOT_elem_name_addition)) > 0) \
- { \
- curr_offset += consumed; \
- curr_len -= consumed; \
- } \
+ if ((consumed = elem_tv(tvb, tree, pinfo, (guint8) EOT_iei, EOT_pdu_type, EOT_elem_idx, curr_offset, EOT_elem_name_addition)) > 0) \
+ { \
+ curr_offset += consumed; \
+ curr_len -= consumed; \
+ } \
if ((signed)curr_len <= 0) return; \
}
#define ELEM_OPT_TV_SHORT(EOT_iei, EOT_pdu_type, EOT_elem_idx, EOT_elem_name_addition) \
{\
- if ((consumed = elem_tv_short(tvb, tree, pinfo, EOT_iei, EOT_pdu_type, EOT_elem_idx, curr_offset, EOT_elem_name_addition)) > 0) \
- { \
- curr_offset += consumed; \
- curr_len -= consumed; \
- } \
- if ((signed)curr_len <= 0) return; \
+ if ((consumed = elem_tv_short(tvb, tree, pinfo, EOT_iei, EOT_pdu_type, EOT_elem_idx, curr_offset, EOT_elem_name_addition)) > 0) \
+ { \
+ curr_offset += consumed; \
+ curr_len -= consumed; \
+ } \
+ if ((signed)curr_len <= 0) return; \
}
#define ELEM_OPT_T(EOT_iei, EOT_pdu_type, EOT_elem_idx, EOT_elem_name_addition) \
{\
- if ((consumed = elem_t(tvb, tree, pinfo, (guint8) EOT_iei, EOT_pdu_type, EOT_elem_idx, curr_offset, EOT_elem_name_addition)) > 0) \
- { \
- curr_offset += consumed; \
- curr_len -= consumed; \
- } \
- if ((signed)curr_len <= 0) return; \
+ if ((consumed = elem_t(tvb, tree, pinfo, (guint8) EOT_iei, EOT_pdu_type, EOT_elem_idx, curr_offset, EOT_elem_name_addition)) > 0) \
+ { \
+ curr_offset += consumed; \
+ curr_len -= consumed; \
+ } \
+ if ((signed)curr_len <= 0) return; \
}
#define ELEM_MAND_LV(EML_pdu_type, EML_elem_idx, EML_elem_name_addition) \
{\
- if ((consumed = elem_lv(tvb, tree, pinfo, EML_pdu_type, EML_elem_idx, curr_offset, curr_len, EML_elem_name_addition)) > 0) \
- { \
- curr_offset += consumed; \
- curr_len -= consumed; \
- } \
- else \
- { \
- /* Mandatory, but nothing we can do */ \
- } \
- if ((signed)curr_len <= 0) return; \
+ if ((consumed = elem_lv(tvb, tree, pinfo, EML_pdu_type, EML_elem_idx, curr_offset, curr_len, EML_elem_name_addition)) > 0) \
+ { \
+ curr_offset += consumed; \
+ curr_len -= consumed; \
+ } \
+ else \
+ { \
+ /* Mandatory, but nothing we can do */ \
+ } \
+ if ((signed)curr_len <= 0) return; \
}
#define ELEM_MAND_LV_E(EML_pdu_type, EML_elem_idx, EML_elem_name_addition) \
{\
- if ((consumed = elem_lv_e(tvb, tree, pinfo, EML_pdu_type, EML_elem_idx, curr_offset, curr_len, EML_elem_name_addition)) > 0) \
- { \
- curr_offset += consumed; \
- curr_len -= consumed; \
- } \
- else \
- { \
- /* Mandatory, but nothing we can do */ \
- } \
- if ((signed)curr_len <= 0) return; \
+ if ((consumed = elem_lv_e(tvb, tree, pinfo, EML_pdu_type, EML_elem_idx, curr_offset, curr_len, EML_elem_name_addition)) > 0) \
+ { \
+ curr_offset += consumed; \
+ curr_len -= consumed; \
+ } \
+ else \
+ { \
+ /* Mandatory, but nothing we can do */ \
+ } \
+ if ((signed)curr_len <= 0) return; \
}
#define ELEM_MAND_V(EMV_pdu_type, EMV_elem_idx, EMV_elem_name_addition) \
{\
- if ((consumed = elem_v(tvb, tree, pinfo, EMV_pdu_type, EMV_elem_idx, curr_offset, EMV_elem_name_addition)) > 0) \
- { \
- curr_offset += consumed; \
- curr_len -= consumed; \
- } \
- else \
- { \
- /* Mandatory, but nothing we can do */ \
- } \
- if ((signed)curr_len <= 0) return; \
+ if ((consumed = elem_v(tvb, tree, pinfo, EMV_pdu_type, EMV_elem_idx, curr_offset, EMV_elem_name_addition)) > 0) \
+ { \
+ curr_offset += consumed; \
+ curr_len -= consumed; \
+ } \
+ else \
+ { \
+ /* Mandatory, but nothing we can do */ \
+ } \
+ if ((signed)curr_len <= 0) return; \
}
#define ELEM_MAND_V_SHORT(EMV_pdu_type, EMV_elem_idx) \
{\
- if ((consumed = elem_v_short(tvb, tree, pinfo, EMV_pdu_type, EMV_elem_idx, curr_offset)) > 0) \
- { \
- curr_offset += consumed; \
- curr_len -= consumed; \
- } \
- else \
- { \
- /* Mandatory, but nothing we can do */ \
- } \
- if ((signed)curr_len <= 0) return; \
+ if ((consumed = elem_v_short(tvb, tree, pinfo, EMV_pdu_type, EMV_elem_idx, curr_offset)) > 0) \
+ { \
+ curr_offset += consumed; \
+ curr_len -= consumed; \
+ } \
+ else \
+ { \
+ /* Mandatory, but nothing we can do */ \
+ } \
+ if ((signed)curr_len <= 0) return; \
}
/*
@@ -610,32 +610,32 @@ extern guint16 elem_v_short(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo,
*/
typedef enum
{
- PD_GCC = 0,
- PD_BCC,
- PD_RSVD_1,
- PD_CC,
- PD_GTTP,
- PD_MM,
- PD_RR,
- PD_UNK_1,
- PD_GMM,
- PD_SMS,
- PD_SM,
- PD_SS,
- PD_LCS,
- PD_UNK_2,
- PD_RSVD_EXT,
- PD_TP
+ PD_GCC = 0,
+ PD_BCC,
+ PD_RSVD_1,
+ PD_CC,
+ PD_GTTP,
+ PD_MM,
+ PD_RR,
+ PD_UNK_1,
+ PD_GMM,
+ PD_SMS,
+ PD_SM,
+ PD_SS,
+ PD_LCS,
+ PD_UNK_2,
+ PD_RSVD_EXT,
+ PD_TP
}
gsm_a_pd_str_e;
typedef struct _gsm_a_tap_rec_t {
- /*
- * value from packet-bssap.h
- */
- guint8 pdu_type;
- guint8 message_type;
- gsm_a_pd_str_e protocol_disc;
+ /*
+ * value from packet-bssap.h
+ */
+ guint8 pdu_type;
+ guint8 message_type;
+ gsm_a_pd_str_e protocol_disc;
} gsm_a_tap_rec_t;
void dissect_bssmap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);
@@ -704,7 +704,7 @@ void bssmap_conn_oriented(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo, g
/*
* the following allows TAP code access to the messages
- * without having to duplicate it. With MSVC and a
+ * without having to duplicate it. With MSVC and a
* libwireshark.dll, we need a special declaration.
*/
WS_VAR_IMPORT const value_string gsm_a_bssmap_msg_strings[];
@@ -727,461 +727,461 @@ extern const value_string gsm_a_qos_sdu_err_rat_vals[];
extern const value_string gsm_a_qos_traff_hdl_pri_vals[];
extern const value_string gsm_a_type_of_number_values[];
-extern const value_string gsm_a_numbering_plan_id_values[];
+extern const value_string gsm_a_numbering_plan_id_values[];
extern const value_string gsm_a_sms_vals[];
extern value_string_ext gsm_a_rr_rxlev_vals_ext;
extern const value_string gsm_a_gm_type_of_ciph_alg_vals[];
typedef enum
{
- /* Common Information Elements [3] 10.5.1 */
- DE_CELL_ID, /* Cell Identity */
- DE_CIPH_KEY_SEQ_NUM, /* Ciphering Key Sequence Number */
- DE_LAI, /* Location Area Identification */
- DE_MID, /* Mobile Identity */
- DE_MS_CM_1, /* Mobile Station Classmark 1 */
- DE_MS_CM_2, /* Mobile Station Classmark 2 */
- DE_MS_CM_3, /* Mobile Station Classmark 3 */
- DE_SPARE_NIBBLE, /* Spare Half Octet */
- DE_D_GB_CALL_REF, /* Descriptive group or broadcast call reference */
- DE_G_CIPH_KEY_NUM, /* Group Cipher Key Number */
- DE_PD_SAPI, /* PD and SAPI $(CCBS)$ */
- DE_PRIO, /* Priority Level */
- DE_PLMN_LIST, /* PLMN List */
- DE_NAS_CONT_FOR_PS_HO, /* 10.5.1.14 NAS container for PS HO */
-
- DE_COMMON_NONE /* NONE */
+ /* Common Information Elements [3] 10.5.1 */
+ DE_CELL_ID, /* Cell Identity */
+ DE_CIPH_KEY_SEQ_NUM, /* Ciphering Key Sequence Number */
+ DE_LAI, /* Location Area Identification */
+ DE_MID, /* Mobile Identity */
+ DE_MS_CM_1, /* Mobile Station Classmark 1 */
+ DE_MS_CM_2, /* Mobile Station Classmark 2 */
+ DE_MS_CM_3, /* Mobile Station Classmark 3 */
+ DE_SPARE_NIBBLE, /* Spare Half Octet */
+ DE_D_GB_CALL_REF, /* Descriptive group or broadcast call reference */
+ DE_G_CIPH_KEY_NUM, /* Group Cipher Key Number */
+ DE_PD_SAPI, /* PD and SAPI $(CCBS)$ */
+ DE_PRIO, /* Priority Level */
+ DE_PLMN_LIST, /* PLMN List */
+ DE_NAS_CONT_FOR_PS_HO, /* 10.5.1.14 NAS container for PS HO */
+
+ DE_COMMON_NONE /* NONE */
}
common_elem_idx_t;
typedef enum
{
- BE_CIC, /* Circuit Identity Code */
- BE_RSVD_1, /* Reserved */
- BE_RES_AVAIL, /* Resource Available */
- BE_CAUSE, /* Cause */
- BE_CELL_ID, /* Cell Identifier */
- BE_PRIO, /* Priority */
- BE_L3_HEADER_INFO, /* Layer 3 Header Information */
- BE_IMSI, /* IMSI */
- BE_TMSI, /* TMSI */
- BE_ENC_INFO, /* Encryption Information */
- BE_CHAN_TYPE, /* Channel Type */
- BE_PERIODICITY, /* Periodicity */
- BE_EXT_RES_IND, /* Extended Resource Indicator */
- BE_NUM_MS, /* Number Of MSs */
- BE_RSVD_2, /* Reserved */
- BE_RSVD_3, /* Reserved */
- BE_RSVD_4, /* Reserved */
- BE_CM_INFO_2, /* Classmark Information Type 2 */
- BE_CM_INFO_3, /* Classmark Information Type 3 */
- BE_INT_BAND, /* Interference Band To Be Used */
- BE_RR_CAUSE, /* RR Cause */
- BE_RSVD_5, /* Reserved */
- BE_L3_INFO, /* Layer 3 Information */
- BE_DLCI, /* DLCI */
- BE_DOWN_DTX_FLAG, /* Downlink DTX Flag */
- BE_CELL_ID_LIST, /* Cell Identifier List */
- BE_RESP_REQ, /* Response Request */
- BE_RES_IND_METHOD, /* Resource Indication Method */
- BE_CM_INFO_1, /* Classmark Information Type 1 */
- BE_CIC_LIST, /* Circuit Identity Code List */
- BE_DIAG, /* Diagnostic */
- BE_L3_MSG, /* Layer 3 Message Contents */
- BE_CHOSEN_CHAN, /* Chosen Channel */
- BE_TOT_RES_ACC, /* Total Resource Accessible */
- BE_CIPH_RESP_MODE, /* Cipher Response Mode */
- BE_CHAN_NEEDED, /* Channel Needed */
- BE_TRACE_TYPE, /* Trace Type */
- BE_TRIGGERID, /* TriggerID */
- BE_TRACE_REF, /* Trace Reference */
- BE_TRANSID, /* TransactionID */
- BE_MID, /* Mobile Identity */
- BE_OMCID, /* OMCID */
- BE_FOR_IND, /* Forward Indicator */
- BE_CHOSEN_ENC_ALG, /* Chosen Encryption Algorithm */
- BE_CCT_POOL, /* Circuit Pool */
- BE_CCT_POOL_LIST, /* Circuit Pool List */
- BE_TIME_IND, /* Time Indication */
- BE_RES_SIT, /* Resource Situation */
- BE_CURR_CHAN_1, /* Current Channel Type 1 */
- BE_QUE_IND, /* Queueing Indicator */
- BE_SPEECH_VER, /* Speech Version */
- BE_ASS_REQ, /* Assignment Requirement */
- BE_TALKER_FLAG, /* Talker Flag */
- BE_CONN_REL_REQ, /* Connection Release Requested */
- BE_GROUP_CALL_REF, /* Group Call Reference */
- BE_EMLPP_PRIO, /* eMLPP Priority */
- BE_CONF_EVO_IND, /* Configuration Evolution Indication */
- BE_OLD2NEW_INFO, /* Old BSS to New BSS Information */
- BE_LSA_ID, /* LSA Identifier */
- BE_LSA_ID_LIST, /* LSA Identifier List */
- BE_LSA_INFO, /* LSA Information */
- BE_LCS_QOS, /* LCS QoS */
- BE_LSA_ACC_CTRL, /* LSA access control suppression */
- BE_LCS_PRIO, /* LCS Priority */
- BE_LOC_TYPE, /* Location Type */
- BE_LOC_EST, /* Location Estimate */
- BE_POS_DATA, /* Positioning Data */
- BE_LCS_CAUSE, /* 3.2.2.66 LCS Cause */
- BE_LCS_CLIENT, /* 10.14 LCS Client Type */
- BE_APDU, /* APDU */
- BE_NE_ID, /* Network Element Identity */
- BE_GPS_ASSIST_DATA, /* GPS Assistance Data */
- BE_DECIPH_KEYS, /* Deciphering Keys */
- BE_RET_ERR_REQ, /* Return Error Request */
- BE_RET_ERR_CAUSE, /* Return Error Cause */
- BE_SEG, /* Segmentation */
- BE_SERV_HO, /* Service Handover */
- BE_SRC_RNC_TO_TAR_RNC_UMTS, /* Source RNC to target RNC transparent information (UMTS) */
- BE_SRC_RNC_TO_TAR_RNC_CDMA, /* Source RNC to target RNC transparent information (cdma2000) */
- BE_GERAN_CLS_M, /* GERAN Classmark */
- BE_GRAN_BSC_CONT, /* GERAN BSC Container */
- BE_NEW_BSS_TO_OLD_BSS_INF, /* New BSS to Old BSS Information */
- BE_INTER_SYS_INF, /* Inter-System Information */
- BE_SNA_ACC_INF, /* SNA Access Information */
- BE_VSTK_RAND_INF, /* VSTK_RAND Information */
- BE_VSTK_INF, /* VSTK Information */
- BE_PAGING_INF, /* Paging Information */
- BE_IMEI, /* IMEI */
- BE_VEL_EST, /* Velocity Estimate */
- BE_VGCS_FEAT_FLG, /* VGCS Feature Flags */
- BE_TALKER_PRI, /* Talker Priority */
- BE_EMRG_SET_IND, /* Emergency Set Indication */
- BE_TALKER_ID, /* Talker Identity */
- BE_CELL_ID_LIST_SEG,/* Cell Identifier List Segment */
- BE_SMS_TO_VGCS, /* SMS to VGCS */
- BE_VGCS_TALKER_MOD, /* VGCS Talker Mode */
- BE_VGS_VBS_CELL_STAT, /* VGCS/VBS Cell Status */
- BE_CELL_ID_LST_SEG_F_EST_CELLS, /* Cell Identifier List Segment for established cells */
- BE_CELL_ID_LST_SEG_F_CELL_TB_EST, /* Cell Identifier List Segment for cells to be established */
- BE_CELL_ID_LST_SEG_F_REL_CELL, /* Cell Identifier List Segment for released cells - no user present */
- BE_CELL_ID_LST_SEG_F_NOT_EST_CELL, /* Cell Identifier List Segment for not established cells - no establishment possible */
- BE_GANSS_ASS_DTA, /* GANSS Assistance Data */
- BE_GANSS_POS_DTA, /* GANSS Positioning Data */
- BE_GANSS_LOC_TYP, /* GANSS Location Type */
- BE_APP_DATA, /* Application Data */
- BE_DATA_ID, /* Data Identity */
- BE_APP_DATA_INF, /* Application Data Information */
- BE_MSISDN, /* MSISDN */
- BE_AOIP_TRANS_LAY_ADD, /* AoIP Transport Layer Address */
- BE_SPEECH_CODEC_LST, /* Speech Codec List */
- BE_SPEECH_CODEC, /* Speech Codec */
- BE_CALL_ID, /* Call Identifier */
- BE_CALL_ID_LST, /* Call Identifier List */
- BE_NONE /* NONE */
+ BE_CIC, /* Circuit Identity Code */
+ BE_RSVD_1, /* Reserved */
+ BE_RES_AVAIL, /* Resource Available */
+ BE_CAUSE, /* Cause */
+ BE_CELL_ID, /* Cell Identifier */
+ BE_PRIO, /* Priority */
+ BE_L3_HEADER_INFO, /* Layer 3 Header Information */
+ BE_IMSI, /* IMSI */
+ BE_TMSI, /* TMSI */
+ BE_ENC_INFO, /* Encryption Information */
+ BE_CHAN_TYPE, /* Channel Type */
+ BE_PERIODICITY, /* Periodicity */
+ BE_EXT_RES_IND, /* Extended Resource Indicator */
+ BE_NUM_MS, /* Number Of MSs */
+ BE_RSVD_2, /* Reserved */
+ BE_RSVD_3, /* Reserved */
+ BE_RSVD_4, /* Reserved */
+ BE_CM_INFO_2, /* Classmark Information Type 2 */
+ BE_CM_INFO_3, /* Classmark Information Type 3 */
+ BE_INT_BAND, /* Interference Band To Be Used */
+ BE_RR_CAUSE, /* RR Cause */
+ BE_RSVD_5, /* Reserved */
+ BE_L3_INFO, /* Layer 3 Information */
+ BE_DLCI, /* DLCI */
+ BE_DOWN_DTX_FLAG, /* Downlink DTX Flag */
+ BE_CELL_ID_LIST, /* Cell Identifier List */
+ BE_RESP_REQ, /* Response Request */
+ BE_RES_IND_METHOD, /* Resource Indication Method */
+ BE_CM_INFO_1, /* Classmark Information Type 1 */
+ BE_CIC_LIST, /* Circuit Identity Code List */
+ BE_DIAG, /* Diagnostic */
+ BE_L3_MSG, /* Layer 3 Message Contents */
+ BE_CHOSEN_CHAN, /* Chosen Channel */
+ BE_TOT_RES_ACC, /* Total Resource Accessible */
+ BE_CIPH_RESP_MODE, /* Cipher Response Mode */
+ BE_CHAN_NEEDED, /* Channel Needed */
+ BE_TRACE_TYPE, /* Trace Type */
+ BE_TRIGGERID, /* TriggerID */
+ BE_TRACE_REF, /* Trace Reference */
+ BE_TRANSID, /* TransactionID */
+ BE_MID, /* Mobile Identity */
+ BE_OMCID, /* OMCID */
+ BE_FOR_IND, /* Forward Indicator */
+ BE_CHOSEN_ENC_ALG, /* Chosen Encryption Algorithm */
+ BE_CCT_POOL, /* Circuit Pool */
+ BE_CCT_POOL_LIST, /* Circuit Pool List */
+ BE_TIME_IND, /* Time Indication */
+ BE_RES_SIT, /* Resource Situation */
+ BE_CURR_CHAN_1, /* Current Channel Type 1 */
+ BE_QUE_IND, /* Queueing Indicator */
+ BE_SPEECH_VER, /* Speech Version */
+ BE_ASS_REQ, /* Assignment Requirement */
+ BE_TALKER_FLAG, /* Talker Flag */
+ BE_CONN_REL_REQ, /* Connection Release Requested */
+ BE_GROUP_CALL_REF, /* Group Call Reference */
+ BE_EMLPP_PRIO, /* eMLPP Priority */
+ BE_CONF_EVO_IND, /* Configuration Evolution Indication */
+ BE_OLD2NEW_INFO, /* Old BSS to New BSS Information */
+ BE_LSA_ID, /* LSA Identifier */
+ BE_LSA_ID_LIST, /* LSA Identifier List */
+ BE_LSA_INFO, /* LSA Information */
+ BE_LCS_QOS, /* LCS QoS */
+ BE_LSA_ACC_CTRL, /* LSA access control suppression */
+ BE_LCS_PRIO, /* LCS Priority */
+ BE_LOC_TYPE, /* Location Type */
+ BE_LOC_EST, /* Location Estimate */
+ BE_POS_DATA, /* Positioning Data */
+ BE_LCS_CAUSE, /* 3.2.2.66 LCS Cause */
+ BE_LCS_CLIENT, /* 10.14 LCS Client Type */
+ BE_APDU, /* APDU */
+ BE_NE_ID, /* Network Element Identity */
+ BE_GPS_ASSIST_DATA, /* GPS Assistance Data */
+ BE_DECIPH_KEYS, /* Deciphering Keys */
+ BE_RET_ERR_REQ, /* Return Error Request */
+ BE_RET_ERR_CAUSE, /* Return Error Cause */
+ BE_SEG, /* Segmentation */
+ BE_SERV_HO, /* Service Handover */
+ BE_SRC_RNC_TO_TAR_RNC_UMTS, /* Source RNC to target RNC transparent information (UMTS) */
+ BE_SRC_RNC_TO_TAR_RNC_CDMA, /* Source RNC to target RNC transparent information (cdma2000) */
+ BE_GERAN_CLS_M, /* GERAN Classmark */
+ BE_GRAN_BSC_CONT, /* GERAN BSC Container */
+ BE_NEW_BSS_TO_OLD_BSS_INF, /* New BSS to Old BSS Information */
+ BE_INTER_SYS_INF, /* Inter-System Information */
+ BE_SNA_ACC_INF, /* SNA Access Information */
+ BE_VSTK_RAND_INF, /* VSTK_RAND Information */
+ BE_VSTK_INF, /* VSTK Information */
+ BE_PAGING_INF, /* Paging Information */
+ BE_IMEI, /* IMEI */
+ BE_VEL_EST, /* Velocity Estimate */
+ BE_VGCS_FEAT_FLG, /* VGCS Feature Flags */
+ BE_TALKER_PRI, /* Talker Priority */
+ BE_EMRG_SET_IND, /* Emergency Set Indication */
+ BE_TALKER_ID, /* Talker Identity */
+ BE_CELL_ID_LIST_SEG, /* Cell Identifier List Segment */
+ BE_SMS_TO_VGCS, /* SMS to VGCS */
+ BE_VGCS_TALKER_MOD, /* VGCS Talker Mode */
+ BE_VGS_VBS_CELL_STAT, /* VGCS/VBS Cell Status */
+ BE_CELL_ID_LST_SEG_F_EST_CELLS, /* Cell Identifier List Segment for established cells */
+ BE_CELL_ID_LST_SEG_F_CELL_TB_EST, /* Cell Identifier List Segment for cells to be established */
+ BE_CELL_ID_LST_SEG_F_REL_CELL, /* Cell Identifier List Segment for released cells - no user present */
+ BE_CELL_ID_LST_SEG_F_NOT_EST_CELL, /* Cell Identifier List Segment for not established cells - no establishment possible */
+ BE_GANSS_ASS_DTA, /* GANSS Assistance Data */
+ BE_GANSS_POS_DTA, /* GANSS Positioning Data */
+ BE_GANSS_LOC_TYP, /* GANSS Location Type */
+ BE_APP_DATA, /* Application Data */
+ BE_DATA_ID, /* Data Identity */
+ BE_APP_DATA_INF, /* Application Data Information */
+ BE_MSISDN, /* MSISDN */
+ BE_AOIP_TRANS_LAY_ADD, /* AoIP Transport Layer Address */
+ BE_SPEECH_CODEC_LST, /* Speech Codec List */
+ BE_SPEECH_CODEC, /* Speech Codec */
+ BE_CALL_ID, /* Call Identifier */
+ BE_CALL_ID_LST, /* Call Identifier List */
+ BE_NONE /* NONE */
}
bssmap_elem_idx_t;
typedef enum
{
- /* BSSMAP LE Elements */
- DE_BMAPLE_LCSQOS, /* LCS QOS */
- DE_BMAPLE_LCS_PRIO, /* LCS Priority */
- DE_BMAPLE_LOC_TYPE, /* Location Type */
- DE_BMAPLE_GANSS_LOC_TYPE, /* GANSS Location Type */
- DE_BMAPLE_GEO_LOC, /* 10.9 Geographic Location */
- DE_BMAPLE_POS_DATA, /* Positioning Data */
- DE_BMAPLE_GANSS_POS_DATA, /* GANSS Positioning Data */
- DE_BMAPLE_VELOC_DATA, /* Velocity Data */
- DE_BMAPLE_LCS_CAUSE, /* LCS Cause */
- DE_BMAPLE_LCS_CLIENT_TYPE, /* LCS Client Type */
- DE_BMAPLE_APDU, /* 10.3 APDU */
- DE_BMAPLE_NETWORK_ELEM_ID, /* Network Element Identity */
- DE_BMAPLE_REQ_GPS_ASSIST_D, /* 10.10 Requested GPS Assistance Data */
- DE_BMAPLE_REQ_GNSS_ASSIST_D,/* Requested GANSS Assistance Data */
- DE_BMAPLE_DECIPH_KEYS, /* 10.8 Deciphering Keys */
- DE_BMAPLE_RETURN_ERROR_REQ, /* Return Error Request */
- DE_BMAPLE_RETURN_ERROR_CAUSE, /* Return Error Cause */
- DE_BMAPLE_SEGMENTATION, /* Segmentation */
- DE_BMAPLE_CLASSMARK_TYPE_3, /* Classmark Information Type 3 */
- DE_BMAPLE_CAUSE, /* 10.4 Cause */
- DE_BMAPLE_CELL_IDENTIFIER, /* 10.5 Cell Identifier */
- DE_BMAPLE_CHOSEN_CHANNEL, /* 10.6 Chosen Channel */
- DE_BMAPLE_IMSI, /* 10.11 IMSI */
- DE_BMAPLE_RES1, /* Reserved */
- DE_BMAPLE_RES2, /* Reserved */
- DE_BMAPLE_RES3, /* Reserved */
- DE_BMAPLE_LCS_CAPABILITY, /* LCS Capability */
- DE_BMAPLE_PACKET_MEAS_REP, /* Packet Measurement Report */
- DE_BMAPLE_MEAS_CELL_ID, /* Measured Cell Identity */
- DE_BMAPLE_IMEI, /* IMEI */
- BMAPLE_NONE /* NONE */
+ /* BSSMAP LE Elements */
+ DE_BMAPLE_LCSQOS, /* LCS QOS */
+ DE_BMAPLE_LCS_PRIO, /* LCS Priority */
+ DE_BMAPLE_LOC_TYPE, /* Location Type */
+ DE_BMAPLE_GANSS_LOC_TYPE, /* GANSS Location Type */
+ DE_BMAPLE_GEO_LOC, /* 10.9 Geographic Location */
+ DE_BMAPLE_POS_DATA, /* Positioning Data */
+ DE_BMAPLE_GANSS_POS_DATA, /* GANSS Positioning Data */
+ DE_BMAPLE_VELOC_DATA, /* Velocity Data */
+ DE_BMAPLE_LCS_CAUSE, /* LCS Cause */
+ DE_BMAPLE_LCS_CLIENT_TYPE, /* LCS Client Type */
+ DE_BMAPLE_APDU, /* 10.3 APDU */
+ DE_BMAPLE_NETWORK_ELEM_ID, /* Network Element Identity */
+ DE_BMAPLE_REQ_GPS_ASSIST_D, /* 10.10 Requested GPS Assistance Data */
+ DE_BMAPLE_REQ_GNSS_ASSIST_D,/* Requested GANSS Assistance Data */
+ DE_BMAPLE_DECIPH_KEYS, /* 10.8 Deciphering Keys */
+ DE_BMAPLE_RETURN_ERROR_REQ, /* Return Error Request */
+ DE_BMAPLE_RETURN_ERROR_CAUSE, /* Return Error Cause */
+ DE_BMAPLE_SEGMENTATION, /* Segmentation */
+ DE_BMAPLE_CLASSMARK_TYPE_3, /* Classmark Information Type 3 */
+ DE_BMAPLE_CAUSE, /* 10.4 Cause */
+ DE_BMAPLE_CELL_IDENTIFIER, /* 10.5 Cell Identifier */
+ DE_BMAPLE_CHOSEN_CHANNEL, /* 10.6 Chosen Channel */
+ DE_BMAPLE_IMSI, /* 10.11 IMSI */
+ DE_BMAPLE_RES1, /* Reserved */
+ DE_BMAPLE_RES2, /* Reserved */
+ DE_BMAPLE_RES3, /* Reserved */
+ DE_BMAPLE_LCS_CAPABILITY, /* LCS Capability */
+ DE_BMAPLE_PACKET_MEAS_REP, /* Packet Measurement Report */
+ DE_BMAPLE_MEAS_CELL_ID, /* Measured Cell Identity */
+ DE_BMAPLE_IMEI, /* IMEI */
+ BMAPLE_NONE /* NONE */
}
bssmap_le_elem_idx_t;
typedef enum
{
- /* BSS LAP Elements 5 */
- DE_BLAP_RES1, /* Reserved */
- DE_BLAP_TA, /* Timing Advance */
- DE_BLAP_RES3, /* Reserved */ /* (note) */
- DE_BLAP_RES4, /* Cell Identity */
- DE_BLAP_RES5, /* Reserved */ /* (note) */
- DE_BLAP_RES6, /* Reserved */ /* (note) */
- DE_BLAP_RES7, /* Reserved */ /* (note) */
- DE_BLAP_CH_DESC, /* Channel Description */
- DE_BLAP_RES9, /* Reserved */ /* (note) */
- DE_BLAP_RES10, /* Reserved */ /* (note) */
- DE_BLAP_RES11, /* Reserved */ /* (note) */
- DE_BLAP_MEAS_REP, /* Measurement Report */
- DE_BLAP_RES13, /* Reserved */ /* (note) */
- DE_BLAP_CAUSE, /* Cause */
- DE_BLAP_RRLP_FLG, /* RRLP Flag */
- DE_BLAP_RRLP_IE, /* RRLP IE */
- DE_BLAP_CELL_ID_LIST, /* Cell Identity List */
- DE_BLAP_ENH_MEAS_REP, /* Enhanced Measurement Report */
- DE_BLAP_LAC, /* Location Area Code */
- DE_BLAP_FREQ_LIST, /* Frequency List */
- DE_BLAP_MS_POW, /* MS Power */
- DE_BLAP_DELTA_TIME, /* Delta Timer */
- DE_BLAP_SERV_CELL_ID, /* Serving Cell Identifier */
- DE_BLAP_ENC_KEY, /* Encryption Key (Kc) */
- DE_BLAP_CIP_M_SET, /* Cipher Mode Setting */
- DE_BLAP_CH_MODE, /* Channel Mode */
- DE_BLAP_POLL_REP, /* Polling Repetition */
- DE_BLAP_PKT_CH_DESC, /* Packet Channel Description */
- DE_BLAP_TLLI, /* TLLI */
- DE_BLAP_TFI, /* TFI */
- DE_BLAP_START_TIME, /* Starting Time */
- BSSLAP_NONE /* NONE */
+ /* BSS LAP Elements 5 */
+ DE_BLAP_RES1, /* Reserved */
+ DE_BLAP_TA, /* Timing Advance */
+ DE_BLAP_RES3, /* Reserved */ /* (note) */
+ DE_BLAP_RES4, /* Cell Identity */
+ DE_BLAP_RES5, /* Reserved */ /* (note) */
+ DE_BLAP_RES6, /* Reserved */ /* (note) */
+ DE_BLAP_RES7, /* Reserved */ /* (note) */
+ DE_BLAP_CH_DESC, /* Channel Description */
+ DE_BLAP_RES9, /* Reserved */ /* (note) */
+ DE_BLAP_RES10, /* Reserved */ /* (note) */
+ DE_BLAP_RES11, /* Reserved */ /* (note) */
+ DE_BLAP_MEAS_REP, /* Measurement Report */
+ DE_BLAP_RES13, /* Reserved */ /* (note) */
+ DE_BLAP_CAUSE, /* Cause */
+ DE_BLAP_RRLP_FLG, /* RRLP Flag */
+ DE_BLAP_RRLP_IE, /* RRLP IE */
+ DE_BLAP_CELL_ID_LIST, /* Cell Identity List */
+ DE_BLAP_ENH_MEAS_REP, /* Enhanced Measurement Report */
+ DE_BLAP_LAC, /* Location Area Code */
+ DE_BLAP_FREQ_LIST, /* Frequency List */
+ DE_BLAP_MS_POW, /* MS Power */
+ DE_BLAP_DELTA_TIME, /* Delta Timer */
+ DE_BLAP_SERV_CELL_ID, /* Serving Cell Identifier */
+ DE_BLAP_ENC_KEY, /* Encryption Key (Kc) */
+ DE_BLAP_CIP_M_SET, /* Cipher Mode Setting */
+ DE_BLAP_CH_MODE, /* Channel Mode */
+ DE_BLAP_POLL_REP, /* Polling Repetition */
+ DE_BLAP_PKT_CH_DESC, /* Packet Channel Description */
+ DE_BLAP_TLLI, /* TLLI */
+ DE_BLAP_TFI, /* TFI */
+ DE_BLAP_START_TIME, /* Starting Time */
+ BSSLAP_NONE /* NONE */
}
bsslap_elem_idx_t;
typedef enum
{
- /* Mobility Management Information Elements [3] 10.5.3 */
- DE_AUTH_PARAM_RAND, /* Authentication Parameter RAND */
- DE_AUTH_PARAM_AUTN, /* Authentication Parameter AUTN (UMTS and EPS authentication challenge) */
- DE_AUTH_RESP_PARAM, /* Authentication Response Parameter */
- DE_AUTH_RESP_PARAM_EXT, /* Authentication Response Parameter (extension) (UMTS authentication challenge only) */
- DE_AUTH_FAIL_PARAM, /* Authentication Failure Parameter (UMTS and EPS authentication challenge) */
- DE_CM_SRVC_TYPE, /* CM Service Type */
- DE_ID_TYPE, /* Identity Type */
- DE_LOC_UPD_TYPE, /* Location Updating Type */
- DE_NETWORK_NAME, /* Network Name */
- DE_REJ_CAUSE, /* Reject Cause */
- DE_FOP, /* Follow-on Proceed */
- DE_TIME_ZONE, /* Time Zone */
- DE_TIME_ZONE_TIME, /* Time Zone and Time */
- DE_CTS_PERM, /* CTS Permission */
- DE_LSA_ID, /* LSA Identifier */
- DE_DAY_SAVING_TIME, /* Daylight Saving Time */
- DE_EMERGENCY_NUM_LIST, /* Emergency Number List */
- /* Call Control Information Elements 10.5.4 */
- DE_AUX_STATES, /* Auxiliary States */
- DE_BEARER_CAP, /* Bearer Capability */
- DE_CC_CAP, /* Call Control Capabilities */
- DE_CALL_STATE, /* Call State */
- DE_CLD_PARTY_BCD_NUM, /* Called Party BCD Number */
- DE_CLD_PARTY_SUB_ADDR, /* Called Party Subaddress */
- DE_CLG_PARTY_BCD_NUM, /* Calling Party BCD Number */
- DE_CLG_PARTY_SUB_ADDR, /* Calling Party Subaddress */
- DE_CAUSE, /* Cause */
- DE_CLIR_SUP, /* CLIR Suppression */
- DE_CLIR_INV, /* CLIR Invocation */
- DE_CONGESTION, /* Congestion Level */
- DE_CONN_NUM, /* Connected Number */
- DE_CONN_SUB_ADDR, /* Connected Subaddress */
- DE_FACILITY, /* Facility */
- DE_HLC, /* High Layer Compatibility */
- DE_KEYPAD_FACILITY, /* Keypad Facility */
- DE_LLC, /* Low Layer Compatibility */
- DE_MORE_DATA, /* More Data */
- DE_NOT_IND, /* Notification Indicator */
- DE_PROG_IND, /* Progress Indicator */
- DE_RECALL_TYPE, /* Recall type $(CCBS)$ */
- DE_RED_PARTY_BCD_NUM, /* Redirecting Party BCD Number */
- DE_RED_PARTY_SUB_ADDR, /* Redirecting Party Subaddress */
- DE_REPEAT_IND, /* Repeat Indicator */
- DE_REV_CALL_SETUP_DIR, /* Reverse Call Setup Direction */
- DE_SETUP_CONTAINER, /* SETUP Container $(CCBS)$ */
- DE_SIGNAL, /* Signal */
- DE_SS_VER_IND, /* SS Version Indicator */
- DE_USER_USER, /* User-user */
- DE_ALERT_PATTERN, /* Alerting Pattern $(NIA)$ */
- DE_ALLOWED_ACTIONS, /* Allowed Actions $(CCBS)$ */
- DE_SI, /* Stream Identifier */
- DE_NET_CC_CAP, /* Network Call Control Capabilities */
- DE_CAUSE_NO_CLI, /* Cause of No CLI */
- DE_SUP_CODEC_LIST, /* Supported Codec List */
- DE_SERV_CAT, /* Service Category */
- DE_REDIAL, /* 10.5.4.34 Redial */
- DE_NET_INIT_SERV_UPG, /* 10.5.4.35 Network-initiated Service Upgrade ind */
- /* Short Message Service Information Elements [5] 8.1.4 */
- DE_CP_USER_DATA, /* CP-User Data */
- DE_CP_CAUSE, /* CP-Cause */
- /* Tests procedures information elements 3GPP TS 44.014 6.4.0 and 3GPP TS 34.109 6.4.0 */
- DE_TP_SUB_CHANNEL, /* Close TCH Loop Cmd Sub-channel */
- DE_TP_ACK, /* Open Loop Cmd Ack */
- DE_TP_LOOP_TYPE, /* Close Multi-slot Loop Cmd Loop type*/
- DE_TP_LOOP_ACK, /* Close Multi-slot Loop Ack Result */
- DE_TP_TESTED_DEVICE, /* Test Interface Tested device */
- DE_TP_PDU_DESCRIPTION, /* GPRS Test Mode Cmd PDU description */
- DE_TP_MODE_FLAG, /* GPRS Test Mode Cmd Mode flag */
- DE_TP_EGPRS_MODE_FLAG, /* EGPRS Start Radio Block Loopback Cmd Mode flag */
- DE_TP_UE_TEST_LOOP_MODE, /* Close UE Test Loop Mode */
- DE_TP_UE_POSITIONING_TECHNOLOGY, /* UE Positioning Technology */
- DE_TP_RLC_SDU_COUNTER_VALUE, /* RLC SDU Counter Value */
- DE_TP_EPC_UE_TEST_LOOP_MODE, /* UE Test Loop Mode */
- DE_TP_EPC_UE_TL_A_LB_SETUP, /* UE Test Loop Mode A LB Setup */
- DE_TP_EPC_UE_TL_B_LB_SETUP, /* UE Test Loop Mode B LB Setup */
- DE_NONE /* NONE */
+ /* Mobility Management Information Elements [3] 10.5.3 */
+ DE_AUTH_PARAM_RAND, /* Authentication Parameter RAND */
+ DE_AUTH_PARAM_AUTN, /* Authentication Parameter AUTN (UMTS and EPS authentication challenge) */
+ DE_AUTH_RESP_PARAM, /* Authentication Response Parameter */
+ DE_AUTH_RESP_PARAM_EXT, /* Authentication Response Parameter (extension) (UMTS authentication challenge only) */
+ DE_AUTH_FAIL_PARAM, /* Authentication Failure Parameter (UMTS and EPS authentication challenge) */
+ DE_CM_SRVC_TYPE, /* CM Service Type */
+ DE_ID_TYPE, /* Identity Type */
+ DE_LOC_UPD_TYPE, /* Location Updating Type */
+ DE_NETWORK_NAME, /* Network Name */
+ DE_REJ_CAUSE, /* Reject Cause */
+ DE_FOP, /* Follow-on Proceed */
+ DE_TIME_ZONE, /* Time Zone */
+ DE_TIME_ZONE_TIME, /* Time Zone and Time */
+ DE_CTS_PERM, /* CTS Permission */
+ DE_LSA_ID, /* LSA Identifier */
+ DE_DAY_SAVING_TIME, /* Daylight Saving Time */
+ DE_EMERGENCY_NUM_LIST, /* Emergency Number List */
+ /* Call Control Information Elements 10.5.4 */
+ DE_AUX_STATES, /* Auxiliary States */
+ DE_BEARER_CAP, /* Bearer Capability */
+ DE_CC_CAP, /* Call Control Capabilities */
+ DE_CALL_STATE, /* Call State */
+ DE_CLD_PARTY_BCD_NUM, /* Called Party BCD Number */
+ DE_CLD_PARTY_SUB_ADDR, /* Called Party Subaddress */
+ DE_CLG_PARTY_BCD_NUM, /* Calling Party BCD Number */
+ DE_CLG_PARTY_SUB_ADDR, /* Calling Party Subaddress */
+ DE_CAUSE, /* Cause */
+ DE_CLIR_SUP, /* CLIR Suppression */
+ DE_CLIR_INV, /* CLIR Invocation */
+ DE_CONGESTION, /* Congestion Level */
+ DE_CONN_NUM, /* Connected Number */
+ DE_CONN_SUB_ADDR, /* Connected Subaddress */
+ DE_FACILITY, /* Facility */
+ DE_HLC, /* High Layer Compatibility */
+ DE_KEYPAD_FACILITY, /* Keypad Facility */
+ DE_LLC, /* Low Layer Compatibility */
+ DE_MORE_DATA, /* More Data */
+ DE_NOT_IND, /* Notification Indicator */
+ DE_PROG_IND, /* Progress Indicator */
+ DE_RECALL_TYPE, /* Recall type $(CCBS)$ */
+ DE_RED_PARTY_BCD_NUM, /* Redirecting Party BCD Number */
+ DE_RED_PARTY_SUB_ADDR, /* Redirecting Party Subaddress */
+ DE_REPEAT_IND, /* Repeat Indicator */
+ DE_REV_CALL_SETUP_DIR, /* Reverse Call Setup Direction */
+ DE_SETUP_CONTAINER, /* SETUP Container $(CCBS)$ */
+ DE_SIGNAL, /* Signal */
+ DE_SS_VER_IND, /* SS Version Indicator */
+ DE_USER_USER, /* User-user */
+ DE_ALERT_PATTERN, /* Alerting Pattern $(NIA)$ */
+ DE_ALLOWED_ACTIONS, /* Allowed Actions $(CCBS)$ */
+ DE_SI, /* Stream Identifier */
+ DE_NET_CC_CAP, /* Network Call Control Capabilities */
+ DE_CAUSE_NO_CLI, /* Cause of No CLI */
+ DE_SUP_CODEC_LIST, /* Supported Codec List */
+ DE_SERV_CAT, /* Service Category */
+ DE_REDIAL, /* 10.5.4.34 Redial */
+ DE_NET_INIT_SERV_UPG, /* 10.5.4.35 Network-initiated Service Upgrade ind */
+ /* Short Message Service Information Elements [5] 8.1.4 */
+ DE_CP_USER_DATA, /* CP-User Data */
+ DE_CP_CAUSE, /* CP-Cause */
+ /* Tests procedures information elements 3GPP TS 44.014 6.4.0 and 3GPP TS 34.109 6.4.0 */
+ DE_TP_SUB_CHANNEL, /* Close TCH Loop Cmd Sub-channel */
+ DE_TP_ACK, /* Open Loop Cmd Ack */
+ DE_TP_LOOP_TYPE, /* Close Multi-slot Loop Cmd Loop type*/
+ DE_TP_LOOP_ACK, /* Close Multi-slot Loop Ack Result */
+ DE_TP_TESTED_DEVICE, /* Test Interface Tested device */
+ DE_TP_PDU_DESCRIPTION, /* GPRS Test Mode Cmd PDU description */
+ DE_TP_MODE_FLAG, /* GPRS Test Mode Cmd Mode flag */
+ DE_TP_EGPRS_MODE_FLAG, /* EGPRS Start Radio Block Loopback Cmd Mode flag */
+ DE_TP_UE_TEST_LOOP_MODE, /* Close UE Test Loop Mode */
+ DE_TP_UE_POSITIONING_TECHNOLOGY,/* UE Positioning Technology */
+ DE_TP_RLC_SDU_COUNTER_VALUE, /* RLC SDU Counter Value */
+ DE_TP_EPC_UE_TEST_LOOP_MODE, /* UE Test Loop Mode */
+ DE_TP_EPC_UE_TL_A_LB_SETUP, /* UE Test Loop Mode A LB Setup */
+ DE_TP_EPC_UE_TL_B_LB_SETUP, /* UE Test Loop Mode B LB Setup */
+ DE_NONE /* NONE */
}
dtap_elem_idx_t;
typedef enum
{
- /* GPRS Mobility Management Information Elements [3] 10.5.5 */
- DE_ATTACH_RES, /* [7] 10.5.1 Attach Result*/
- DE_ATTACH_TYPE, /* [7] 10.5.2 Attach Type */
- DE_CIPH_ALG, /* [7] 10.5.3 Cipher Algorithm */
- DE_TMSI_STAT, /* [7] 10.5.4 TMSI Status */
- DE_DETACH_TYPE, /* [7] 10.5.5 Detach Type */
- DE_DRX_PARAM, /* [7] 10.5.6 DRX Parameter */
- DE_FORCE_TO_STAND, /* [7] 10.5.7 Force to Standby */
- DE_FORCE_TO_STAND_H, /* [7] 10.5.8 Force to Standby - Info is in the high nibble */
- DE_P_TMSI_SIG, /* [7] 10.5.9 P-TMSI Signature */
- DE_P_TMSI_SIG_2, /* [7] 10.5.10 P-TMSI Signature 2 */
- DE_ID_TYPE_2, /* [7] 10.5.11 Identity Type 2 */
- DE_IMEISV_REQ, /* [7] 10.5.12 IMEISV Request */
- DE_REC_N_PDU_NUM_LIST, /* [7] 10.5.13 Receive N-PDU Numbers List */
- DE_MS_NET_CAP, /* [7] 10.5.14 MS Network Capability */
- DE_MS_RAD_ACC_CAP, /* [7] 10.5.15 MS Radio Access Capability */
- DE_GMM_CAUSE, /* [7] 10.5.16 GMM Cause */
- DE_RAI, /* [7] 10.5.17 Routing Area Identification */
- DE_UPD_RES, /* [7] 10.5.18 Update Result */
- DE_UPD_TYPE, /* [7] 10.5.19 Update Type */
- DE_AC_REF_NUM, /* [7] 10.5.20 A&C Reference Number */
- DE_AC_REF_NUM_H, /* A&C Reference Number - Info is in the high nibble */
- DE_SRVC_TYPE, /* [7] 10.5.20 Service Type */
- DE_CELL_NOT, /* [7] 10.5.21 Cell Notification */
- DE_PS_LCS_CAP, /* [7] 10.5.22 PS LCS Capability */
- DE_NET_FEAT_SUP, /* [7] 10.5.23 Network Feature Support */
- DE_RAT_INFO_CONTAINER, /* [7] 10.5.24 Inter RAT information container */
- /* [7] 10.5.25 Requested MS information */
- /* Session Management Information Elements [3] 10.5.6 */
- DE_ACC_POINT_NAME, /* Access Point Name */
- DE_NET_SAPI, /* Network Service Access Point Identifier */
- DE_PRO_CONF_OPT, /* Protocol Configuration Options */
- DE_PD_PRO_ADDR, /* Packet Data Protocol Address */
- DE_QOS, /* Quality Of Service */
- DE_SM_CAUSE, /* SM Cause */
- DE_SM_CAUSE_2, /* SM Cause 2 */
- DE_LINKED_TI, /* Linked TI */
- DE_LLC_SAPI, /* LLC Service Access Point Identifier */
- DE_TEAR_DOWN_IND, /* Tear Down Indicator */
- DE_PACKET_FLOW_ID, /* Packet Flow Identifier */
- DE_TRAFFIC_FLOW_TEMPLATE, /* Traffic Flow Template */
- DE_TMGI, /* Temporary Mobile Group Identity (TMGI) */
- DE_MBMS_BEARER_CAP, /* MBMS bearer capabilities */
- DE_MBMS_PROT_CONF_OPT, /* MBMS protocol configuration options */
- DE_ENH_NSAPI, /* Enhanced network service access point identifier */
- DE_REQ_TYPE, /* Request type */
- /* GPRS Common Information Elements [8] 10.5.7 */
- DE_PDP_CONTEXT_STAT, /* [8] 10.5.7.1 PDP Context Status */
- DE_RAD_PRIO, /* [8] 10.5.7.2 Radio Priority */
- DE_GPRS_TIMER, /* [8] 10.5.7.3 GPRS Timer */
- DE_GPRS_TIMER_2, /* [8] 10.5.7.4 GPRS Timer 2 */
- DE_RAD_PRIO_2, /* [8] 10.5.7.5 Radio Priority 2 */
- DE_MBMS_CTX_STATUS, /* [8] 10.5.7.6 MBMS context status */
- DE_GM_NONE /* NONE */
+ /* GPRS Mobility Management Information Elements [3] 10.5.5 */
+ DE_ATTACH_RES, /* [7] 10.5.1 Attach Result*/
+ DE_ATTACH_TYPE, /* [7] 10.5.2 Attach Type */
+ DE_CIPH_ALG, /* [7] 10.5.3 Cipher Algorithm */
+ DE_TMSI_STAT, /* [7] 10.5.4 TMSI Status */
+ DE_DETACH_TYPE, /* [7] 10.5.5 Detach Type */
+ DE_DRX_PARAM, /* [7] 10.5.6 DRX Parameter */
+ DE_FORCE_TO_STAND, /* [7] 10.5.7 Force to Standby */
+ DE_FORCE_TO_STAND_H, /* [7] 10.5.8 Force to Standby - Info is in the high nibble */
+ DE_P_TMSI_SIG, /* [7] 10.5.9 P-TMSI Signature */
+ DE_P_TMSI_SIG_2, /* [7] 10.5.10 P-TMSI Signature 2 */
+ DE_ID_TYPE_2, /* [7] 10.5.11 Identity Type 2 */
+ DE_IMEISV_REQ, /* [7] 10.5.12 IMEISV Request */
+ DE_REC_N_PDU_NUM_LIST, /* [7] 10.5.13 Receive N-PDU Numbers List */
+ DE_MS_NET_CAP, /* [7] 10.5.14 MS Network Capability */
+ DE_MS_RAD_ACC_CAP, /* [7] 10.5.15 MS Radio Access Capability */
+ DE_GMM_CAUSE, /* [7] 10.5.16 GMM Cause */
+ DE_RAI, /* [7] 10.5.17 Routing Area Identification */
+ DE_UPD_RES, /* [7] 10.5.18 Update Result */
+ DE_UPD_TYPE, /* [7] 10.5.19 Update Type */
+ DE_AC_REF_NUM, /* [7] 10.5.20 A&C Reference Number */
+ DE_AC_REF_NUM_H, /* A&C Reference Number - Info is in the high nibble */
+ DE_SRVC_TYPE, /* [7] 10.5.20 Service Type */
+ DE_CELL_NOT, /* [7] 10.5.21 Cell Notification */
+ DE_PS_LCS_CAP, /* [7] 10.5.22 PS LCS Capability */
+ DE_NET_FEAT_SUP, /* [7] 10.5.23 Network Feature Support */
+ DE_RAT_INFO_CONTAINER, /* [7] 10.5.24 Inter RAT information container */
+ /* [7] 10.5.25 Requested MS information */
+ /* Session Management Information Elements [3] 10.5.6 */
+ DE_ACC_POINT_NAME, /* Access Point Name */
+ DE_NET_SAPI, /* Network Service Access Point Identifier */
+ DE_PRO_CONF_OPT, /* Protocol Configuration Options */
+ DE_PD_PRO_ADDR, /* Packet Data Protocol Address */
+ DE_QOS, /* Quality Of Service */
+ DE_SM_CAUSE, /* SM Cause */
+ DE_SM_CAUSE_2, /* SM Cause 2 */
+ DE_LINKED_TI, /* Linked TI */
+ DE_LLC_SAPI, /* LLC Service Access Point Identifier */
+ DE_TEAR_DOWN_IND, /* Tear Down Indicator */
+ DE_PACKET_FLOW_ID, /* Packet Flow Identifier */
+ DE_TRAFFIC_FLOW_TEMPLATE, /* Traffic Flow Template */
+ DE_TMGI, /* Temporary Mobile Group Identity (TMGI) */
+ DE_MBMS_BEARER_CAP, /* MBMS bearer capabilities */
+ DE_MBMS_PROT_CONF_OPT, /* MBMS protocol configuration options */
+ DE_ENH_NSAPI, /* Enhanced network service access point identifier */
+ DE_REQ_TYPE, /* Request type */
+ /* GPRS Common Information Elements [8] 10.5.7 */
+ DE_PDP_CONTEXT_STAT, /* [8] 10.5.7.1 PDP Context Status */
+ DE_RAD_PRIO, /* [8] 10.5.7.2 Radio Priority */
+ DE_GPRS_TIMER, /* [8] 10.5.7.3 GPRS Timer */
+ DE_GPRS_TIMER_2, /* [8] 10.5.7.4 GPRS Timer 2 */
+ DE_RAD_PRIO_2, /* [8] 10.5.7.5 Radio Priority 2 */
+ DE_MBMS_CTX_STATUS, /* [8] 10.5.7.6 MBMS context status */
+ DE_GM_NONE /* NONE */
}
gm_elem_idx_t;
typedef enum
{
- /* Radio Resource Management Information Elements 10.5.2, most are from 10.5.1 */
- DE_RR_BA_RANGE, /* [3] 10.5.2.1a BA Range */
- DE_RR_CELL_CH_DSC, /* [3] 10.5.2.1b Cell Channel Description */
- DE_RR_BA_LIST_PREF, /* [3] 10.5.2.1c BA List Pref */
- DE_RR_UTRAN_FREQ_LIST, /* [3] 10.5.2.1d UTRAN Frequency List */
- DE_RR_CELL_SELECT_INDIC, /* [3] 10.5.2.1e Cell selection indicator after release of all TCH and SDCCH IE */
- DE_RR_CELL_DSC, /* 10.5.2.2 RR Cell Description */
- DE_RR_CELL_OPT_BCCH, /* [3] 10.5.2.3 Cell Options (BCCH) */
- DE_RR_CELL_OPT_SACCH, /* [3] 10.5.2.3a Cell Options (SACCH) */
- DE_RR_CELL_SEL_PARAM, /* [3] 10.5.2.4 Cell Selection Parameters */
+ /* Radio Resource Management Information Elements 10.5.2, most are from 10.5.1 */
+ DE_RR_BA_RANGE, /* [3] 10.5.2.1a BA Range */
+ DE_RR_CELL_CH_DSC, /* [3] 10.5.2.1b Cell Channel Description */
+ DE_RR_BA_LIST_PREF, /* [3] 10.5.2.1c BA List Pref */
+ DE_RR_UTRAN_FREQ_LIST, /* [3] 10.5.2.1d UTRAN Frequency List */
+ DE_RR_CELL_SELECT_INDIC, /* [3] 10.5.2.1e Cell selection indicator after release of all TCH and SDCCH IE */
+ DE_RR_CELL_DSC, /* 10.5.2.2 RR Cell Description */
+ DE_RR_CELL_OPT_BCCH, /* [3] 10.5.2.3 Cell Options (BCCH) */
+ DE_RR_CELL_OPT_SACCH, /* [3] 10.5.2.3a Cell Options (SACCH) */
+ DE_RR_CELL_SEL_PARAM, /* [3] 10.5.2.4 Cell Selection Parameters */
/*
- * [3] 10.5.2.4a (void)
+ * [3] 10.5.2.4a (void)
*/
- DE_RR_CH_DSC, /* [3] 10.5.2.5 Channel Description */
- DE_RR_CH_DSC2, /* [3] 10.5.2.5a Channel Description 2 */
- DE_RR_CH_DSC3, /* [3] 10.5.2.5c Channel Description 3 */
- DE_RR_CH_MODE, /* [3] 10.5.2.6 Channel Mode */
- DE_RR_CH_MODE2, /* [3] 10.5.2.7 Channel Mode 2 */
- DE_RR_UTRAN_CM, /* [3] 10.5.2.7a UTRAN Classmark */
-/* [3] 10.5.2.7b (void) */
- DE_RR_CM_ENQ_MASK, /* [3] 10.5.2.7c Classmark Enquiry Mask */
-/* [3] 10.5.2.7d GERAN Iu Mode Classmark information element */
- DE_RR_CHNL_NEEDED, /* [3] 10.5.2.8 Channel Needed
- * [3] 10.5.2.8a (void)
- * [3] 10.5.2.8b Channel Request Description 2 */
- DE_RR_CIP_MODE_SET, /* [3] 10.5.2.9 Cipher Mode Setting */
- DE_RR_CIP_MODE_RESP, /* [3] 10.5.2.10 Cipher Response */
- DE_RR_CTRL_CH_DESC, /* [3] 10.5.2.11 Control Channel Description */
-/* [3] 10.5.2.11a DTM Information Details */
- DE_RR_DYN_ARFCN_MAP, /* [3] 10.5.2.11b Dynamic ARFCN Mapping */
- DE_RR_FREQ_CH_SEQ, /* [3] 10.5.2.12 Frequency Channel Sequence */
- DE_RR_FREQ_LIST, /* [3] 10.5.2.13 Frequency List */
- DE_RR_FREQ_SHORT_LIST, /* [3] 10.5.2.14 Frequency Short List */
- DE_RR_FREQ_SHORT_LIST2, /* [3] 10.5.2.14a Frequency Short List 2 */
-/* [3] 10.5.2.14b Group Channel Description */
- DE_RR_GPRS_RESUMPTION, /* [3] 10.5.2.14c GPRS Resumption */
- DE_RR_GPRS_BROADCAST_INFORMATION, /* [3] 10.5.2.14d GPRS broadcast information */
-/* [3] 10.5.2.14e Enhanced DTM CS Release Indication*/
-
- DE_RR_HO_REF, /* 10.5.2.15 Handover Reference */
-
- DE_RR_IA_REST_OCT, /* [3] 10.5.2.16 IA Rest Octets */
- DE_RR_IAR_REST_OCT, /* [3] 10.5.2.17 IAR Rest Octets */
- DE_RR_IAX_REST_OCT, /* [3] 10.5.2.18 IAX Rest Octets */
- DE_RR_L2_PSEUDO_LEN, /* [3] 10.5.2.19 L2 Pseudo Length */
- DE_RR_MEAS_RES, /* [3] 10.5.2.20 Measurement Results */
+ DE_RR_CH_DSC, /* [3] 10.5.2.5 Channel Description */
+ DE_RR_CH_DSC2, /* [3] 10.5.2.5a Channel Description 2 */
+ DE_RR_CH_DSC3, /* [3] 10.5.2.5c Channel Description 3 */
+ DE_RR_CH_MODE, /* [3] 10.5.2.6 Channel Mode */
+ DE_RR_CH_MODE2, /* [3] 10.5.2.7 Channel Mode 2 */
+ DE_RR_UTRAN_CM, /* [3] 10.5.2.7a UTRAN Classmark */
+/* [3] 10.5.2.7b (void) */
+ DE_RR_CM_ENQ_MASK, /* [3] 10.5.2.7c Classmark Enquiry Mask */
+/* [3] 10.5.2.7d GERAN Iu Mode Classmark information element */
+ DE_RR_CHNL_NEEDED, /* [3] 10.5.2.8 Channel Needed
+ * [3] 10.5.2.8a (void)
+ * [3] 10.5.2.8b Channel Request Description 2 */
+ DE_RR_CIP_MODE_SET, /* [3] 10.5.2.9 Cipher Mode Setting */
+ DE_RR_CIP_MODE_RESP, /* [3] 10.5.2.10 Cipher Response */
+ DE_RR_CTRL_CH_DESC, /* [3] 10.5.2.11 Control Channel Description */
+/* [3] 10.5.2.11a DTM Information Details */
+ DE_RR_DYN_ARFCN_MAP, /* [3] 10.5.2.11b Dynamic ARFCN Mapping */
+ DE_RR_FREQ_CH_SEQ, /* [3] 10.5.2.12 Frequency Channel Sequence */
+ DE_RR_FREQ_LIST, /* [3] 10.5.2.13 Frequency List */
+ DE_RR_FREQ_SHORT_LIST, /* [3] 10.5.2.14 Frequency Short List */
+ DE_RR_FREQ_SHORT_LIST2, /* [3] 10.5.2.14a Frequency Short List 2 */
+/* [3] 10.5.2.14b Group Channel Description */
+ DE_RR_GPRS_RESUMPTION, /* [3] 10.5.2.14c GPRS Resumption */
+ DE_RR_GPRS_BROADCAST_INFORMATION, /* [3] 10.5.2.14d GPRS broadcast information */
+/* [3] 10.5.2.14e Enhanced DTM CS Release Indication*/
+
+ DE_RR_HO_REF, /* 10.5.2.15 Handover Reference */
+
+ DE_RR_IA_REST_OCT, /* [3] 10.5.2.16 IA Rest Octets */
+ DE_RR_IAR_REST_OCT, /* [3] 10.5.2.17 IAR Rest Octets */
+ DE_RR_IAX_REST_OCT, /* [3] 10.5.2.18 IAX Rest Octets */
+ DE_RR_L2_PSEUDO_LEN, /* [3] 10.5.2.19 L2 Pseudo Length */
+ DE_RR_MEAS_RES, /* [3] 10.5.2.20 Measurement Results */
/* [3] 10.5.2.20a GPRS Measurement Results */
- DE_RR_MOB_ALL, /* [3] 10.5.2.21 Mobile Allocation */
- DE_RR_MOB_TIME_DIFF, /* [3] 10.5.2.21a Mobile Time Difference */
- DE_RR_MULTIRATE_CONF, /* [3] 10.5.2.21aa MultiRate configuration */
- DE_RR_MULT_ALL, /* [3] 10.5.2.21b Multislot Allocation */
+ DE_RR_MOB_ALL, /* [3] 10.5.2.21 Mobile Allocation */
+ DE_RR_MOB_TIME_DIFF, /* [3] 10.5.2.21a Mobile Time Difference */
+ DE_RR_MULTIRATE_CONF, /* [3] 10.5.2.21aa MultiRate configuration */
+ DE_RR_MULT_ALL, /* [3] 10.5.2.21b Multislot Allocation */
/*
* [3] 10.5.2.21c NC mode
*/
- DE_RR_NEIGH_CELL_DESC, /* [3] 10.5.2.22 Neighbour Cell Description */
- DE_RR_NEIGH_CELL_DESC2, /* [3] 10.5.2.22a Neighbour Cell Description 2 */
+ DE_RR_NEIGH_CELL_DESC, /* [3] 10.5.2.22 Neighbour Cell Description */
+ DE_RR_NEIGH_CELL_DESC2, /* [3] 10.5.2.22a Neighbour Cell Description 2 */
/*
* [3] 10.5.2.22b (void)
* [3] 10.5.2.22c NT/N Rest Octets */
- DE_RR_P1_REST_OCT, /* [3] 10.5.2.23 P1 Rest Octets */
- DE_RR_P2_REST_OCT, /* [3] 10.5.2.24 P2 Rest Octets */
- DE_RR_P3_REST_OCT, /* [3] 10.5.2.25 P3 Rest Octets */
- DE_RR_PACKET_CH_DESC, /* [3] 10.5.2.25a Packet Channel Description */
- DE_RR_DED_MOD_OR_TBF, /* [3] 10.5.2.25b Dedicated mode or TBF */
+ DE_RR_P1_REST_OCT, /* [3] 10.5.2.23 P1 Rest Octets */
+ DE_RR_P2_REST_OCT, /* [3] 10.5.2.24 P2 Rest Octets */
+ DE_RR_P3_REST_OCT, /* [3] 10.5.2.25 P3 Rest Octets */
+ DE_RR_PACKET_CH_DESC, /* [3] 10.5.2.25a Packet Channel Description */
+ DE_RR_DED_MOD_OR_TBF, /* [3] 10.5.2.25b Dedicated mode or TBF */
/* [3] 10.5.2.25c RR Packet Uplink Assignment
* [3] 10.5.2.25d RR Packet Downlink Assignment */
- DE_RR_PAGE_MODE, /* [3] 10.5.2.26 Page Mode */
+ DE_RR_PAGE_MODE, /* [3] 10.5.2.26 Page Mode */
/* [3] 10.5.2.26a (void)
* [3] 10.5.2.26b (void)
* [3] 10.5.2.26c (void)
* [3] 10.5.2.26d (void)
*/
- DE_RR_NCC_PERM, /* [3] 10.5.2.27 NCC Permitted */
- DE_RR_POW_CMD, /* 10.5.2.28 Power Command */
- DE_RR_POW_CMD_AND_ACC_TYPE, /* 10.5.2.28a Power Command and access type */
- DE_RR_RACH_CTRL_PARAM, /* [3] 10.5.2.29 RACH Control Parameters */
- DE_RR_REQ_REF, /* [3] 10.5.2.30 Request Reference */
- DE_RR_CAUSE, /* 10.5.2.31 RR Cause */
- DE_RR_SYNC_IND, /* 10.5.2.39 Synchronization Indication */
- DE_RR_SI1_REST_OCT, /* [3] 10.5.2.32 SI1 Rest Octets */
+ DE_RR_NCC_PERM, /* [3] 10.5.2.27 NCC Permitted */
+ DE_RR_POW_CMD, /* 10.5.2.28 Power Command */
+ DE_RR_POW_CMD_AND_ACC_TYPE, /* 10.5.2.28a Power Command and access type */
+ DE_RR_RACH_CTRL_PARAM, /* [3] 10.5.2.29 RACH Control Parameters */
+ DE_RR_REQ_REF, /* [3] 10.5.2.30 Request Reference */
+ DE_RR_CAUSE, /* 10.5.2.31 RR Cause */
+ DE_RR_SYNC_IND, /* 10.5.2.39 Synchronization Indication */
+ DE_RR_SI1_REST_OCT, /* [3] 10.5.2.32 SI1 Rest Octets */
/* [3] 10.5.2.33 SI 2bis Rest Octets */
- DE_RR_SI2TER_REST_OCT, /* [3] 10.5.2.33a SI 2ter Rest Octets */
- DE_RR_SI2QUATER_REST_OCT, /* [3] 10.5.2.33b SI 2quater Rest Octets */
- DE_RR_SI3_REST_OCT, /* [3] 10.5.2.34 SI3 Rest Octets */
- DE_RR_SI4_REST_OCT, /* [3] 10.5.2.35 SI4 Rest Octets */
- DE_RR_SI6_REST_OCT, /* [3] 10.5.2.35a SI6 Rest Octets */
+ DE_RR_SI2TER_REST_OCT, /* [3] 10.5.2.33a SI 2ter Rest Octets */
+ DE_RR_SI2QUATER_REST_OCT, /* [3] 10.5.2.33b SI 2quater Rest Octets */
+ DE_RR_SI3_REST_OCT, /* [3] 10.5.2.34 SI3 Rest Octets */
+ DE_RR_SI4_REST_OCT, /* [3] 10.5.2.35 SI4 Rest Octets */
+ DE_RR_SI6_REST_OCT, /* [3] 10.5.2.35a SI6 Rest Octets */
/* [3] 10.5.2.36 SI 7 Rest Octets
* [3] 10.5.2.37 SI 8 Rest Octets
* [3] 10.5.2.37a SI 9 Rest Octets
*/
- DE_RR_SI13_REST_OCT, /* [3] 10.5.2.37b SI13 Rest Octets */
+ DE_RR_SI13_REST_OCT, /* [3] 10.5.2.37b SI13 Rest Octets */
/* [3] 10.5.2.37c (void)
* [3] 10.5.2.37d (void)
* [3] 10.5.2.37e SI 16 Rest Octets
@@ -1189,33 +1189,33 @@ typedef enum
* [3] 10.5.2.37g SI 19 Rest Octets
* [3] 10.5.2.37h SI 18 Rest Octets
* [3] 10.5.2.37i SI 20 Rest Octets */
- DE_RR_STARTING_TIME, /* [3] 10.5.2.38 Starting Time */
- DE_RR_TIMING_ADV, /* [3] 10.5.2.40 Timing Advance */
- DE_RR_TIME_DIFF, /* [3] 10.5.2.41 Time Difference */
- DE_RR_TLLI, /* [3] 10.5.2.41a TLLI */
- DE_RR_TMSI_PTMSI, /* [3] 10.5.2.42 TMSI/P-TMSI */
- DE_RR_VGCS_TAR_MODE_IND, /* [3] 10.5.2.42a VGCS target mode Indication */
- DE_RR_VGCS_CIP_PAR, /* [3] 10.5.2.42b VGCS Ciphering Parameters */
-
- DE_RR_WAIT_IND, /* [3] 10.5.2.43 Wait Indication */
+ DE_RR_STARTING_TIME, /* [3] 10.5.2.38 Starting Time */
+ DE_RR_TIMING_ADV, /* [3] 10.5.2.40 Timing Advance */
+ DE_RR_TIME_DIFF, /* [3] 10.5.2.41 Time Difference */
+ DE_RR_TLLI, /* [3] 10.5.2.41a TLLI */
+ DE_RR_TMSI_PTMSI, /* [3] 10.5.2.42 TMSI/P-TMSI */
+ DE_RR_VGCS_TAR_MODE_IND, /* [3] 10.5.2.42a VGCS target mode Indication */
+ DE_RR_VGCS_CIP_PAR, /* [3] 10.5.2.42b VGCS Ciphering Parameters */
+
+ DE_RR_WAIT_IND, /* [3] 10.5.2.43 Wait Indication */
/* [3] 10.5.2.44 SI10 rest octets $(ASCI)$ */
- DE_RR_EXT_MEAS_RESULT, /* [3] 10.5.2.45 Extended Measurement Results */
- DE_RR_EXT_MEAS_FREQ_LIST, /* [3] 10.5.2.46 Extended Measurement Frequency List */
- DE_RR_SUS_CAU, /* [3] 10.5.2.47 Suspension Cause */
- DE_RR_APDU_ID, /* [3] 10.5.2.48 APDU ID */
- DE_RR_APDU_FLAGS, /* [3] 10.5.2.49 APDU Flags */
- DE_RR_APDU_DATA, /* [3] 10.5.2.50 APDU Data */
- DE_RR_HO_TO_UTRAN_CMD, /* [3] 10.5.2.51 Handover To UTRAN Command */
+ DE_RR_EXT_MEAS_RESULT, /* [3] 10.5.2.45 Extended Measurement Results */
+ DE_RR_EXT_MEAS_FREQ_LIST, /* [3] 10.5.2.46 Extended Measurement Frequency List */
+ DE_RR_SUS_CAU, /* [3] 10.5.2.47 Suspension Cause */
+ DE_RR_APDU_ID, /* [3] 10.5.2.48 APDU ID */
+ DE_RR_APDU_FLAGS, /* [3] 10.5.2.49 APDU Flags */
+ DE_RR_APDU_DATA, /* [3] 10.5.2.50 APDU Data */
+ DE_RR_HO_TO_UTRAN_CMD, /* [3] 10.5.2.51 Handover To UTRAN Command */
/* [3] 10.5.2.52 Handover To cdma2000 Command
* [3] 10.5.2.53 (void)
* [3] 10.5.2.54 (void)
* [3] 10.5.2.55 (void)
* [3] 10.5.2.56 3G Target Cell */
- DE_RR_SERV_SUP, /* 10.5.2.57 Service Support */
+ DE_RR_SERV_SUP, /* 10.5.2.57 Service Support */
/* 10.5.2.58 MBMS p-t-m Channel Description
*/
- DE_RR_DED_SERV_INF, /* [3] 10.5.2.59 Dedicated Service Information */
+ DE_RR_DED_SERV_INF, /* [3] 10.5.2.59 Dedicated Service Information */
/*
* 10.5.2.60 MPRACH Description
@@ -1228,8 +1228,8 @@ typedef enum
* 10.5.2.67 PS Cause
* 10.5.2.68 VGCS AMR Configuration
*/
- DE_RR_CARRIER_IND, /* 10.5.2.69 Carrier Indication */
- DE_RR_NONE /* NONE */
+ DE_RR_CARRIER_IND, /* 10.5.2.69 Carrier Indication */
+ DE_RR_NONE /* NONE */
}
rr_elem_idx_t;
@@ -1292,47 +1292,47 @@ nas_emm_elem_idx_t;
typedef enum
{
- DE_SGSAP_IMSI, /* 9.4.6 IMSI*/
- DE_SGSAP_VLR_NAME, /* 9.4.22 VLR name*/
- DE_SGSAP_TMSI, /* 9.4.20 TMSI */
- DE_SGSAP_LOC_AREA_ID, /* 9.4.11 Location area identifier */
- DE_SGSAP_CH_NEEDED, /* 9.4.23 Channel Needed */
- DE_SGSAP_EMLPP_PRIO, /* 9.4.24 eMLPP Priority*/
- DE_SGSAP_TMSI_STATUS, /* 9.4.21 TMSI status */
- DE_SGSAP_SGS_CAUSE, /* 9.4.18 SGs cause*/
- DE_SGSAP_MME_NAME, /* 9.4.13 MME name*/
- DE_SGSAP_EPS_LOC_UPD_TYPE, /* 9.4.2 EPS location update type*/
- DE_SGSAP_GLOBAL_CN_ID, /* 9.4.4 Global CN-Id*/
-
- DE_SGSAP_UDEF_12, /* Undefined */
- DE_SGSAP_UDEF_13, /* Undefined */
-
- DE_SGSAP_MID, /* 9.4.14 Mobile identity*/
- DE_SGSAP_REJ_CAUSE, /* 9.4.16 Reject cause */
- DE_SGSAP_IMSI_DET_EPS, /* 9.4.7 IMSI detach from EPS service type */
- DE_SGSAP_IMSI_DET_NON_EPS, /* 9.4.8 IMSI detach from non-EPS service type */
-
- DE_SGSAP_IMEISV, /* 9.4.5 IMEISV */
- DE_SGSAP_NAS_MSG_CONTAINER, /* 9.4.15 NAS message container*/
- DE_SGSAP_MM_INFO, /* 9.4.12 MM information*/
-
- DE_SGSAP_UDEF_24, /* Undefined */
- DE_SGSAP_UDEF_25, /* Undefined */
- DE_SGSAP_UDEF_26, /* Undefined */
-
- DE_SGSAP_ERR_MSG, /* 9.4.3 Erroneous message*/
- DE_SGSAP_CLI, /* 9.4.1 CLI */
- DE_SGSAP_LCS_CLIENT_ID, /* 9.4.9 LCS client identity */
- DE_SGSAP_LCS_INDIC, /* 9.4.10 LCS indicator */
- DE_SGSAP_SS_CODE, /* 9.4.19 SS code */
- DE_SGSAP_SERV_INDIC, /* 9.4.17 Service indicator */
- DE_SGSAP_UE_TZ, /* 9.4.21b UE Time Zone */
- DE_SGSAP_MSC_2, /* 9.4.14a Mobile Station Classmark 2 */
- DE_SGSAP_TAID, /* 9.4.21a Tracking Area Identity */
- DE_SGSAP_ECGI, /* 9.4.3a E-UTRAN Cell Global Identity */
- DE_SGSAP_UE_EMM_MODE, /* 9.4.21c UE EMM mode*/
-
- DE_SGAP_NONE /* NONE */
+ DE_SGSAP_IMSI, /* 9.4.6 IMSI*/
+ DE_SGSAP_VLR_NAME, /* 9.4.22 VLR name*/
+ DE_SGSAP_TMSI, /* 9.4.20 TMSI */
+ DE_SGSAP_LOC_AREA_ID, /* 9.4.11 Location area identifier */
+ DE_SGSAP_CH_NEEDED, /* 9.4.23 Channel Needed */
+ DE_SGSAP_EMLPP_PRIO, /* 9.4.24 eMLPP Priority*/
+ DE_SGSAP_TMSI_STATUS, /* 9.4.21 TMSI status */
+ DE_SGSAP_SGS_CAUSE, /* 9.4.18 SGs cause*/
+ DE_SGSAP_MME_NAME, /* 9.4.13 MME name*/
+ DE_SGSAP_EPS_LOC_UPD_TYPE, /* 9.4.2 EPS location update type*/
+ DE_SGSAP_GLOBAL_CN_ID, /* 9.4.4 Global CN-Id*/
+
+ DE_SGSAP_UDEF_12, /* Undefined */
+ DE_SGSAP_UDEF_13, /* Undefined */
+
+ DE_SGSAP_MID, /* 9.4.14 Mobile identity*/
+ DE_SGSAP_REJ_CAUSE, /* 9.4.16 Reject cause */
+ DE_SGSAP_IMSI_DET_EPS, /* 9.4.7 IMSI detach from EPS service type */
+ DE_SGSAP_IMSI_DET_NON_EPS, /* 9.4.8 IMSI detach from non-EPS service type */
+
+ DE_SGSAP_IMEISV, /* 9.4.5 IMEISV */
+ DE_SGSAP_NAS_MSG_CONTAINER, /* 9.4.15 NAS message container*/
+ DE_SGSAP_MM_INFO, /* 9.4.12 MM information*/
+
+ DE_SGSAP_UDEF_24, /* Undefined */
+ DE_SGSAP_UDEF_25, /* Undefined */
+ DE_SGSAP_UDEF_26, /* Undefined */
+
+ DE_SGSAP_ERR_MSG, /* 9.4.3 Erroneous message*/
+ DE_SGSAP_CLI, /* 9.4.1 CLI */
+ DE_SGSAP_LCS_CLIENT_ID, /* 9.4.9 LCS client identity */
+ DE_SGSAP_LCS_INDIC, /* 9.4.10 LCS indicator */
+ DE_SGSAP_SS_CODE, /* 9.4.19 SS code */
+ DE_SGSAP_SERV_INDIC, /* 9.4.17 Service indicator */
+ DE_SGSAP_UE_TZ, /* 9.4.21b UE Time Zone */
+ DE_SGSAP_MSC_2, /* 9.4.14a Mobile Station Classmark 2 */
+ DE_SGSAP_TAID, /* 9.4.21a Tracking Area Identity */
+ DE_SGSAP_ECGI, /* 9.4.3a E-UTRAN Cell Global Identity */
+ DE_SGSAP_UE_EMM_MODE, /* 9.4.21c UE EMM mode*/
+
+ DE_SGAP_NONE /* NONE */
}
sgsap_elem_idx_t;