o Do not mangle socket handles on 64-bit windows.
o The configure script now takes an --enable-gcc-warnigns option that turns on many optional gcc warnings. (Nick has been building with these for a while, but they might be useful to other developers.)
o move EV_PERSIST handling out of the event backends
+ o small improvements to evhttp documentation
Changes in 1.4.0:
struct evhttp *evhttp_new(struct event_base *base);
/**
- * Start an HTTP server on the specified address and port.
+ * Binds an HTTP server on the specified address and port.
*
* Can be called multiple times to bind the same http server
* to multiple different ports.
*
+ * @param http a pointer to an evhttp object
* @param address a string containing the IP address to listen(2) on
* @param port the port number to listen on
* @return 0 on success, -1 on failure.
/**
* Start an HTTP server on the specified address and port
+ *
* DEPRECATED: it does not allow an event base to be specified
*
* @param address the address to which the HTTP server should be bound