acl/lib_acl/include/net/acl_res.h

84 lines
2.4 KiB
C
Raw Normal View History

#ifndef ACL_RES_INCLUDE_H
2014-11-19 00:25:21 +08:00
#define ACL_RES_INCLUDE_H
#ifdef __cplusplus
extern "C" {
#endif
2017-06-02 14:47:24 +08:00
#include "../stdlib/acl_define.h"
2014-11-19 00:25:21 +08:00
#include "acl_netdb.h"
#include <time.h>
/**
* DNS返回结果的存储结构
2014-11-19 00:25:21 +08:00
*/
typedef struct ACL_RES {
char dns_ip[64]; /**< DNS的IP地址 */
unsigned short dns_port; /**< DNS的Port */
unsigned short cur_qid; /**< 内部变量,数据包的标识 */
time_t tm_spent; /**< 查询时间耗费(秒) */
2014-11-19 00:25:21 +08:00
int errnum;
#define ACL_RES_ERR_SEND -100 /**< 写出错 */
#define ACL_RES_ERR_READ -101 /**< 读出错 */
#define ACL_RES_ERR_RTMO -102 /**< 读超时 */
#define ACL_RES_ERR_NULL -103 /**< 空结果 */
#define ACL_RES_ERR_CONN -104 /**< TCP方式时连接失败 */
2014-11-19 00:25:21 +08:00
int transfer; /**< TCP/UDP 传输模式 */
#define ACL_RES_USE_UDP 0 /**< UDP 传输模式 */
#define ACL_RES_USE_TCP 1 /**< TCP 传输模式 */
2014-11-19 00:25:21 +08:00
int conn_timeout; /**< TCP 传输时的连接超时时间, 默认为10秒 */
int rw_timeout; /**< TCP/UDP 传输的IO超时时间, 默认为10秒 */
2014-11-19 00:25:21 +08:00
} ACL_RES;
/**
* DNS查询对象
* @param dns_ip {const char*} DNS的IP地址
* @param dns_port {unsigned short} DNS的Port
* @return {ACL_RES*}
2014-11-19 00:25:21 +08:00
*/
ACL_API ACL_RES *acl_res_new(const char *dns_ip, unsigned short dns_port);
2017-04-13 21:50:55 +08:00
/**
* DNS查询的超时时间
* @param conn_timeout {int} TCP
* @param rw_timeout {int} TCP/UDP IO超时时间
2017-04-13 21:50:55 +08:00
*/
ACL_API void acl_res_set_timeout(int conn_timeout, int rw_timeout);
2014-11-19 00:25:21 +08:00
/**
* DNS查询对象
* @param res {ACL_RES*} DNS查询对象
2014-11-19 00:25:21 +08:00
*/
ACL_API void acl_res_free(ACL_RES *res);
/**
* IP地址
* @param res {ACL_RES*} DNS查询对象
* @param domain {const char*}
* @return {ACL_DNS_DB*}
2014-11-19 00:25:21 +08:00
*/
ACL_API ACL_DNS_DB *acl_res_lookup(ACL_RES *res, const char *domain);
/**
*
* @param errnum {int}
* @return {const char*}
2014-11-19 00:25:21 +08:00
*/
ACL_API const char *acl_res_strerror(int errnum);
/**
*
* @param res {ACL_RES*} DNS查询对象
* @return {const char*}
2014-11-19 00:25:21 +08:00
*/
ACL_API const char *acl_res_errmsg(const ACL_RES *res);
#ifdef __cplusplus
}
#endif
#endif