#ifndef UTIL_SOCKET_H
#define UTIL_SOCKET_H
#ifdef __cplusplus
extern "C" {
#endif
int util_server_socket_local(short *port);
int util_socket_connect_local(short port);
int util_socketpair(int fds[2]);
int util_socket_setnonblock(int fd, int nonblock);
#ifdef __cplusplus
}
#endif
#endif