|
|
@ -496,10 +496,7 @@ int _open_unix_server(const char *server_path, const char *file, const char *fun |
|
|
|
int _open_unix_client(const char *server_path, const char *file, const char *func, const int line); |
|
|
|
int _open_unix_client(const char *server_path, const char *file, const char *func, const int line); |
|
|
|
#define open_unix_client(server_path) _open_unix_client(server_path, __FILE__, __func__, __LINE__) |
|
|
|
#define open_unix_client(server_path) _open_unix_client(server_path, __FILE__, __func__, __LINE__) |
|
|
|
int wait_close(int sockd, int timeout); |
|
|
|
int wait_close(int sockd, int timeout); |
|
|
|
int _wait_read_select(int *sockd, float timeout); |
|
|
|
int wait_read_select(int sockd, float timeout); |
|
|
|
#define wait_read_select(SOCKD, TIMEOUT) _wait_read_select(&(SOCKD), TIMEOUT) |
|
|
|
|
|
|
|
int _wait_recv_select(int *sockd, float timeout); |
|
|
|
|
|
|
|
#define wait_recv_select(SOCKD, TIMEOUT) _wait_recv_select(&(SOCKD), TIMEOUT) |
|
|
|
|
|
|
|
int read_length(int sockd, void *buf, int len); |
|
|
|
int read_length(int sockd, void *buf, int len); |
|
|
|
char *_recv_unix_msg(int sockd, int timeout1, int timeout2, const char *file, const char *func, const int line); |
|
|
|
char *_recv_unix_msg(int sockd, int timeout1, int timeout2, const char *file, const char *func, const int line); |
|
|
|
#define RECV_UNIX_TIMEOUT1 30 |
|
|
|
#define RECV_UNIX_TIMEOUT1 30 |
|
|
|