EventBufferEvent::sslError

(PECL event >= 1.2.6-beta)
Returns most recent OpenSSL error reported on the buffer event
public string EventBufferEvent::sslError ( void )

Returns most recent OpenSSL error reported on the buffer event.

Note:

This function is available only if Event is compiled with OpenSSL support.

Returns:

Returns OpenSSL error string reported on the buffer event, or FALSE, if there is no more error to return.

Examples:
EventBufferEvent::sslError() example
<?php
// This callback is invoked when some even occurs on the event listener,
// e.g. connection closed, or an error occured
function ssl_event_cb($bev, $events, $ctx) {
    if ($events & EventBufferEvent::ERROR) {
        // Fetch errors from the SSL error stack
        while ($err = $bev->sslError()) {
            fprintf(STDERR, "Bufferevent error %s.\n", $err);
        }
    }

    if ($events & (EventBufferEvent::EOF | EventBufferEvent::ERROR)) {
        $bev->free();
    }
}
?>

See also:

EventBufferEvent::sslRenegotiate() -

doc_php
2016-02-24 16:08:21
Comments
Leave a Comment

Please login to continue.