aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-skinny.h
diff options
context:
space:
mode:
authorDiederik de Groot <dkgroot@talon.nl>2017-02-11 13:41:58 +0100
committerMichael Mann <mmann78@netscape.net>2017-02-12 16:14:28 +0000
commitfb3a7caa1746e4e33b21a90cce5921ded621a0b9 (patch)
tree2ea95664524bce4ee9c4acc00879ece43d67e0be /epan/dissectors/packet-skinny.h
parent6550b104226ab9625345dcc395bd54ff3055cd66 (diff)
[skinny] Fix ConnectionStatRes and DialedNumber Messages protocol version >20
- ConnectionStatisticsResponse Comes in three different forms - DialedNumber Message has variable length Minor: - Pass ipv4or6 connection address back to calling function (using this later on in seperate commit) - Correct spelling mistakes - Remove duplicates from DeviceType[] Change-Id: Ib1619b163c12b6a4c6c86972186d828be3fd94e2 Reviewed-on: https://code.wireshark.org/review/20056 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-skinny.h')
-rw-r--r--epan/dissectors/packet-skinny.h36
1 files changed, 24 insertions, 12 deletions
diff --git a/epan/dissectors/packet-skinny.h b/epan/dissectors/packet-skinny.h
index 89c6420c95..0de7b14fb8 100644
--- a/epan/dissectors/packet-skinny.h
+++ b/epan/dissectors/packet-skinny.h
@@ -40,17 +40,29 @@
/* Container for tapping relevant data */
typedef struct _skinny_info_t
{
- guint32 messId;
- guint32 maxProtocolVersion;
- guint32 lineId;
- guint32 callId;
- guint32 passThruId;
- const gchar *messageName;
- guint32 callState;
- gchar *callingParty;
- gchar *calledParty;
- gboolean hasCallInfo;
- guint openreceiveStatus;
- guint startmediatransmisionStatus;
+ guint32 messId;
+ guint32 maxProtocolVersion;
+ guint32 lineId;
+ guint32 callId;
+ guint32 passThruId;
+ const gchar * messageName;
+ guint32 callState;
+ gchar * callingParty;
+ gchar * calledParty;
+ gboolean hasCallInfo;
+ guint32 openreceiveStatus;
+ guint32 startmediatransmisionStatus;
} skinny_info_t;
+/*
+ * 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:
+ */