diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1998-11-20 05:58:42 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1998-11-20 05:58:42 +0000 |
commit | d570947a14d0c0a5bf9cd620674812ced2686210 (patch) | |
tree | 0e7bff517f2f08a77f486ff6f9b9ad3afcfcba90 /packet-udp.c | |
parent | 5174440b3322c8107ce1b0fb93bfad0adb7ef48e (diff) | |
download | wireshark-d570947a14d0c0a5bf9cd620674812ced2686210.tar.gz wireshark-d570947a14d0c0a5bf9cd620674812ced2686210.tar.bz2 wireshark-d570947a14d0c0a5bf9cd620674812ced2686210.zip |
Added NetBIOS Datagram (over UDP) support.
svn path=/trunk/; revision=113
Diffstat (limited to 'packet-udp.c')
-rw-r--r-- | packet-udp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packet-udp.c b/packet-udp.c index 81841e48bd..488e6fd863 100644 --- a/packet-udp.c +++ b/packet-udp.c @@ -1,7 +1,7 @@ /* packet-udp.c * Routines for UDP packet disassembly * - * $Id: packet-udp.c,v 1.8 1998/11/17 05:04:04 gerald Exp $ + * $Id: packet-udp.c,v 1.9 1998/11/20 05:58:41 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -100,6 +100,9 @@ dissect_udp(const u_char *pd, int offset, frame_data *fd, GtkTree *tree) { case UDP_PORT_NBNS: dissect_nbns(pd, offset, fd, tree); break; + case UDP_PORT_NBDGM: + dissect_nbdgm(pd, offset, fd, tree); + break; case UDP_PORT_IPX: /* RFC 1234 */ dissect_ipx(pd, offset, fd, tree); break; |