Deleted Added
sdiff udiff text old ( 18471 ) new ( 20287 )
full compact
1/*
2 * lookup.c - Lookup IP address, HW address, netmask
3 *
4 * $Id$
5 */
6
7#include <sys/types.h>
8#include <sys/socket.h>
9
10#ifdef _AIX32
11#include <sys/time.h> /* for struct timeval in net/if.h */
12#endif
13#include <net/if.h>
14#include <netinet/in.h>
15
16#ifdef ETC_ETHERS
17#include <netinet/if_ether.h>
18extern int ether_hostton();
19#endif
20

--- 111 unchanged lines hidden ---