* Fixes for problems with the preference initialization code (Guy)
[obnox/wireshark/wip.git] / resolv.h
1 /* resolv.h
2  * Definitions for network object lookup
3  *
4  * $Id: resolv.h,v 1.3 1998/09/25 23:24:07 gerald Exp $
5  *
6  * Laurent Deniel <deniel@worldnet.fr>
7  *
8  * Ethereal - Network traffic analyzer
9  * By Gerald Combs <gerald@zing.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * 
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  * 
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  * 
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
26  */
27
28 #ifndef __RESOLV_H__
29 #define __RESOLV_H__
30
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #define EPATH_ETHERS            "/etc/ethers"
36 #define EPATH_MANUF             DATAFILE_DIR "/manuf"
37 #define EPATH_PERSONAL_ETHERS   ".ethereal/ethers" /* with "$HOME/" prefix */
38
39 /* global variables */
40
41 extern gchar *g_ethers_path;
42 extern gchar *g_manuf_path;
43 extern gchar *g_pethers_path;
44 extern int    g_resolving_actif;
45
46 /* Functions in resolv.c */
47
48 /* get_tcp_port returns the UDP port name or "%d" if not found */
49 extern u_char *get_udp_port(u_int port);
50
51 /* get_tcp_port returns the TCP port name or "%d" if not found */
52 extern u_char *get_tcp_port(u_int port);
53
54 /* get_hostname returns the host name or "%d.%d.%d.%d" if not found */
55 extern u_char *get_hostname(u_int addr);
56
57 /* get_ether_name returns the logical name if found in ethers files else
58    "<vendor>_%02x:%02x:%02x" if the vendor code is known else
59    "%02x:%02x:%02x:%02x:%02x:%02x" */
60 extern u_char *get_ether_name(u_char *addr);
61
62 /* get_manuf_name returns the vendor name or "%02x:%02x:%02x" if not known */
63 extern u_char *get_manuf_name(u_char *addr);
64
65 /* returns the ethernet address corresponding to name or NULL if not known */
66 extern u_char *get_ether_addr(u_char *name);
67
68 /* adds a hostname/IP in the hash table */
69 extern void add_host_name(u_int addr, u_char *name);
70
71 #endif /* __RESOLV_H__ */