bufferevent_event_cb

An event/error callback for a bufferevent.

The event callback is triggered if either an EOF condition or another unrecoverable error was encountered.

@param bev the bufferevent for which the error condition was reached @param what a conjunction of flags: BEV_EVENT_READING or BEV_EVENT_WRITING to indicate if the error was encountered on the read or write path, and one of the following flags: BEV_EVENT_EOF, BEV_EVENT_ERROR, BEV_EVENT_TIMEOUT, BEV_EVENT_CONNECTED.

@param ctx the user-specified context for this bufferevent

extern (C) nothrow
alias bufferevent_event_cb = ExternC!(void function(bufferevent* bev, short what, void* ctx))

Meta