Searched refs:SOCK_CONN_ERR (Results 1 – 4 of 4) sorted by relevance
105 # define SOCK_CONN_ERR SOCKET_ERROR macro109 # define SOCK_CONN_ERR -1 macro
77 # define SOCK_CONN_ERR SOCKET_ERROR macro86 # define SOCK_CONN_ERR -1 macro485 if (n != SOCK_CONN_ERR) {
283 return (ret == SOCK_CONN_ERR) ? -1 : ret; in sock_sendto()286 …(sock->socket, buf, buflen > INT_MAX ? INT_MAX : (int)buflen, flags)) == SOCK_CONN_ERR) ? -1 : ret; in sock_sendto()288 return ((ret = send(sock->socket, buf, buflen, flags)) == SOCK_CONN_ERR) ? -1 : ret; in sock_sendto()304 ret = (ret == SOCK_CONN_ERR) ? -1 : ret; in sock_recvfrom()325 ret = (ret == SOCK_CONN_ERR) ? -1 : ret; in sock_recvfrom()
1333 if (bind(retval, sa, *socklen) == SOCK_CONN_ERR) { in php_network_listen_socket()
Completed in 38 milliseconds