mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 09:20:52 +08:00
18 lines
278 B
C
18 lines
278 B
C
#ifndef __DNS_LOOKUP_INCLUDE_H__
|
|
#define __DNS_LOOKUP_INCLUDE_H__
|
|
|
|
#include "dns.h"
|
|
#include "service_struct.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void dns_lookup(CLIENT_ENTRY *entry, const char *domain, int port);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|