From Ronnie Sahlberg:
[obnox/wireshark/wip.git] / packet-netbios.h
1 /* packet-netbios.h
2  * Declarations of public routines for NetBIOS protocol packet disassembly
3  * Jeff Foster <foste@woodward.com>            
4  * Copyright 1999 Jeffrey C. Foster
5  * 
6  * derived from the packet-nbns.c
7  *
8  * $Id: packet-netbios.h,v 1.12 2001/11/20 21:59:13 guy Exp $
9  *
10  * Ethereal - Network traffic analyzer
11  * By Gerald Combs <gerald@ethereal.com>
12  * Copyright 1998 Gerald Combs
13  * 
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.
18  * 
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.
23  * 
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
27  */
28
29 #ifndef __PACKET_NETBIOS_H__
30 #define __PACKET_NETBIOS_H__
31
32 /* Length of NetBIOS names */
33 #define NETBIOS_NAME_LEN        16
34
35 void capture_netbios(const u_char *, int, int, packet_counts *);
36
37 extern int process_netbios_name(const u_char *name_ptr, char *name_ret);
38 extern int get_netbios_name(tvbuff_t *tvb, int offset,
39     char *name_ret);
40 extern char *netbios_name_type_descr(int name_type);
41 extern void netbios_add_name( char* label, tvbuff_t *tvb, int offset,
42     proto_tree *tree);
43 extern void dissect_netbios_payload(tvbuff_t *tvb, packet_info *pinfo,
44     proto_tree *tree);
45
46 #endif