|
socket_set_nonblockSets nonblocking mode for file descriptor fd Description
bool socket_set_nonblock(Socket
$socket )
The socket_set_nonblock function sets the
When an operation (e.g. receive, send, connect, accept, ...) is performed on a non-blocking socket, the script will not pause its execution until it receives a signal or it can perform the operation. Rather, if the operation would result in a block, the called function will fail. Parameters
Return Values
Returns Changelog
Examples
Example #1 socket_set_nonblock example
This example creates a listening socket on all interfaces on port 1223 and
sets the socket to See Also
|