mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 11:57:43 +08:00
101 lines
3.2 KiB
C
101 lines
3.2 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
|
||
|
||
/* 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);
|
||
|
||
/* 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 h_error {int*} 当连接失败时存储失败原因错误号
|
||
* @return {ACL_SOCKET} 如果返回 ACL_SOCKET_INVALID 表示连接失败
|
||
*/
|
||
ACL_API ACL_SOCKET acl_inet_connect_ex(const char *addr, int blocking,
|
||
int timeout, int *h_error);
|
||
|
||
#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
|