diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-09-03 01:43:09 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-09-03 01:43:09 +0000 |
commit | 27c0d2d022ebb3dbab6cacf96fbdb744e7b6f58e (patch) | |
tree | 0b67dc5cf7058ca69eef36f7373556d6a1b5449c /packet-netbios.h | |
parent | dec805ba0dc898461acaf69544b97d4aca907aac (diff) | |
download | wireshark-27c0d2d022ebb3dbab6cacf96fbdb744e7b6f58e.tar.gz wireshark-27c0d2d022ebb3dbab6cacf96fbdb744e7b6f58e.tar.bz2 wireshark-27c0d2d022ebb3dbab6cacf96fbdb744e7b6f58e.zip |
Use "process_netbios_name()", rather than "canonicalize_netbios_name()",
to turn NetBIOS names into a nice printable form.
Put the description of NetBIOS name types into places where it fits;
have "packet-netbios.c" export a routine to interpret them.
svn path=/trunk/; revision=630
Diffstat (limited to 'packet-netbios.h')
-rw-r--r-- | packet-netbios.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-netbios.h b/packet-netbios.h index 1cca017d7e..02f086c50d 100644 --- a/packet-netbios.h +++ b/packet-netbios.h @@ -5,7 +5,7 @@ * * derived from the packet-nbns.c * - * $Id: packet-netbios.h,v 1.2 1999/09/03 00:24:40 guy Exp $ + * $Id: packet-netbios.h,v 1.3 1999/09/03 01:43:09 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -33,6 +33,7 @@ extern int process_netbios_name(const u_char *name_ptr, char *name_ret); extern guint get_netbios_name(const u_char *data_ptr, int offset, char *name_ret); +extern char *netbios_name_type_descr(int name_type); extern void netbios_add_name( char* label, const u_char *pd, int offset, int nb_offset, proto_tree *tree); |