ftp_sockets::_settimeout()
<!-- --------------------------------------------------------------------------------------- --> <!-- Private functions --> <!-- --------------------------------------------------------------------------------------- -->
Method of the class: ftp_sockets{}
No Hooks.
Return
null
. Nothing.
Usage
$ftp_sockets = new ftp_sockets(); $ftp_sockets->_settimeout( $sock );
- $sock (required)
- -
ftp_sockets::_settimeout() ftp sockets:: settimeout code WP 6.1.1
function _settimeout($sock) { if([email protected]_set_option($sock, SOL_SOCKET, SO_RCVTIMEO, array("sec"=>$this->_timeout, "usec"=>0))) { $this->PushError('_connect','socket set receive timeout',socket_strerror(socket_last_error($sock))); @socket_close($sock); return FALSE; } if([email protected]_set_option($sock, SOL_SOCKET , SO_SNDTIMEO, array("sec"=>$this->_timeout, "usec"=>0))) { $this->PushError('_connect','socket set send timeout',socket_strerror(socket_last_error($sock))); @socket_close($sock); return FALSE; } return true; }