Searched refs:SOCK_CONN_ERR (Results 1 – 4 of 4) sorted by relevance
104 # define SOCK_CONN_ERR SOCKET_ERROR macro108 # define SOCK_CONN_ERR -1 macro
83 # define SOCK_CONN_ERR SOCKET_ERROR macro92 # define SOCK_CONN_ERR -1 macro488 if (n != SOCK_CONN_ERR) {
253 return (ret == SOCK_CONN_ERR) ? -1 : ret; in sock_sendto()256 …(sock->socket, buf, buflen > INT_MAX ? INT_MAX : (int)buflen, flags)) == SOCK_CONN_ERR) ? -1 : ret; in sock_sendto()258 return ((ret = send(sock->socket, buf, buflen, flags)) == SOCK_CONN_ERR) ? -1 : ret; in sock_sendto()274 ret = (ret == SOCK_CONN_ERR) ? -1 : ret; in sock_recvfrom()295 ret = (ret == SOCK_CONN_ERR) ? -1 : ret; in sock_recvfrom()
1246 if (bind(retval, sa, *socklen) == SOCK_CONN_ERR) { in php_network_listen_socket()
Completed in 30 milliseconds