summaryrefslogtreecommitdiff
path: root/print-tcp.c
diff options
context:
space:
mode:
authorguy <guy>2000-09-30 03:35:55 +0000
committerguy <guy>2000-09-30 03:35:55 +0000
commit674302314e631cf5d461ced8d99a3054567e4f2f (patch)
treefee476c304213ffed41aafa1c3778d09221bb2f4 /print-tcp.c
parent7fb68b0c2d6ea8608754e00081bb112454b24b0f (diff)
downloadtcpdump-674302314e631cf5d461ced8d99a3054567e4f2f.tar.gz
BXXP support, from Richard Sharpe <sharpe@ns.aus.com>.
Diffstat (limited to 'print-tcp.c')
-rw-r--r--print-tcp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/print-tcp.c b/print-tcp.c
index 441c44d8..e70ffa35 100644
--- a/print-tcp.c
+++ b/print-tcp.c
@@ -21,7 +21,7 @@
#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /tcpdump/master/tcpdump/print-tcp.c,v 1.75 2000-09-29 04:58:51 guy Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/tcpdump/print-tcp.c,v 1.76 2000-09-30 03:35:56 guy Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
@@ -130,6 +130,7 @@ static struct tcp_seq_hash tcp_seq_hash[TSEQ_HASHSIZE];
#define BGP_PORT 179
#endif
#define NETBIOS_SSN_PORT 139
+#define BXXP_PORT 10288
#ifndef NFS_PORT
#define NFS_PORT 2049
#endif
@@ -651,6 +652,8 @@ tcp_print(register const u_char *bp, register u_int length,
bgp_print(bp, length);
else if (sport == NETBIOS_SSN_PORT || dport == NETBIOS_SSN_PORT)
nbt_tcp_print(bp, length);
+ else if (sport == BXXP_PORT || dport == BXXP_PORT)
+ bxxp_print(bp, length);
}
return;
bad: