123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef _MON_LIB_NET_H
- #define _MON_LIB_NET_H
- #include <sys/types.h>
- #define MONMUX_PORT 2100
- extern char lookup_hostname[];
- extern char lookup_address[];
- extern u_int32_t lookup_ip;
- __BEGIN_DECLS
- int lookup(char *);
- __END_DECLS
- #endif
|