mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-12 11:55:13 +08:00
144 lines
5.3 KiB
C
144 lines
5.3 KiB
C
#ifndef ACL_CONNECT_INCLUDE_H
|
||
#define ACL_CONNECT_INCLUDE_H
|
||
|
||
#ifdef __cplusplus
|
||
extern "C" {
|
||
#endif
|
||
|
||
#include "../stdlib/acl_define.h"
|
||
|
||
#ifdef ACL_UNIX
|
||
#include <sys/types.h>
|
||
#include <netinet/in.h>
|
||
#include <arpa/inet.h>
|
||
#include <sys/socket.h>
|
||
#endif
|
||
|
||
#define ACL_CONNECT_F_NONE 0 /* Nonthing */
|
||
#define ACL_CONNECT_F_SYS_ERR (1 << 0) /* 需查系统 errno */
|
||
#define ACL_CONNECT_F_CREATE_SOCKET_ERR (1 << 1) /* 创建 socket 出错 */
|
||
#define ACL_CONNECT_F_REUSE_ADDR_ERR (1 << 2) /* 重复使用绑定地址出错 */
|
||
#define ACL_CONNECT_F_BIND_IP_OK (1 << 3) /* 绑定本机 IP 成功 */
|
||
#define ACL_CONNECT_F_BIND_IP_ERR (1 << 4) /* 绑定本机 IP 失败 */
|
||
#define ACL_CONNECT_F_BIND_IFACE_OK (1 << 5) /* 绑定本机网卡成功 */
|
||
#define ACL_CONNECT_F_BIND_IFACE_ERR (1 << 6) /* 绑定本机网卡失败 */
|
||
#define ACL_CONNECT_F_SO_ERROR (1 << 7) /* socket 出错 */
|
||
#define ACL_CONNECT_F_INPROGRESS (1 << 8); /* 正在连接过程中 */
|
||
#define ACL_CONNECT_F_WAIT_ERR (1 << 9) /* 等待连接建连失败 */
|
||
|
||
/* in acl_sane_connect.c */
|
||
/**
|
||
* 远程连接服务器
|
||
* @param sock {ACL_SOCKET} 套接字,在UNIX平台下还可以是域套接字
|
||
* @param sa {const struct sockaddr*} 服务器监听地址
|
||
* @param len {socklen_t} sa 的地址长度
|
||
* @return {int} 0: 连接成功; -1: 连接失败
|
||
*/
|
||
ACL_API int acl_sane_connect(ACL_SOCKET sock, const struct sockaddr * sa,
|
||
socklen_t len);
|
||
|
||
/* in acl_timed_connect.c */
|
||
|
||
/**
|
||
* 带超时时间地远程连接服务器
|
||
* @param fd {ACL_SOCKET} 套接字,在UNIX平台下还可以是域套接字
|
||
* @param sa {const struct sockaddr*} 服务器监听地址
|
||
* @param len {socklen_t} sa 的地址长度
|
||
* @param timeout {int} 连接超时时间(秒级)
|
||
* @return {int} 0: 连接成功; -1: 连接失败
|
||
*/
|
||
ACL_API int acl_timed_connect(ACL_SOCKET fd, const struct sockaddr * sa,
|
||
socklen_t len, int timeout);
|
||
|
||
/**
|
||
* 带超时时间地远程连接服务器
|
||
* @param fd {ACL_SOCKET} 套接字,在UNIX平台下还可以是域套接字
|
||
* @param sa {const struct sockaddr*} 服务器监听地址
|
||
* @param len {socklen_t} sa 的地址长度
|
||
* @param timeout {int} 连接超时时间(毫秒级)
|
||
* @param flags {unsigned*} 非空时用来存放连接失败的错误信息或连接的其它标记位
|
||
* @return {int} 0: 连接成功; -1: 连接失败
|
||
*/
|
||
ACL_API int acl_timed_connect_ms2(ACL_SOCKET fd, const struct sockaddr * sa,
|
||
socklen_t len, int timeout, unsigned *flags);
|
||
ACL_API int acl_timed_connect_ms(ACL_SOCKET fd, const struct sockaddr * sa,
|
||
socklen_t len, int timeout);
|
||
|
||
/* in acl_inet_connect.c */
|
||
|
||
/**
|
||
* 远程连接网络服务器地址
|
||
* @param addr {const char*} 远程服务器的监听地址,如:192.168.0.1|80, 如果需
|
||
* 要绑定本地的地址,则格式为: remote_addr@local_ip,
|
||
* 如: www.sina.com|80@60.28.250.199
|
||
* @param blocking {int} 阻塞模式还是非阻塞模式, ACL_BLOCKING 或 ACL_NON_BLOCKING
|
||
* @param timeout {int} 连接超时时间,如果 blocking 为 ACL_NON_BLOCKING 则该值将被忽略
|
||
* @return {ACL_SOCKET} 如果返回 ACL_SOCKET_INVALID 表示连接失败
|
||
*/
|
||
ACL_API ACL_SOCKET acl_inet_connect(const char *addr, int blocking, int timeout);
|
||
|
||
/**
|
||
* 远程连接网络服务器地址
|
||
* @param addr {const char*} 远程服务器的监听地址,如:192.168.0.1|80,
|
||
* 当本机有多个网卡地址且想通过某个指定网卡连接服务器时的地址格式:
|
||
* remote_ip|remote_port@local_ip,如:211.150.111.12|80@192.168.1.1
|
||
* @param blocking {int} 阻塞模式还是非阻塞模式, ACL_BLOCKING 或 ACL_NON_BLOCKING
|
||
* @param timeout {int} 连接超时时间(秒级),如果 blocking 为 ACL_NON_BLOCKING 则该值将被忽略
|
||
* @param flags {unsigned*} 非空时用来存放连接失败的错误信息或连接的其它标记位
|
||
* @return {ACL_SOCKET} 如果返回 ACL_SOCKET_INVALID 表示连接失败
|
||
*/
|
||
ACL_API ACL_SOCKET acl_inet_connect2(const char *addr, int blocking,
|
||
int timeout, unsigned *flags);
|
||
#define acl_inet_connect_ex acl_inet_connect2
|
||
|
||
/**
|
||
* 远程连接网络服务器地址
|
||
* @param addr {const char*} 远程服务器的监听地址,如:192.168.0.1|80,
|
||
* 当本机有多个网卡地址且想通过某个指定网卡连接服务器时的地址格式:
|
||
* remote_ip|remote_port@local_ip 或 remote_ip|remote_port#local_ipinterface,
|
||
* 如:
|
||
* 211.150.111.12|80@192.168.1.1
|
||
* 211.150.111.12|80#interface
|
||
* @param blocking {int} 阻塞模式还是非阻塞模式, ACL_BLOCKING 或 ACL_NON_BLOCKING
|
||
* @param timeout {int} 连接超时时间(毫秒级),如果 blocking 为 ACL_NON_BLOCKING 则该值将被忽略
|
||
* @param flags {unsigned*} 非空时用来存放连接失败的错误信息或连接的其它标记位
|
||
* @return {ACL_SOCKET} 如果返回 ACL_SOCKET_INVALID 表示连接失败
|
||
*/
|
||
ACL_API ACL_SOCKET acl_inet_timed_connect(const char *addr, int blocking,
|
||
int timeout, unsigned *flags);
|
||
|
||
#ifdef ACL_UNIX
|
||
|
||
/* in acl_unix_connect.c */
|
||
|
||
/**
|
||
* 连接监听域套接字服务器
|
||
* @param addr {const char*} 服务器监听的域套接字全路径, 如: /tmp/test.sock,
|
||
* 针对 Linux 平台,如果首字母为 @ 则内部自动采用抽象 UNIX 域套接口进行连接
|
||
* @param blocking {int} 阻塞模式还是非阻塞模式, ACL_BLOCKING 或 ACL_NON_BLOCKING
|
||
* @param timeout {int} 连接超时时间,如果 blocking 为 ACL_NON_BLOCKING 则该值将被忽略
|
||
* @return {ACL_SOCKET} 如果返回 ACL_SOCKET_INVALID 表示连接失败
|
||
*/
|
||
ACL_API ACL_SOCKET acl_unix_connect(const char *addr, int blocking, int timeout);
|
||
|
||
/* in acl_stream_connect.c */
|
||
#ifdef SUNOS5
|
||
ACL_API int acl_stream_connect(const char *path, int blocking, int timeout);
|
||
#endif
|
||
|
||
#endif
|
||
|
||
#if defined(_WIN32) || defined(_WIN64)
|
||
typedef int (WINAPI *acl_connect_fn)(SOCKET, const struct sockaddr*, socklen_t);
|
||
#else
|
||
typedef int (*acl_connect_fn)(int, const struct sockaddr*, socklen_t);
|
||
#endif
|
||
|
||
ACL_API void acl_set_connect(acl_connect_fn fn);
|
||
|
||
#ifdef __cplusplus
|
||
}
|
||
#endif
|
||
|
||
#endif
|