libevent-sys 0.3.0

Rust FFI bindings to the libevent library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <event.h>


#include <event2/util.h>        // Utility functions for portable nonblocking network code
#include <event2/dns.h>         // Asynchronous DNS resolution
#include <event2/http.h>        // An embedded libevent-based HTTP server
#include <event2/rpc.h>         // A framework for creating RPC servers and clients


#ifdef EVENT__HAVE_OPENSSL
#include <event2/bufferevent_ssl.h>
#endif

#ifdef EVENT__HAVE_PTHREADS
#include <event2/thread.h>
#endif