EventBufferEvent::sslError

(PECL event >= 1.2.6-beta)

EventBufferEvent::sslErrorReturns most recent OpenSSL error reported on the buffer event

Opis

public EventBufferEvent::sslError ( void ) : string

Returns most recent OpenSSL error reported on the buffer event.

Informacja:

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

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

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

Przykłady

Przykład #1 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();
    }
}
?>

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top