Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
packet-ansi_tcap-template.h
1 /* packet-ansi_tcap.h
2  *
3  * Copyright 2007 Anders Broman <anders.broman@ericsson.com>
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 
13 #ifndef PACKET_ANSI_TCAP_H
14 #define PACKET_ANSI_TCAP_H
15 
16 #define ANSI_TCAP_CTX_SIGNATURE 0x41544341 /* "ATCA" */
17 
19  guint32 signature;
20  gboolean oid_is_present; /* Is the Application Context Version present */
21  const void * objectApplicationId_oid;
22  guint32 session_id;
23  void * context;
24  gchar *TransactionID_str;
25  struct { /* "dynamic" data */
26  gint pdu;
27  /*
28  1 : invoke,
29  2 : returnResult,
30  3 : returnError,
31  4 : reject
32  */
33  gint OperationCode;
34  /*
35  0 : national,
36  1 : private
37  */
38  gint32 OperationCode_national;
39  gint32 OperationCode_private;
40  proto_item *OperationCode_item;
41  } d;
42 
43 };
44 
45 /*extern void add_ansi_tcap_subdissector(guint32 ssn, dissector_handle_t dissector);*/
46 
47 
48 /*extern void delete_ansi_tcap_subdissector(guint32 ssn, dissector_handle_t dissector);*/
49 
50 
51 #endif /* PACKET_ANSI_TCAP_H */
Definition: packet-ansi_tcap-template.h:18
Definition: proto.h:759