Home
last modified time | relevance | path

Searched refs:HTTP (Results 1 – 7 of 7) sorted by relevance

/libevent-2.1.12/test/
H A Dregress_http.c4710 HTTP(basic),
4712 HTTP(simple),
4729 HTTP(post),
4730 HTTP(put),
4731 HTTP(delete),
4733 HTTP(failure),
4734 HTTP(connection),
4747 HTTP(highport),
4751 HTTP(chunk_out),
4754 HTTP(stream_in),
[all …]
/libevent-2.1.12/
H A DChangeLog-1.417 o Do not send an HTTP error when we've already closed or responded. (4fd2dd9 Pavel Plesov)
26 o Do not abort HTTP requests missing a reason string. (29d7b32 Pierre Phaneuf)
54 o Remove the limit on size of HTTP headers by removing static buffers.
91 o Support multi-line HTTP headers; based on a patch from Moshe Litvin
107 o Fix connection keep-alive behavior for HTTP/1.0
135 o include Content-Length in reply for HTTP/1.0 requests with keep-alive
150 o Use a 64-bit field to hold HTTP content-lengths. Patch from Scott Lamb.
168 o always generate Date and Content-Length headers for HTTP/1.1 replies
169 o set the correct event base for HTTP close events
184 o Add a "Date" header to HTTP responses, as required by HTTP 1.1.
[all …]
H A DChangeLog-2.0422 NEW AND MODIFIED HTTP APIs
437 HTTP BUGFIXES
481 HTTP CLEANUPS
506 o Add a basic example of how to write a static HTTP server. (4e794d5)
656 o Fix the default HTTP error template (06bd056 Felix Nawothnig)
776 o Allow empty reason line in HTTP status (739e688 Pierre Phaneuf)
1150 o set the correct event base for HTTP close events
1221 o support for virtual HTTP hosts.
1232 o Fix connection keep-alive behavior for HTTP/1.0
1245 o Support multi-line HTTP headers; based on a patch from Moshe Litvin
[all …]
H A Dwhatsnew-2.0.txt244 The HTTP api is not currently threadsafe.
447 This is what Libevent uses for its HTTP implementation. In addition to
574 6.4. HTTP
588 Libevent now lets you declare support for all specified HTTP methods,
H A Dwhatsnew-2.1.txt389 HTTP where the client always speaks first. On operating systems
444 You can override the default HTTP Content-Type with the new
572 2.5. HTTP performance improvements
H A DChangeLog541 … o test: http/*: update expected HTTP codes for body exceeds `max_body_size` (addf2b9 Azat Khuzhin)
612 o sample: add HTTP CONNECT tunnelling example using libevent http layer (1d34498 Azat Khuzhin)
901 o Allow registering callback for parsing HTTP headers (b0bd7fe Balint Reczey)
1216 o Add new error_cb for actual reporting of HTTP request errors. (7b07719
1552 o Force strict validation of HTTP version in response. (790f6b3 Catalin Patulea)
1844 o Remove trailing tabs in HTTP headers as well. (ac42519)
/libevent-2.1.12/sample/
H A Dhttps-client.c238 enum { HTTP, HTTPS } type = HTTP; in main() enumerator
520 if (type == HTTP && ssl) in main()