Kerberos: add kerberos_inject_longterm_key() helper function
[wireshark-sm.git] / epan / dissectors / asn1 / lix2 / lix2.cnf
blob5e4fc9bb7e6e2c25a5b5a5884c7cc0a5b5e5f21a
1 # lix2.cnf
2 # lix2 conformation file
4 # $Id$
6 #.MODULE_IMPORT
8 #.OMIT_ASSIGNMENT
9 HeaderOnlyIndication
10 KAFParams
11 AreaScopeOfMDT
12 MDTActivation
13 MDTConfigurationEUTRA
14 MDTConfigurationNR
15 MDTMode
16 PDNPCO
17 RCSServerURI
19 #.EXPORTS
21 #.PDU
22 XIRIPayload
24 #.NO_EMIT
26 #.TYPE_RENAME
28 #.FN_BODY IMSI
29   unsigned tvb_len;
31   /*
32    * Derived from the International Mobile Subscription Identity defined in TS 23.003 [19] clause 2.1 and clause 2.2.
33    */
35   tvb_len = tvb_reported_length(tvb);
37   dissect_e212_utf8_imsi(tvb, actx->pinfo, tree, offset, tvb_len);
39   offset = tvb_len;
41 #.FN_BODY MSISDN
42   unsigned tvb_len;
44   /*
45    * Derived from the MSISDN defined in TS 23.003 [19] clause 3.3.
46    */
48   tvb_len = tvb_reported_length(tvb);
50   //dissect_e212_utf8_imsi(tvb, actx->pinfo, tree, offset, tvb_len);
51   dissect_e164_msisdn(tvb, tree, offset, tvb_len, E164_ENC_UTF8);
53   offset = tvb_len;
56 # GTPv2 8.13 Protocol Configuration Options (PCO)
57 # Protocol Configuration Options (PCO) is transferred via GTP tunnels. The sending entity copies the value part of the
58 # PCO into the Value field of the PCO IE. The detailed coding of the PCO field from octets 5 to (n+4) shall be specified
59 # as per clause 10.5.6.3 of 3GPP TS 24.008 [5], starting with octet 3.
62 #.FN_BODY PDNProtocolConfigurationOptions/requestPCO
63   unsigned tvb_len;
65   tvb_len = tvb_reported_length(tvb);
67   actx->pinfo->link_dir = P2P_DIR_UL;
68   de_sm_pco(tvb, tree, actx->pinfo, 0, tvb_len, NULL, 0);
70   offset = tvb_len;
72 #.FN_BODY PDNProtocolConfigurationOptions/requestAPCO
73   unsigned tvb_len;
75   tvb_len = tvb_reported_length(tvb);
77   actx->pinfo->link_dir = P2P_DIR_UL;
78   de_sm_pco(tvb, tree, actx->pinfo, 0, tvb_len, NULL, 0);
80   offset = tvb_len;
82 #.FN_BODY PDNProtocolConfigurationOptions/requestEPCO
83   unsigned tvb_len;
85   tvb_len = tvb_reported_length(tvb);
87   actx->pinfo->link_dir = P2P_DIR_UL;
88   de_sm_pco(tvb, tree, actx->pinfo, 0, tvb_len, NULL, 0);
90   offset = tvb_len;
92 #.FN_BODY PDNProtocolConfigurationOptions/responsePCO
93   unsigned tvb_len;
95   tvb_len = tvb_reported_length(tvb);
97   actx->pinfo->link_dir = P2P_DIR_DL;
98   de_sm_pco(tvb, tree, actx->pinfo, 0, tvb_len, NULL, 0);
100   offset = tvb_len;
102 #.FN_BODY PDNProtocolConfigurationOptions/responseAPCO
103   unsigned tvb_len;
105   tvb_len = tvb_reported_length(tvb);
107   actx->pinfo->link_dir = P2P_DIR_DL;
108   de_sm_pco(tvb, tree, actx->pinfo, 0, tvb_len, NULL, 0);
110   offset = tvb_len;
112 #.FN_BODY PDNProtocolConfigurationOptions/responseEPCO
113   unsigned tvb_len;
115   tvb_len = tvb_reported_length(tvb);
117   actx->pinfo->link_dir = P2P_DIR_DL;
118   de_sm_pco(tvb, tree, actx->pinfo, 0, tvb_len, NULL, 0);
120   offset = tvb_len;
122 #.FN_BODY PDNConnectionIndicationFlags
123   proto_tree *eps_indicationFlags_tree;
124   unsigned tvb_len;
126   /*
127    * 8.22 User Location Info (ULI)
128    * 3GPP TS 29.274
129    */
131   tvb_len = tvb_reported_length(tvb);
132   eps_indicationFlags_tree = proto_tree_add_subtree(tree, tvb, 0, tvb_len, ett_lix2_eps_indicationflags, NULL, "indicationFlags");
134   dissect_gtpv2_ind(tvb, actx->pinfo, eps_indicationFlags_tree, NULL, tvb_len, 0, 0, NULL);
136   offset = tvb_len;
138 #.TYPE_ATTR
139 IPv4Address TYPE=FT_IPv4
140 IPv6Address TYPE=FT_IPv6
141 Timestamp  TYPE = FT_ABSOLUTE_TIME  DISPLAY = ABSOLUTE_TIME_UTC
143 #.FIELD_RENAME
145 #.END