summaryrefslogtreecommitdiff
path: root/lib/http2.c
Commit message (Expand)AuthorAgeFilesLines
* http2: avoid strstr() on data not zero terminatedbagder/http2-avoid-strstr-on-dataDaniel Stenberg2018-04-201-2/+5
* http2: handle on_begin_headers() called more than onceDaniel Stenberg2018-04-191-8/+4
* http2: read pending frames (including GOAWAY) in connection-checkDaniel Stenberg2018-03-221-13/+41
* http2: fixes typoKobi Gurkan2018-03-151-1/+1
* http2: mark the connection for close on GOAWAYDaniel Stenberg2018-03-121-12/+21
* http2: verbose output new MAX_CONCURRENT_STREAMS valuesDaniel Stenberg2018-03-101-1/+2
* TODO fixed: Detect when called from within callbacksBjörn Stenberg2018-02-151-0/+2
* http2: set DEBUG_HTTP2 to enable more HTTP/2 loggingDaniel Stenberg2018-01-301-60/+66
* http2: fix incorrect trailer buffer sizeZhouyihai Ding2018-01-111-2/+2
* http2: fix "Value stored to 'end' is never read" scan-build errorDaniel Stenberg2017-11-211-1/+0
* http2: fix "Value stored to 'hdbuf' is never read" scan-build errorDaniel Stenberg2017-11-211-2/+0
* http2: Fixed OOM handling in upgrade requestDan Fandrich2017-11-011-1/+4
* include: remove conncache.h inclusion from where its not neededDaniel Stenberg2017-11-011-1/+0
* code style: use spaces around plusesDaniel Stenberg2017-09-111-1/+1
* code style: use spaces around equals signsDaniel Stenberg2017-09-111-2/+2
* mime: new MIME API.Patrick Monnerat2017-09-021-0/+1
* http2_recv: return error better on fatal h2 errorsDaniel Stenberg2017-08-181-2/+2
* http2: handle PING framesMax Dymond2017-06-301-2/+46
* handler: refactor connection checkingMax Dymond2017-06-301-0/+2
* http2: fix OOM crashDaniel Stenberg2017-06-181-2/+6
* test1521: test *all* curl_easy_setopt optionsDaniel Stenberg2017-06-051-22/+24
* assert: avoid, use DEBUGASSERT instead!Daniel Stenberg2017-05-221-2/+2
* multi: use a fixed array of timers instead of mallocDaniel Stenberg2017-05-101-4/+4
* multi: assign IDs to all timers and make each timer singletonDaniel Stenberg2017-05-101-4/+4
* http2: use the correct set buffer sizeDaniel Stenberg2017-05-011-1/+1
* http2: declare TU-local variables staticMarcel Raad2017-04-301-2/+2
* http2: fix handle leak in error pathLarry Stefani2017-04-151-0/+1
* http2: silence unused parameter warningsMarcel Raad2017-03-301-0/+6
* http2: fix memory-leak when denying push streamsDaniel Stenberg2017-02-131-11/+19
* http2: reset push header counter fixes crashDaniel Stenberg2017-02-071-0/+1
* http2: disable server push if not requestedAlessandro Ghedini2017-01-151-16/+26
* http2_send: avoid unsigned integer wrap aroundDaniel Stenberg2017-01-111-12/+6
* http2: check nghttp2_session_set_local_window_size existsJay Satiro2016-11-281-0/+6
* http2: Fix crashes when parent stream gets abortedAnders Bakken2016-11-281-0/+76
* checksrc: move open braces to comply with function declaration styleDaniel Stenberg2016-11-241-2/+4
* checksrc: white space edits to comply to stricter checksrcDaniel Stenberg2016-11-241-1/+1
* http2: Use huge HTTP/2 windowsJay Satiro2016-11-161-2/+13
* http2: Fix address sanitizer memcpy warningJay Satiro2016-11-161-1/+2
* realloc: use Curl_saferealloc to avoid common mistakesDaniel Stenberg2016-11-111-4/+3
* http2: Don't send header fields prohibited by HTTP/2 specTatsuhiro Tsujikawa2016-11-071-14/+85
* strcasecompare: all case insensitive string compares ignore locale nowDaniel Stenberg2016-10-311-4/+4
* http2: debug ouput sent HTTP/2 request headersDaniel Stenberg2016-09-161-0/+4
* http2: support > 64bit sized uploadsDaniel Stenberg2016-09-091-1/+2
* http2: return EOF when done uploading without known sizeDaniel Stenberg2016-09-051-2/+35
* http2: skip the content-length parsing, detect unknown sizeDaniel Stenberg2016-09-051-22/+6
* http2: minor white space editDaniel Stenberg2016-09-051-2/+3
* http2: use named define instead of magic constant in read callbackDaniel Stenberg2016-09-051-1/+1
* http2: return CURLE_HTTP2_STREAM for unexpected stream closeDaniel Stenberg2016-08-281-3/+2
* http2: handle closed streams when uploadingTatsuhiro Tsujikawa2016-08-281-0/+11
* http2: make sure stream errors don't needlessly close the connectionDaniel Stenberg2016-08-281-3/+45