EventBufferEvent::sslError
(PECL event >= 1.2.6-beta)
EventBufferEvent::sslError — Returns most recent OpenSSL error reported on the buffer event
Beschreibung
Returns most recent OpenSSL error reported on the buffer event.
Hinweis:
This function is available only if
Event
is compiled with OpenSSL support.
Parameter-Liste
Diese Funktion besitzt keine Parameter.
Rückgabewerte
Returns OpenSSL error string reported on the buffer event, or false
, if
there is no more error to return.
Beispiele
Beispiel #1 EventBufferEvent::sslError() example
<?php
// This callback is invoked when some even occurs on the event listener,
// e.g. connection closed, or an error occurred
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();
}
}
?>
Siehe auch
- EventBufferEvent::sslRenegotiate() - Tells a bufferevent to begin SSL renegotiation