Skip to content
Snippets Groups Projects
  • Tatsuhiro Tsujikawa's avatar
    035b91a2
    http2: Support HTTP POST/PUT · 035b91a2
    Tatsuhiro Tsujikawa authored
    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.
    035b91a2
    History
    http2: Support HTTP POST/PUT
    Tatsuhiro Tsujikawa authored
    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.