Searched refs:SOCK_CONN_ERR (Results 1 – 4 of 4) sorted by relevance
106 # define SOCK_CONN_ERR SOCKET_ERROR macro110 # define SOCK_CONN_ERR -1 macro
97 # define SOCK_CONN_ERR SOCKET_ERROR macro106 # define SOCK_CONN_ERR -1 macro500 if (n != SOCK_CONN_ERR) {
255 return (ret == SOCK_CONN_ERR) ? -1 : ret; in sock_sendto()258 …(sock->socket, buf, buflen > INT_MAX ? INT_MAX : (int)buflen, flags)) == SOCK_CONN_ERR) ? -1 : ret; in sock_sendto()260 return ((ret = send(sock->socket, buf, buflen, flags)) == SOCK_CONN_ERR) ? -1 : ret; in sock_sendto()276 ret = (ret == SOCK_CONN_ERR) ? -1 : ret; in sock_recvfrom()291 ret = (ret == SOCK_CONN_ERR) ? -1 : ret; in sock_recvfrom()
1260 if (bind(retval, sa, *socklen) == SOCK_CONN_ERR) { in php_network_listen_socket()
Completed in 31 milliseconds