mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 01:10:52 +08:00
9697f95b8f
This reverts commit 15d999759e
.
18 lines
275 B
C
18 lines
275 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
|