aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h225.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2015-08-08 19:11:20 +0200
committerBill Meier <wmeier@newsguy.com>2015-08-11 16:33:38 +0000
commitde70d2a18a6d740df47ce764a81e195c158b2e51 (patch)
treec3509682fca829248b7fef74865a19c12b168243 /epan/dissectors/packet-h225.h
parentd6c6b0899d46c2592388c8830fc7a6e0e1e2ae8a (diff)
H225: fix indent (use 2 spaces) and add modelines info
Change-Id: Ibe4cf8d004c6c94f745e5c620100af9483fa6a31 Reviewed-on: https://code.wireshark.org/review/9934 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan/dissectors/packet-h225.h')
-rw-r--r--epan/dissectors/packet-h225.h83
1 files changed, 47 insertions, 36 deletions
diff --git a/epan/dissectors/packet-h225.h b/epan/dissectors/packet-h225.h
index ad5e9bf3a2..0f31b15083 100644
--- a/epan/dissectors/packet-h225.h
+++ b/epan/dissectors/packet-h225.h
@@ -33,47 +33,47 @@
#define PACKET_H225_H
typedef enum _h225_msg_type {
- H225_RAS,
- H225_CS,
- H225_OTHERS
+ H225_RAS,
+ H225_CS,
+ H225_OTHERS
} h225_msg_type;
typedef enum _h225_cs_type {
- H225_SETUP,
- H225_CALL_PROCEDING,
- H225_CONNECT,
- H225_ALERTING,
- H225_INFORMATION,
- H225_RELEASE_COMPLET,
- H225_FACILITY,
- H225_PROGRESS,
- H225_EMPTY,
- H225_STATUS,
- H225_STATUS_INQUIRY,
- H225_SETUP_ACK,
- H225_NOTIFY,
- H225_OTHER
+ H225_SETUP,
+ H225_CALL_PROCEDING,
+ H225_CONNECT,
+ H225_ALERTING,
+ H225_INFORMATION,
+ H225_RELEASE_COMPLET,
+ H225_FACILITY,
+ H225_PROGRESS,
+ H225_EMPTY,
+ H225_STATUS,
+ H225_STATUS_INQUIRY,
+ H225_SETUP_ACK,
+ H225_NOTIFY,
+ H225_OTHER
} h225_cs_type;
typedef struct _h225_packet_info {
- h225_msg_type msg_type; /* ras or cs message */
- h225_cs_type cs_type; /* cs message type */
- gint msg_tag; /* message tag*/
- gint reason; /* reason tag, if available */
- guint requestSeqNum; /* request sequence number of ras-message, if available */
- e_guid_t guid; /* globally unique call id */
- gboolean is_duplicate; /* true, if this is a repeated message */
- gboolean request_available; /* true, if response matches to a request */
- nstime_t delta_time; /* this is the RAS response time delay */
- /* added for h225 conversations analysis */
- gboolean is_faststart; /* true, if faststart field is included */
- gboolean is_h245;
- gboolean is_h245Tunneling;
- guint32 h245_address;
- guint16 h245_port;
- gchar dialedDigits[129]; /* Dialed Digits in the LRQ and LCF used for voip analysis */
- gboolean is_destinationInfo;
- gchar frame_label[50]; /* the Frame label used by graph_analysis, what is a abreviation of cinfo */
+ h225_msg_type msg_type; /* ras or cs message */
+ h225_cs_type cs_type; /* cs message type */
+ gint msg_tag; /* message tag*/
+ gint reason; /* reason tag, if available */
+ guint requestSeqNum; /* request sequence number of ras-message, if available */
+ e_guid_t guid; /* globally unique call id */
+ gboolean is_duplicate; /* true, if this is a repeated message */
+ gboolean request_available; /* true, if response matches to a request */
+ nstime_t delta_time; /* this is the RAS response time delay */
+ /* added for h225 conversations analysis */
+ gboolean is_faststart; /* true, if faststart field is included */
+ gboolean is_h245;
+ gboolean is_h245Tunneling;
+ guint32 h245_address;
+ guint16 h245_port;
+ gchar dialedDigits[129]; /* Dialed Digits in the LRQ and LCF used for voip analysis */
+ gboolean is_destinationInfo;
+ gchar frame_label[50]; /* the Frame label used by graph_analysis, what is a abreviation of cinfo */
} h225_packet_info;
/*
@@ -153,4 +153,15 @@ int dissect_h225_ExtendedAliasAddress_PDU(tvbuff_t *tvb _U_, packet_info *pinfo
#endif /* PACKET_H225_H */
-
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local Variables:
+ * c-basic-offset: 2
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=2 tabstop=8 expandtab:
+ * :indentSize=2:tabSize=8:noTabs=true:
+ */