Skip to content
This repository has been archived by the owner on Jan 22, 2019. It is now read-only.

v0.5.0

Compare
Choose a tag to compare
@SebastianSchmidt SebastianSchmidt released this 06 Jul 18:12
· 95 commits to master since this release

Added

  • All HTTP requests and responses are standardized before they are forwarded to
    the server and clients. The names of header fields are converted completely
    into lowercase letters.
  • HTTP requests with syntactically incorrect request lines or header fields are
    rejected with the HTTP status code 400 (Bad Request). Such requests are not
    forwarded to the target server.
  • HTTP responses with syntactically incorrect status lines or header fields are
    rejected with the HTTP status code 502 (Bad Gateway). Such responses are not
    forwarded to clients.
  • The proxy supports chunked transfer coding if chunked is the last coding in a
    sequence of transfer codings. So far, chunked was only supported, if it was
    the only transfer coding.