aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-flexnet.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-flexnet.c')
-rw-r--r--epan/dissectors/packet-flexnet.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/epan/dissectors/packet-flexnet.c b/epan/dissectors/packet-flexnet.c
index c5cdeb5ded..5e8d1ccc93 100644
--- a/epan/dissectors/packet-flexnet.c
+++ b/epan/dissectors/packet-flexnet.c
@@ -52,8 +52,6 @@
#include <epan/xdlc.h>
#include <packet-ip.h>
-#include "packet-flexnet.h"
-
#define FLEXNET_ADRLEN 15
#define FLEXNET_CTLLEN 15
#define FLEXNET_HDRLEN (FLEXNET_ADRLEN + FLEXNET_ADRLEN + FLEXNET_CTLLEN)
@@ -171,17 +169,3 @@ proto_reg_handoff_flexnet(void)
inited = TRUE;
}
}
-
-void
-capture_flexnet( const guchar *pd, int offset, int len, packet_counts *ld)
-{
- const guchar *l_pd;
-
- if ( ! BYTES_ARE_IN_FRAME( offset, len, FLEXNET_HDRLEN ) )
- {
- ld->other++;
- return;
- }
- l_pd = pd;
-
-}