diff options
Diffstat (limited to 'print-tcp.c')
-rw-r--r-- | print-tcp.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/print-tcp.c b/print-tcp.c index 88b4615..3b0a1354 100644 --- a/print-tcp.c +++ b/print-tcp.c @@ -639,6 +639,15 @@ tcp_print(register const u_char *bp, register u_int length, return; } + if (packettype) { + switch (packettype) { + case PT_ZMTP1: + zmtp1_print(bp, length); + break; + } + return; + } + if (sport == TELNET_PORT || dport == TELNET_PORT) { if (!qflag && vflag) telnet_print(bp, length); |