2 * Declarations of public routines for NetBIOS protocol packet disassembly
3 * Jeff Foster <foste@woodward.com>
4 * Copyright 1999 Jeffrey C. Foster
6 * derived from the packet-nbns.c
10 * Wireshark - Network traffic analyzer
11 * By Gerald Combs <gerald@wireshark.org>
12 * Copyright 1998 Gerald Combs
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
29 #ifndef __PACKET_NETBIOS_H__
30 #define __PACKET_NETBIOS_H__
32 /* Length of NetBIOS names */
33 #define NETBIOS_NAME_LEN 16
35 void capture_netbios(packet_counts
*);
37 extern int process_netbios_name(const guchar
*name_ptr
, char *name_ret
, int name_ret_len
);
38 extern int get_netbios_name(tvbuff_t
*tvb
, int offset
,
39 char *name_ret
, int name_ret_len
);
40 extern const char *netbios_name_type_descr(int name_type
);
41 extern void netbios_add_name( const char* label
, tvbuff_t
*tvb
, int offset
,
43 extern void dissect_netbios_payload(tvbuff_t
*tvb
, packet_info
*pinfo
,