Use "SMB", not "Smb"; it stands for "Server Message Block".
[obnox/wireshark/wip.git] / packet-dns.h
1 /* packet-dns.h
2  * Definitions for packet disassembly structures and routines used both by
3  * DNS and NBNS.
4  *
5  * $Id: packet-dns.h,v 1.4 1999/10/07 07:44:28 guy Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@zing.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * 
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  * 
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27
28 #ifndef __PACKET_DNS_H__
29 #define __PACKET_DNS_H__
30
31 char *dns_class_name(int class);
32
33 int get_dns_name(const u_char *pd, int offset, int dns_data_offset,
34     char *name, int maxname);
35
36 #define MAXDNAME        1025            /* maximum domain name length */
37
38 proto_tree *
39 add_rr_to_tree(proto_item *trr, int rr_type, int offset, const char *name,
40   int namelen, const char *type_name, const char *class_name, u_int ttl,
41   u_short data_len);
42
43 #endif /* packet-dns.h */