1573#include <sys/types.h>
1577#define XCM_NONBLOCK (1<<0)
1663 const struct xcm_attr_map *attrs);
1718 const struct xcm_attr_map *attrs);
1798 const struct xcm_attr_map *attrs);
1823 const void *__restrict buf,
size_t len);
1849 void *__restrict buf,
size_t capacity);
1853#define XCM_SO_RECEIVABLE (1<<0)
1856#define XCM_SO_SENDABLE (1<<1)
1858#define XCM_SO_ACCEPTABLE (1<<2)
int xcm_await(struct xcm_socket *socket, int condition)
int xcm_fd(struct xcm_socket *socket)
int xcm_receive(struct xcm_socket *__restrict conn_socket, void *__restrict buf, size_t capacity)
const char * xcm_remote_addr(struct xcm_socket *conn_socket)
struct xcm_socket * xcm_server_a(const char *local_addr, const struct xcm_attr_map *attrs)
bool xcm_is_blocking(struct xcm_socket *socket)
const char * xcm_local_addr(struct xcm_socket *socket)
struct xcm_socket * xcm_accept(struct xcm_socket *server_socket)
int xcm_finish(struct xcm_socket *socket)
struct xcm_socket * xcm_server(const char *local_addr)
void xcm_cleanup(struct xcm_socket *socket)
int xcm_close(struct xcm_socket *socket)
struct xcm_socket * xcm_accept_a(struct xcm_socket *server_socket, const struct xcm_attr_map *attrs)
struct xcm_socket * xcm_connect(const char *remote_addr, int flags)
int xcm_set_blocking(struct xcm_socket *socket, bool should_block)
struct xcm_socket * xcm_connect_a(const char *remote_addr, const struct xcm_attr_map *attrs)
int xcm_send(struct xcm_socket *__restrict conn_socket, const void *__restrict buf, size_t len)
Obsolete parts of the XCM API.