aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tcp.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-12-11 06:10:45 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-12-11 06:10:45 +0000
commit07c5bb348069338654711da1596057e7ae0121f2 (patch)
tree5a8b0f1ff24c2f350c0a4d348b3c93ee9b8c10d5 /epan/dissectors/packet-tcp.c
parenta155364c778ada7dfbe241cc2b4c0488093b0834 (diff)
- Forward declaration of register functions.
svn path=/trunk/; revision=53930
Diffstat (limited to 'epan/dissectors/packet-tcp.c')
-rw-r--r--epan/dissectors/packet-tcp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/epan/dissectors/packet-tcp.c b/epan/dissectors/packet-tcp.c
index 5c0873f837..fcca74f9f0 100644
--- a/epan/dissectors/packet-tcp.c
+++ b/epan/dissectors/packet-tcp.c
@@ -48,6 +48,9 @@
#include "packet-ip.h"
#include "packet-icmp.h"
+void proto_register_tcp(void);
+void proto_reg_handoff_tcp(void);
+
static int tcp_tap = -1;
/* Place TCP summary in proto tree */
@@ -517,7 +520,7 @@ process_tcp_payload(tvbuff_t *tvb, volatile int offset, packet_info *pinfo,
struct tcp_analysis *tcpd, struct tcpinfo *tcpinfo);
-struct tcp_analysis *
+static struct tcp_analysis *
init_tcp_conversation_data(packet_info *pinfo)
{
struct tcp_analysis *tcpd;