mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 23:06:12 -05:00
8 lines
243 B
C
8 lines
243 B
C
/* lookup.h */
|
|
/* $FreeBSD$ */
|
|
|
|
#include "bptypes.h" /* for int32, u_int32 */
|
|
|
|
extern u_char *lookup_hwa(char *hostname, int htype);
|
|
extern int lookup_ipa(char *hostname, u_int32 *addr);
|
|
extern int lookup_netmask(u_int32 addr, u_int32 *mask);
|