Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
packet-s1ap-template.h
1 /* packet-s1ap.h
2  * Routines for E-UTRAN S1 Application Protocol (S1AP) packet dissection
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10 
11 #ifndef PACKET_S1AP_H
12 #define PACKET_S1AP_H
13 
14 typedef struct _s1ap_ctx_t {
15  guint32 message_type;
16  guint32 ProcedureCode;
17  guint32 ProtocolIE_ID;
18  guint32 ProtocolExtensionID;
19 } s1ap_ctx_t;
20 
21 extern const value_string s1ap_warningType_vals[];
22 extern const value_string s1ap_serialNumber_gs_vals[];
23 
24 void dissect_s1ap_warningMessageContents(tvbuff_t *warning_msg_tvb, proto_tree *tree, packet_info *pinfo, guint8 dcs, int hf_nb_pages, int hf_decoded_page);
25 
26 #include "packet-s1ap-exp.h"
27 
28 #endif /* PACKET_S1AP_H */
29 
30 /*
31  * Editor modelines
32  *
33  * Local Variables:
34  * c-basic-offset: 2
35  * tab-width: 8
36  * indent-tabs-mode: nil
37  * End:
38  *
39  * ex: set shiftwidth=2 tabstop=8 expandtab:
40  * :indentSize=2:tabSize=8:noTabs=true:
41  */
Definition: packet_info.h:44
Definition: packet-s1ap-template.h:14
Definition: tvbuff-int.h:35
Definition: value_string.h:24
Definition: proto.h:759