2 * copyright (c) 2001-2006 Emil Mikulic.
4 * localip.h: determine local IP of our capture interface
6 * You may use, modify and redistribute this file under the terms of the
7 * GNU General Public License version 2. (see COPYING.GPL)
10 #include <netinet/in.h> /* for in_addr, in6_addr */
12 extern struct in_addr localip
;
13 extern struct in6_addr localip6
;
15 void localip_init(const char *interface
);
16 void localip_update(void);
18 /* vim:set ts=3 sw=3 tw=78 expandtab: */