blob: 01eba83ee7858433c43e14e14a0e3ccf037b6918 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* resolver.h:
*
*/
#ifndef __RESOLVER_H_ /* include guard */
#define __RESOLVER_H_
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in_systm.h>
#include <netinet/in.h>
void resolver_initialise(void);
void resolve(int af, struct in6_addr* addr, char* result, int buflen);
#endif /* __RESOLVER_H_ */
|