summaryrefslogtreecommitdiff
path: root/ui/gtk/sctp_chunk_stat.c
diff options
context:
space:
mode:
authorruengeler <ruengeler@wireshark.org>2015-10-05 15:55:40 +0200
committerMichael Tüxen <tuexen@wireshark.org>2015-10-05 17:38:08 +0000
commitd52322efb3ab782871312950876803334ec018b9 (patch)
treea9049aa52e49c31f8d346ae2bcfe842694c2f776 /ui/gtk/sctp_chunk_stat.c
parenta24eeb931ea90b1fe63019c4e07065089e236351 (diff)
downloadwireshark-d52322efb3ab782871312950876803334ec018b9.tar.gz
SCTP I-DATA support
Change-Id: I459942b9e3287d500dda517568252d4cb56d3216 Reviewed-on: https://code.wireshark.org/review/10802 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Michael Tüxen <tuexen@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Tüxen <tuexen@wireshark.org>
Diffstat (limited to 'ui/gtk/sctp_chunk_stat.c')
-rw-r--r--ui/gtk/sctp_chunk_stat.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/ui/gtk/sctp_chunk_stat.c b/ui/gtk/sctp_chunk_stat.c
index e4266e0df2..8b85c90ed1 100644
--- a/ui/gtk/sctp_chunk_stat.c
+++ b/ui/gtk/sctp_chunk_stat.c
@@ -207,11 +207,12 @@ sctpstat_draw(void *phs)
12, tmp->chunk_count[SCTP_ABORT_CHUNK_ID],
13, tmp->chunk_count[SCTP_ERROR_CHUNK_ID],
14, tmp->chunk_count[SCTP_NR_SACK_CHUNK_ID],
- 15, tmp->chunk_count[SCTP_ASCONF_ACK_CHUNK_ID],
- 16, tmp->chunk_count[SCTP_PKTDROP_CHUNK_ID],
- 17, tmp->chunk_count[SCTP_FORWARD_TSN_CHUNK_ID],
- 18, tmp->chunk_count[SCTP_ASCONF_CHUNK_ID],
- 19, tmp->chunk_count[OTHER_CHUNKS_INDEX],
+ 15, tmp->chunk_count[SCTP_I_DATA_CHUNK_ID],
+ 16, tmp->chunk_count[SCTP_ASCONF_ACK_CHUNK_ID],
+ 17, tmp->chunk_count[SCTP_PKTDROP_CHUNK_ID],
+ 18, tmp->chunk_count[SCTP_FORWARD_TSN_CHUNK_ID],
+ 19, tmp->chunk_count[SCTP_ASCONF_CHUNK_ID],
+ 20, tmp->chunk_count[OTHER_CHUNKS_INDEX],
-1
);
wmem_free(NULL, src_addr);
@@ -250,6 +251,7 @@ static const stat_column titles[]={
{G_TYPE_UINT, TAP_ALIGN_RIGHT, "ABORT" },
{G_TYPE_UINT, TAP_ALIGN_RIGHT, "ERROR" },
{G_TYPE_UINT, TAP_ALIGN_RIGHT, "NR-SACK" },
+ {G_TYPE_UINT, TAP_ALIGN_RIGHT, "I-DATA" },
{G_TYPE_UINT, TAP_ALIGN_RIGHT, "ASCONF-ACK" },
{G_TYPE_UINT, TAP_ALIGN_RIGHT, "PKTDROP" },
{G_TYPE_UINT, TAP_ALIGN_RIGHT, "FORWARD-TSN" },