summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* [RELEASE] Released version 1.9-dev3v1.9-dev3Willy Tarreau2018-09-296-5/+45
* MEDIUM: lua: Add stick table support for Lua.Adis Nezirovic2018-09-293-0/+472
* BUG/MEDIUM: process_stream(): Don't wake the task if no new data was received.Olivier Houchard2018-09-281-2/+2
* BUG/MEDIUM: h2: Wake the task instead of calling h2_recv()/h2_process().Olivier Houchard2018-09-261-10/+6
* MINOR: h2/stream_interface: Reintroduce te wake() method.Olivier Houchard2018-09-262-1/+12
* BUG/MEDIUM: process_stream: Don't use si_cs_io_cb() in process_stream().Olivier Houchard2018-09-263-8/+36
* DOC: Update configuration doc about the maximum number of stick counters.Moemen MHEDHBI2018-09-261-17/+24
* BUG/MEDIUM: http: Don't parse chunked body if there is no input dataChristopher Faulet2018-09-201-3/+7
* BUG/CRITICAL: hpack: fix improper sign check on the header index valueWilly Tarreau2018-09-203-5/+5
* BUILD: build with -Wextra and sort out certain warningsWilly Tarreau2018-09-201-2/+13
* BUILD: sockpair: silence a build warning at -WextraWilly Tarreau2018-09-201-1/+1
* BUILD: backend: fix 3 build warnings related to null-deref at -WextraWilly Tarreau2018-09-201-4/+4
* BUILD: connection: silence a couple of null-deref build warnings at -WextraWilly Tarreau2018-09-202-2/+2
* BUILD: checks: silence a null-deref build warning at -WextraWilly Tarreau2018-09-201-1/+1
* BUILD: dns: fix null-deref build warning at -WextraWilly Tarreau2018-09-201-4/+4
* BUILD: log: silent build warnings due to unchecked __objt_{server,applet}Willy Tarreau2018-09-201-2/+2
* BUILD: http: address a couple of null-deref warnings at -WextraWilly Tarreau2018-09-201-2/+2
* BUILD: stream: address null-deref build warnings at -WextraWilly Tarreau2018-09-201-3/+3
* BUILD: stats: remove build warnings on potential null-derefsWilly Tarreau2018-09-201-2/+2
* BUILD: ssl_sock: remove build warnings on potential null-derefsWilly Tarreau2018-09-201-17/+17
* MINOR: stream-int: make si_appctx() never failWilly Tarreau2018-09-201-3/+3
* MINOR: stktable: provide an unchecked version of stktable_data_ptr()Willy Tarreau2018-09-201-1/+9
* BUG/MINOR: cli: make sure the "getsock" command is only called on connectionsWilly Tarreau2018-09-201-3/+10
* BUG/MINOR: tools: fix set_net_port() / set_host_port() on IPv4Willy Tarreau2018-09-201-0/+4
* CLEANUP/CONTRIB: hpack: remove some h1 build warningsWilly Tarreau2018-09-201-1/+0
* BUG/MEDIUM: h1: Really skip all updates when incomplete messages are parsedChristopher Faulet2018-09-191-39/+48
* BUG/MEDIUM: patterns: fix possible double free when reloading a pattern listDragan Dosen2018-09-191-4/+3
* MEDIUM: h1: deduplicate the content-length headerWilly Tarreau2018-09-141-7/+86
* MEDIUM: h1: better handle transfer-encoding vs content-lengthWilly Tarreau2018-09-142-6/+57
* MINOR: h1: add headers to the list after controls, not beforeWilly Tarreau2018-09-141-2/+2
* MINOR: http: add http_hdr_del() to remove a header from a listWilly Tarreau2018-09-141-0/+17
* MINOR: h1: Add H1_MF_XFER_LEN flagChristopher Faulet2018-09-141-0/+1
* DOC: Fix typos in lua documentationBertrand Jacquin2018-09-143-59/+59
* MINOR: h1: parse the Connection header fieldWilly Tarreau2018-09-132-0/+53
* MINOR: h1: report in the h1m struct if the HTTP version is 1.1 or aboveWilly Tarreau2018-09-132-0/+12
* BUG/MINOR: h1: don't consider the status for each headerWilly Tarreau2018-09-132-8/+16
* [RELEASE] Released version 1.9-dev2v1.9-dev2Willy Tarreau2018-09-126-5/+209
* BUG/MAJOR: h2: reset the parser's state on mux buffer fullWilly Tarreau2018-09-121-18/+11
* BUG/MEDIUM: h2: Don't forget to set recv_wait_list to NULL in h2_detach.Olivier Houchard2018-09-121-0/+3
* BUG/MEDIUM: h2: Don't forget to empty the wait lists on destroy.Olivier Houchard2018-09-121-0/+13
* MINOR: connection: pass the proxy when creating a connectionWilly Tarreau2018-09-126-10/+12
* MINOR: h1: add H1_MF_TOLOWER to decide when to turn header names to lower caseWilly Tarreau2018-09-123-3/+6
* MEDIUM: h1: implement the request parser as wellWilly Tarreau2018-09-121-2/+199
* MINOR: h1: remove the HTTP status from the H1M structWilly Tarreau2018-09-123-8/+3
* MINOR: h2: store the HTTP status into the H2S, not the H1MWilly Tarreau2018-09-121-4/+8
* MEDIUM: h1: remove the useless H1_MSG_BODY stateWilly Tarreau2018-09-124-25/+29
* MEDIUM: h1: support partial message parsingWilly Tarreau2018-09-121-14/+47
* MINOR: h1: make the message parser support a null <hdr> argumentWilly Tarreau2018-09-121-20/+32
* MEDIUM: h1: let the caller pass the initial parser's stateWilly Tarreau2018-09-122-16/+18
* MEDIUM: h1: make the parser support a pointer to a start lineWilly Tarreau2018-09-124-18/+53