Kerberos: add kerberos_inject_longterm_key() helper function
[wireshark-sm.git] / epan / dissectors / asn1 / lppe / lppe.cnf
blob9e5ec169a032eae91035ee58e2eb7728c105e5fe
1 # lppe.cnf
2 # llpe conformation file
3 # Copyright 2012-2018 Pascal Quantin
5 #.OPT
6 PER
7 UNALIGNED
8 #.END
10 #.IMPORT ../lpp/lpp-exp.cnf
12 #.PDU
13 OMA-LPPe-MessageExtension
14 #.END
16 #.OMIT_ASSIGNMENT
18 #.FIELD_RENAME
19 OMA-LPPe-MapDataReferenceElement/mapDataUrl mapDataUrl_choice
20 OMA-LPPe-WLAN-LocationDataLCI/latitude oma-LPPe-WLAN-LocationDataLCI_latitude
21 OMA-LPPe-WLAN-LocationDataLCI/longitude oma-LPPe-WLAN-LocationDataLCI_longitude
22 OMA-LPPe-WLAN-LocationDataLCI/altitude oma-LPPe-WLAN-LocationDataLCI_altitude
24 #.FIELD_ATTR
25 OMA-LPPe-MapDataReferenceElement/mapDataUrl     ABBREV=mapDataUrl_choice
26 OMA-LPPe-WLAN-LocationDataLCI/latitude          ABBREV=oMA-LPPe-WLAN-LocationDataLCI.latitude
27 OMA-LPPe-WLAN-LocationDataLCI/longitude         ABBREV=oMA-LPPe-WLAN-LocationDataLCI.longitude
28 OMA-LPPe-WLAN-LocationDataLCI/altitude          ABBREV=oMA-LPPe-WLAN-LocationDataLCI.altitude
30 #.FN_HDR OMA-LPPe-MessageExtension
32   proto_tree_add_item(tree, proto_lppe, tvb, 0, -1, ENC_NA);
34   col_append_sep_str(actx->pinfo->cinfo, COL_PROTOCOL, "/", "LPPe");
36 #.FN_BODY OMA-LPPe-Uri
37   offset = dissect_per_restricted_character_string(tvb, offset, actx, tree, hf_index,
38                                                       NO_BOUND, NO_BOUND, false, "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789:/?#[]@!$&'()*+,;=-._~%%", 85,
39                                                       NULL);
41 #.FN_BODY OMA-LPPe-CivicLocation-pidf-lo/civicLocation VAL_PTR = &xml_tvb
42   tvbuff_t *xml_tvb = NULL;
43 %(DEFAULT_BODY)s
44   if (xml_tvb && xml_handle) {
45     proto_tree *xml_tree = proto_item_add_subtree(actx->created_item, ett_lppe_civicLocation);
46     call_dissector(xml_handle, xml_tvb, actx->pinfo, xml_tree);
47   }
48 #.END