aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-03-20 18:59:39 +0000
committerGuy Harris <guy@alum.mit.edu>2005-03-20 18:59:39 +0000
commitfa6f1905398d4712ec80dd0882486de2e69a6627 (patch)
tree67a50169a03b62c9e42f6be17341eea2eaf7dc37 /epan
parent9b25f7ea1e6ebee4bb4cd7a66da76f15c4ae92ea (diff)
Put the ports and addresses into "struct _sctp_info", as the dissector
fills them in. svn path=/trunk/; revision=13827
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-sctp.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/epan/dissectors/packet-sctp.h b/epan/dissectors/packet-sctp.h
index 484c8d11c2..454387de0f 100644
--- a/epan/dissectors/packet-sctp.h
+++ b/epan/dissectors/packet-sctp.h
@@ -1,6 +1,6 @@
/* packet-sctp.h
*
- * Defintion of SCTP specific structures used b tap listeners.
+ * Defintion of SCTP specific structures used by tap listeners.
*
* $Id$
* Copyright 2004 Michael Tuexen <tuexen [AT] fh-muenster.de>
@@ -36,6 +36,11 @@ struct _sctp_info {
gboolean crc32c_calculated;
gboolean crc32c_correct;
gboolean checksum_zero;
+ /* FIXME: do we need the ports and addresses to be here? */
+ guint32 sport;
+ guint32 dport;
+ address ip_src;
+ address ip_dst;
guint32 verification_tag;
guint32 number_of_tvbs;
tvbuff_t *tvb[MAXIMUM_NUMBER_OF_TVBS];