// Should be valid socket
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} // END - if
// Init result
// Should be valid socket
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} // END - if
// Get package data
// Should be valid socket
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} // END - if
// Get recipient
// Should be valid socket
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} // END - if
// Get recipient
// Should be valid socket
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} // END - if
// Get it from stored socket resource
// Should be valid socket
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} // END - if
// Get it from stored socket resource
/* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: CALLED!', strtoupper($this->getSocketProtocol())));
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} elseif (is_null($this->getListenerInstance())) {
// Required listener not set
throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER);
// Should be valid socket
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} // END - if
// Try to listen on socket
// Should be valid socket
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} // END - if
// Try to set non-blocking I/O
// Should be valid socket
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} // END - if
// Tries to set option
// Should be valid socket
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} // END - if
// Get recipient UNL
// Should be valid socket
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} // END - if
// Debug message
// Should be valid socket
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} // END - if
// Debug message
// Should be valid socket
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} elseif ($this->getLastSocketErrorCode() === 0) {
// Nothing to clear
throw new BadMethodCallException(sprintf('Socket "%s" has no error reported, but method is called.', $this->getSocketResource()));
// Should be valid socket
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} elseif (!isset($socketBuffer[NetworkPackageHandler::RAW_INDEX_DIFF])) {
// Opps, should not happen
throw new InvalidArgumentException(sprintf('socketBuffer[%s] is not set.', NetworkPackageHandler::RAW_INDEX_DIFF));
*
* @param $method Value of __METHOD__ from calling method
* @param $line Value of __LINE__ from calling method
- * @param $socketData A valid socket data array (0 = IP/file name, 1 = port)
* @return void
* @throws InvalidSocketException If the stored socket resource is no socket resource
* @throws NoSocketErrorDetectedException If socket_last_error() gives zero back
*/
- public function handleSocketError ($method, $line, array $socketData) {
+ public function handleSocketError ($method, $line) {
// Trace message
//* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('HUB-SYSTEM: Handling socket errorCode=%d - CALLED!', $this->getLastSocketErrorCode()));
// This method handles only socket resources
if (!$this->isValidSocket()) {
// No resource, abort here
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} // END - if
- // Check socket array, 1st element is mostly IP address (or file name), 2nd is port number
- //* DEBUG-DIE: */ die(__METHOD__ . ':socketData=' . print_r($socketData, true));
- assert(isset($socketData[0]));
- assert(isset($socketData[1]));
-
// Get error code for first validation (0 is not an error)
$errorCode = $this->getLastSocketErrorCode();
// If the error code is zero, someone called this method without an error
if ($errorCode == 0) {
// No error detected (or previously cleared outside this method)
- throw new NoSocketErrorDetectedException(array($this, $this->getSocketResource()), BaseListener::EXCEPTION_NO_SOCKET_ERROR);
+ throw new NoSocketErrorDetectedException(array($this), BaseListener::EXCEPTION_NO_SOCKET_ERROR);
} // END - if
// Get handler (method) name
$handlerName = $this->getSocketErrorHandlerFromCode($errorCode);
// Call-back the error handler method
- call_user_func_array(array($this, $handlerName), array($socketData));
+ call_user_func_array(array($this, $handlerName));
// Finally clear the error because it has been handled
$this->clearLastSocketError();
* Handles socket error 'permission denied', but does not clear it for
* later debugging purposes.
*
- * @param $socketData A valid socket data array (0 = IP/file name, 1 = port)
* @return void
* @throws SocketBindingException The socket could not be bind to
*/
- protected function handleSocketErrorPermissionDenied (array $socketData) {
+ protected function handleSocketErrorPermissionDenied () {
// Trace message
- //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: socketData()=%d - CALLED!', strtoupper($this->getSocketProtocol()), count($socketData)));
+ //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: CALLED!', strtoupper($this->getSocketProtocol())));
// Get socket error code for verification
$socketError = $this->getLastSocketErrorCode();
$this->shutdownSocket();
// Throw it again
- throw new SocketBindingException(array($this, $socketData, $this->getSocketResource(), $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
+ throw new SocketBindingException(array($this, $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
}
/**
* Handles socket error 'connection timed out', but does not clear it for
* later debugging purposes.
*
- * @param $socketData Valid socket data array
* @return void
* @throws SocketConnectionException The connection attempts fails with a time-out
*/
- protected function handleSocketErrorConnectionTimedOut (array $socketData) {
+ protected function handleSocketErrorConnectionTimedOut () {
// Trace message
- //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: socketData()=%d - CALLED!', strtoupper($this->getSocketProtocol()), count($socketData)));
+ //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: CALLED!', strtoupper($this->getSocketProtocol())));
// Get socket error code for verification
$socketError = $this->getLastSocketErrorCode();
$this->shutdownSocket();
// Throw it again
- throw new SocketConnectionException(array($this, $this->getSocketResource(), $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
+ throw new SocketConnectionException(array($this, $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
}
/**
* Handles socket error 'resource temporary unavailable', but does not
* clear it for later debugging purposes.
*
- * @param $socketData Valid socket data array
* @return void
* @throws SocketConnectionException The connection attempts fails with a time-out
*/
- protected function handleSocketErrorResourceUnavailable (array $socketData) {
+ protected function handleSocketErrorResourceUnavailable () {
// Trace message
- //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: socketData()=%d - CALLED!', strtoupper($this->getSocketProtocol()), count($socketData)));
+ //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: CALLED!', strtoupper($this->getSocketProtocol())));
// Get socket error code for verification
$socketError = $this->getLastSocketErrorCode();
$this->shutdownSocket();
// Throw it again
- throw new SocketConnectionException(array($this, $this->getSocketResource(), $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
+ throw new SocketConnectionException(array($this, $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
}
/**
* Handles socket error 'connection refused', but does not clear it for
* later debugging purposes.
*
- * @param $socketData Valid socket data array
* @return void
* @throws SocketConnectionException The connection attempts fails with a time-out
*/
- protected function handleSocketErrorConnectionRefused (array $socketData) {
+ protected function handleSocketErrorConnectionRefused () {
// Trace message
- //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: socketData()=%d - CALLED!', strtoupper($this->getSocketProtocol()), count($socketData)));
+ //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: CALLED!', strtoupper($this->getSocketProtocol())));
// Get socket error code for verification
$socketError = $this->getLastSocketErrorCode();
$this->shutdownSocket();
// Throw it again
- throw new SocketConnectionException(array($this, $this->getSocketResource(), $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
+ throw new SocketConnectionException(array($this, $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
}
/**
* Handles socket error 'no route to host', but does not clear it for later
* debugging purposes.
*
- * @param $socketData Valid socket data array
* @return void
* @throws SocketConnectionException The connection attempts fails with a time-out
*/
- protected function handleSocketErrorNoRouteToHost (array $socketData) {
+ protected function handleSocketErrorNoRouteToHost () {
// Trace message
- //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: socketData()=%d - CALLED!', strtoupper($this->getSocketProtocol()), count($socketData)));
+ //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: CALLED!', strtoupper($this->getSocketProtocol())));
// Get socket error code for verification
$socketError = $this->getLastSocketErrorCode();
$this->shutdownSocket();
// Throw it again
- throw new SocketConnectionException(array($this, $this->getSocketResource(), $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
+ throw new SocketConnectionException(array($this, $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
}
/**
* Handles socket error 'operation already in progress' which happens in
* method connectToPeerBySocketRecipient() on timed-out connection attempts.
*
- * @param $socketData Valid socket data array
* @return void
* @throws SocketConnectionException The connection attempts fails with a time-out
*/
- protected function handleSocketErrorOperationAlreadyProgress (array $socketData) {
+ protected function handleSocketErrorOperationAlreadyProgress () {
// Trace message
- //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: socketData()=%d - CALLED!', strtoupper($this->getSocketProtocol()), count($socketData)));
// Get socket error code for verification
$socketError = $this->getLastSocketErrorCode();
$this->halfShutdownSocket();
// Throw it again
- throw new SocketConnectionException(array($this, $this->getSocketResource(), $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
+ throw new SocketConnectionException(array($this, $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
}
/**
* Handles socket error 'connection reset by peer', but does not clear it for
* later debugging purposes.
*
- * @param $socketData Valid socket data array
* @return void
* @throws SocketConnectionException The connection attempts fails with a time-out
*/
- protected function handleSocketErrorConnectionResetByPeer (array $socketData) {
+ protected function handleSocketErrorConnectionResetByPeer () {
// Trace message
- //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: socketData()=%d - CALLED!', strtoupper($this->getSocketProtocol()), count($socketData)));
+ //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: CALLED!', strtoupper($this->getSocketProtocol())));
// Get socket error code for verification
$socketError = $this->getLastSocketErrorCode();
$this->shutdownSocket();
// Throw it again
- throw new SocketConnectionException(array($this, $this->getSocketResource(), $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
+ throw new SocketConnectionException(array($this, $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
}
/**
* Handles socket error 'operation not supported', but does not clear it for
* later debugging purposes.
*
- * @param $socketData Valid socket data array
* @return void
* @throws SocketOperationException The connection attempts fails with a time-out
*/
- protected function handleSocketErrorOperationNotSupported (array $socketData) {
+ protected function handleSocketErrorOperationNotSupported () {
// Trace message
- //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: socketData()=%d - CALLED!', strtoupper($this->getSocketProtocol()), count($socketData)));
+ //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: CALLED!', strtoupper($this->getSocketProtocol())));
// Get socket error code for verification
$socketError = $this->getLastSocketErrorCode();
$this->shutdownSocket();
// Throw it again
- throw new SocketOperationException(array($this, $this->getSocketResource(), $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
+ throw new SocketOperationException(array($this, $socketError, $errorMessage), self::EXCEPTION_INVALID_SOCKET);
}
/**
* Handles socket "error" 'operation now in progress' which can be safely
* passed on with non-blocking connections.
*
- * @param $socketData Valid socket data array
* @return void
*/
- protected function handleSocketErrorOperationInProgress (array $socketData) {
+ protected function handleSocketErrorOperationInProgress () {
// Trace message
- //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: socketData()=%d - CALLED!', strtoupper($this->getSocketProtocol()), count($socketData)));
+ //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('%s-SOCKET: CALLED!', strtoupper($this->getSocketProtocol())));
self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(strtoupper($this->getSocketProtocol()) . '-HELPER: Operation is now in progress, this is usual for non-blocking connections and is no bug.');
}
// Should be valid socket
if (!$this->isValidSocket()) {
// Throw exception
- throw new InvalidSocketException(array($this, $this->getSocketResource()), self::EXCEPTION_INVALID_SOCKET);
+ throw new InvalidSocketException(array($this), self::EXCEPTION_INVALID_SOCKET);
} // END - if
// Set it
// Check if there was an error else
if ($socketInstance->getLastSocketErrorCode() > 0) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, $packageInstance->getAllValuesAsArray());
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Is the file there?
// Try to bind to it
if (!$socketInstance->bindSocketToFile()) {
// Handle error here
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array_values($packageData));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Start listen for connections
self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-FACTORY: Listening for connections.');
if (!$socketInstance->listenToSocket()) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array_values($packageData));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Allow non-blocking I/O
self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-FACTORY: Setting non-blocking mode.');
if (!$socketInstance->enableSocketNonBlocking()) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array_values($packageData));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Trace message
// Check if there was an error else
if ($socketInstance->getLastSocketErrorCode() > 0) {
// Handle this socket error with a faked recipientData array
- $helperInstance->handleSocketError(__METHOD__, __LINE__, $socketInstance, array('0.0.0.0', '0'));
+ $helperInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Set the option to reuse the port
//* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-FACTORY: Enabling re-use address ...');
if (!$socketInstance->enableSocketReuseAddress()) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array('0.0.0.0', '0'));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
/*
//* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-FACTORY: Setting non-blocking mode.');
if (!$socketInstance->enableSocketNonBlocking()) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array('0.0.0.0', '0'));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Trace message
// Check if there was an error else
if ($socketInstance->getLastSocketErrorCode() > 0) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array('0.0.0.0', '0'));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Set the option to reuse the port
self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-FACTORY: Enabling re-use address ...');
if (!$socketInstance->enableSocketReuseAddress()) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array('0.0.0.0', '0'));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
/*
self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-FACTORY: Binding to address ' . $listenerInstance->getListenAddress() . ':' . $listenerInstance->getListenPort());
if (!$socketInstance->bindSocketToListener()) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array('0.0.0.0', '0'));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Start listen for connections
self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-FACTORY: Listening for connections.');
if (!$socketInstance->listenToSocket()) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array('0.0.0.0', '0'));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Now, we want non-blocking mode
self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-FACTORY: Setting non-blocking mode.');
if (!$socketInstance->enableSocketNonBlocking()) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array('0.0.0.0', '0'));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Trace message
// Check if there was an error else
if ($socketInstance->getLastSocketErrorCode() > 0) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array('0.0.0.0', '0'));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Set the option to reuse the port
self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-FACTORY: Enabling re-use address ...');
if (!$socketInstance->enableSocketReuseAddress()) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array('0.0.0.0', '0'));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
/*
self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-FACTORY: Binding to address ' . $listenerInstance->getListenAddress() . ':' . $listenerInstance->getListenPort());
if (!$socketInstance->bindSocketToListener()) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array('0.0.0.0', '0'));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Now, we want non-blocking mode
self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('SOCKET-FACTORY: Setting non-blocking mode.');
if (!$socketInstance->enableSocketNonBlocking()) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array('0.0.0.0', '0'));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Trace message
// Try to identify socket peer
if (!$socketInstance->identifySocketPeer()) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array('0.0.0.0', '0'));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Set timeout to configured seconds
if (!$socketInstance->setSocketTimeoutOptions()) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array('0.0.0.0', '0'));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Enable SO_OOBINLINE
if (!$socketInstance->enableSocketOutOfBandData()) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array('0.0.0.0', '0'));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Set non-blocking
if (!$socketInstance->enableSocketNonBlocking()) {
// Handle this socket error with a faked recipientData array
- $socketInstance->handleSocketError(__METHOD__, __LINE__, array('0.0.0.0', '0'));
+ $socketInstance->handleSocketError(__METHOD__, __LINE__);
} // END - if
// Trace message