ftp_sockets::_settimeout()publicWP 1.0

<!-- --------------------------------------------------------------------------------------- --> <!-- Private functions --> <!-- --------------------------------------------------------------------------------------- -->

Method of the class: ftp_sockets{}

No Hooks.

Return

null. Nothing (null).

Usage

$ftp_sockets = new ftp_sockets();
$ftp_sockets->_settimeout( $sock );
$sock (required)
-

ftp_sockets::_settimeout() code WP 6.5.2

function _settimeout($sock) {
	if(!@socket_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(!@socket_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;
}