about summary refs log tree commit homepage
path: root/ext
DateCommit message (Expand)
2009-09-15http: cleanup assertion for memoized header strings
2009-09-14http: create a new string buffer on empty values
2009-09-14http: use rb_str_{update,flush} if available
2009-09-14http: compile with -fPIC
2009-09-14http: no-op rb_str_modify() for Rubies without it
2009-09-14http: define OFFT2NUM macro on Rubies without it
2009-09-14http: support Rubies without the OBJ_FROZEN macro
2009-09-08"encoding: binary" comments for all sources (1.9)
2009-09-06http: ignore Host: continuation lines with absolute URIs
2009-09-06http: rb_gc_mark already ignores immediates
2009-09-06http: NIL_P(var) instead of var == Qnil
2009-09-06http: verbose assertions
2009-09-06http: extra assertion when advancing p manually
2009-09-06http: remove needless goto
2009-09-06http: use explicit elses for readability
2009-09-06http: refactor keepalive tracking to functions
2009-09-06http: switch to macros for bitflag handling
2009-09-06http: clarify the setting of the actual header in the hash
2009-09-06http: cleanup and avoid potential signedness warning
2009-09-03http: add HttpParser#headers? method
2009-09-02http: SERVER_PROTOCOL matches HTTP_VERSION
2009-09-01http: support for simple HTTP/0.9 GET requests
2009-09-01http: extension-methods allow any tokens
2009-08-29unicorn_http: "fix" const warning
2009-08-18http: support for multi-line HTTP headers
2009-08-18http: make strings independent before modification
2009-08-17Documentation updates
2009-08-15http: support for "Connection: keep-alive"
2009-08-15http: fix warning when sizeof(off_t) == sizeof(long long)
2009-08-12http: freeze fields when creating them, always
2009-08-11http: add "HttpParser#keepalive?" method
2009-08-10http: add CONST_MEM_EQ macro
2009-08-10http: rename read_body to filter_body
2009-08-09http: join repeated headers with a comma
2009-08-09http: unit tests for overflow and bad lengths
2009-08-09Switch to Ragel/C-based chunk/trailer parser
2009-08-09http: preliminary chunk decoding
2009-08-09http: process Content-Length and Transfer-Encoding
2009-08-09http: generic C string vs VALUEs comparison function
2009-08-09http: prepare http_parser struct for body processing
2009-08-09http: move non-Ruby-specific macros c_util.h
2009-08-09http: remove noise functions
2009-08-09http: cleanup setting for common values => globals
2009-08-09http: move global initialization code
2009-08-09http: split out server params handling
2009-08-09http: minor cleanup of http_field handling
2009-08-09http: small cleanup in "https" detection
2009-08-09http: "hp" denotes http_parser structs for consistency
2009-08-09http: remove some redundant functions
2009-08-09http: split uncommon_field into a separate function