summaryrefslogtreecommitdiff
path: root/lib/http2.c
Commit message (Collapse)AuthorAgeFilesLines
* Compile with latest nghttp2Tatsuhiro Tsujikawa2014-08-261-39/+45
|
* http2: added some more logging for debugging stream problemsDaniel Stenberg2014-08-071-3/+11
|
* HTTP/2: Reset promised stream, not its associated stream.Tatsuhiro Tsujikawa2014-08-071-1/+2
|
* HTTP/2: Move :authority before non-pseudo header fieldsTatsuhiro Tsujikawa2014-08-071-0/+17
|
* http2: show the received header for better debuggingDaniel Stenberg2014-08-071-1/+3
|
* HTTP/2: Fix infinite loop in readwrite_data()Tatsuhiro Tsujikawa2014-08-031-0/+6
| | | | | | To prevent infinite loop in readwrite_data() function when stream is reset before any response body comes, reset closed flag to false once it is evaluated to true.
* HTTP2: Support expect: 100-continueTatsuhiro Tsujikawa2014-08-021-11/+143
| | | | | | | "Expect: 100-continue", which was once deprecated in HTTP/2, is now resurrected in HTTP/2 draft 14. This change adds its support to HTTP/2 code. This change also includes stricter header field checking.
* base64: added Curl_base64url_encode()Daniel Stenberg2014-07-251-2/+2
| | | | | | | This is now used by the http2 code. It has two different symbols at the end of the base64 table to make the output "url safe". Bug: https://github.com/tatsuhiro-t/nghttp2/issues/62
* http2: more and better error checkingDaniel Stenberg2014-07-231-8/+16
| | | | | | | 1 - fixes the warnings when built without http2 support 2 - adds CURLE_HTTP2, a new error code for errors detected by nghttp2 basically when they are about http2 specific things.
* http2: better return code error checkingDaniel Stenberg2014-06-141-4/+9
|
* http2: avoid segfault when usint the plain-text http2Daniel Stenberg2014-06-121-0/+1
| | | | | This regression was introduced when *init was split into *init and *setup...
* http2: make connection re-use workDaniel Stenberg2014-05-201-15/+19
| | | | | | | | Http2 connections would wrongly get closed after each individual request. Co-authored-by: Tatsuhiro Tsujikawa Bug: http://curl.haxx.se/bug/view.cgi?id=1374
* http2: Compile with latest nghttp2Tatsuhiro Tsujikawa2014-05-071-11/+9
| | | | | | Now nghttp2_submit_request returns assigned stream ID, we don't have to check stream ID using before_stream_send_callback. The adjust_priority_callback was removed.
* http2: Compile with latest nghttp2Tatsuhiro Tsujikawa2014-04-271-0/+1
| | | | commit 6d5f40238028f2d8c (Apr 27) or later nghttp2 is now required
* handler: make 'protocol' always specified as a single bitDaniel Stenberg2014-04-231-1/+1
| | | | | | | | | | | | | | | | This makes the findprotocol() function work as intended so that libcurl can properly be restricted to not support HTTP while still supporting HTTPS - since the HTTPS handler previously set both the HTTP and HTTPS bits in the protocol field. This fixes --proto and --proto-redir for most SSL protocols. This is done by adding a few new convenience defines that groups HTTP and HTTPS, FTP and FTPS etc that should then be used when the code wants to check for both protocols at once. PROTO_FAMILY_[protocol] style. Bug: https://github.com/bagder/curl/pull/97 Reported-by: drizzt
* http2: Compile with current nghttp2, which supports h2-11Tatsuhiro Tsujikawa2014-04-051-17/+17
|
* http2: free resources on disconnectTatsuhiro Tsujikawa2014-03-101-4/+24
| | | | ... and use Curl_safefree() instead of free()
* Fix bug that HTTP/2 hangs if whole response body is read with headersTatsuhiro Tsujikawa2014-02-281-0/+4
| | | | | | | | | | For HTTP/2, we may read up everything including responde body with header fields in Curl_http_readwrite_headers. If no content-length is provided, curl waits for the connection close, which we emulate it using conn->proto.httpc.closed = TRUE. The thing is if we read everything, then http2_recv won't be called and we cannot signal the HTTP/2 stream has closed. As a workaround, we return nonzero from data_pending to call http2_recv.
* http2: build with current nghttp2 versionDaniel Stenberg2014-02-281-0/+3
| | | | | nghttp2 has yet again extended its callback struct and this is an attempt to make curl compile with nghttp2 from current git
* http2: Support HTTP POST/PUTTatsuhiro Tsujikawa2014-02-171-8/+148
| | | | | | | | | This patch enables HTTP POST/PUT in HTTP2. We disabled Expect header field and chunked transfer encoding since HTTP2 forbids them. In HTTP1, Curl sends small upload data with request headers, but HTTP2 requires upload data must be in DATA frame separately. So we added some conditionals to achieve this.
* http2: rely on content-encoding headerFabian Frank2014-02-051-2/+1
| | | | | | | | | | | A server might respond with a content-encoding header and a response that was encoded accordingly in HTTP-draft-09/2.0 mode, even if the client did not send an accept-encoding header earlier. The server might not send a content-encoding header if the identity encoding was used to encode the response. See: http://tools.ietf.org/html/draft-ietf-httpbis-http2-09#section-9.3
* http2: enforce gzip auto-decompressDaniel Stenberg2014-02-041-0/+3
| | | | As this is mandated by the http2 spec draft-09
* http2: handle incoming data larger than remaining bufferTatsuhiro Tsujikawa2014-02-041-17/+44
|
* http2: Check stream ID we are interested inTatsuhiro Tsujikawa2014-02-041-6/+35
|
* http2: store response header in temporary bufferTatsuhiro Tsujikawa2014-02-041-21/+42
|
* HTTP2: add layer between existing http and socket(TLS) layerTatsuhiro Tsujikawa2014-02-041-50/+204
| | | | | | | | | | | | | | | | | | This patch chooses different approach to integrate HTTP2 into HTTP curl stack. The idea is that we insert HTTP2 layer between HTTP code and socket(TLS) layer. When HTTP2 is initialized (either in NPN or Upgrade), we replace the Curl_recv/Curl_send callbacks with HTTP2's, but keep the original callbacks in http_conn struct. When sending serialized data by nghttp2, we use original Curl_send callback. Likewise, when reading data from network, we use original Curl_recv callback. In this way we can treat both TLS and non-TLS connections. With this patch, one can transfer contents from https://twitter.com and from nghttp2 test server in plain HTTP as well. The code still has rough edges. The notable one is I could not figure out how to call nghttp2_session_send() when underlying socket is writable.
* http2: fix size check in on_data_chunk_recvDaniel Stenberg2014-01-301-1/+1
|
* http2: add CRLF when first data arrivesDaniel Stenberg2014-01-301-4/+14
|
* http2_recv: Return written length on CURLE_AGAINTatsuhiro Tsujikawa2014-01-301-2/+5
|
* http2: Use nghttp2_session_mem_recv and nghttp2_session_upgradeTatsuhiro Tsujikawa2014-01-301-42/+39
|
* http2: basic version of receiving DATADaniel Stenberg2014-01-301-2/+13
|
* http2: convert HEADER frames to HTTP1-like headersDaniel Stenberg2014-01-301-14/+20
| | | | ... and then go through the "normal" HTTP engine.
* http2: fix EWOULDBLOCK in recv_callback()Daniel Stenberg2014-01-301-4/+8
|
* http2: do the POST Upgrade dance properlyDaniel Stenberg2014-01-301-4/+11
|
* http2: switch into http2 mode if NPN indicatesFabian Frank2014-01-301-11/+32
| | | | | | | Check the NPN result before preparing an HTTP request and switch into HTTP/2.0 mode if necessary. This is a work in progress, the actual code to prepare and send the request using nghttp2 is still missing from Curl_http2_send_request().
* http2: s/Curl_http2_request/Curl_http2_request_upgradeDaniel Stenberg2014-01-301-2/+2
| | | | To better reflect its purpose
* http2: added stubs for all nghttp2 callbacksDaniel Stenberg2014-01-301-13/+114
| | | | This makes it easier to trace what's happening.
* http2: use FIRSTSOCKET instead of 0 to index the sockets arrayDaniel Stenberg2014-01-291-1/+1
|
* http2: receive and log the received header framesDaniel Stenberg2014-01-291-12/+40
|
* http2_recv: log nghttp2 return codes for debugging purposesDaniel Stenberg2014-01-291-0/+2
|
* HTTP2: reject nghttp2 versions before 0.3.0Daniel Stenberg2014-01-291-0/+4
|
* http2: adjusted to newer nghttp2_session_callbacks structGisle Vanem2014-01-291-2/+0
| | | | | | the number of elements in the 'nghttp2_session_callbacks' structure is now reduced by 2 in version 0.3.0 (I'm not sure when the change happened, but checking for ver 0.3.0 work for me).
* HTTP2: Wrong NgHTTP2 user-dataGisle Vanem2014-01-291-4/+5
| | | | | | | | Something is wrong in 'userp' for the HTTP2 recv_callback(). The session is created using bogus user-data; '&conn' and not 'conn'. I noticed this since the socket-value in Curl_read_plain() was set to a impossible high value.
* http2: switch recv/send functions to http2 ones after 101Daniel Stenberg2014-01-291-1/+37
|
* http2: handle 101 responses and switch to HTTP2Daniel Stenberg2014-01-291-0/+36
|
* http2: use the support HTTP2 draft version in the upgrade headerDaniel Stenberg2013-09-101-2/+3
| | | | ... instead of HTTP/2.0 to work fine with the nghttpx proxy/server.
* http2: adjust to new nghttp2_pack_settings_payload protoDaniel Stenberg2013-09-091-1/+3
| | | | This function was modified in nghttp2 git commit a1c3f89c72e51
* http2: include curl_memory.hDaniel Stenberg2013-09-071-0/+1
| | | | Detected by test 1132
* http2: actually init nghttp2 and send HTTP2-Settings properlyDaniel Stenberg2013-09-071-8/+125
|
* http2: first embryo toward Upgrade:Daniel Stenberg2013-09-071-0/+19
|