diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-01-10 10:36:02 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-01-10 10:36:02 +0000 |
commit | 104385a5c087178d7cd046cf41554ce3cb8593bd (patch) | |
tree | cdfc5d7cc2d8e1e3510e07f479eca9b14c9f8528 /packet-nbipx.c | |
parent | b5477dc71c1f6883c13a179870793a5a60216a07 (diff) | |
download | wireshark-104385a5c087178d7cd046cf41554ce3cb8593bd.tar.gz wireshark-104385a5c087178d7cd046cf41554ce3cb8593bd.tar.bz2 wireshark-104385a5c087178d7cd046cf41554ce3cb8593bd.zip |
Put in some XXX comments.
svn path=/trunk/; revision=2860
Diffstat (limited to 'packet-nbipx.c')
-rw-r--r-- | packet-nbipx.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/packet-nbipx.c b/packet-nbipx.c index bf261c55ae..a99d153231 100644 --- a/packet-nbipx.c +++ b/packet-nbipx.c @@ -2,7 +2,7 @@ * Routines for NetBIOS over IPX packet disassembly * Gilbert Ramirez <gram@xiexie.org> * - * $Id: packet-nbipx.c,v 1.34 2001/01/09 06:31:38 guy Exp $ + * $Id: packet-nbipx.c,v 1.35 2001/01/10 10:36:02 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -319,11 +319,18 @@ dissect_nwlink_dg(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) const guint8 *next_pd; int next_offset; + /* + * XXX - we don't use "node_name" or "node_name_type". + */ name_type_flag = tvb_get_guint8(tvb, offset+32); packet_type = tvb_get_guint8(tvb, offset+33); name_type = get_netbios_name(tvb, offset+36, name); node_name_type = get_netbios_name(tvb, offset+52, node_name); + /* + * XXX - if this is labeled as "NWLink", rather than "NBIPX", + * should it be a separate protocol? + */ if (check_col(pinfo->fd, COL_PROTOCOL)) col_set_str(pinfo->fd, COL_PROTOCOL, "NWLink"); |