summaryrefslogtreecommitdiff
path: root/.clang-format
Commit message (Collapse)AuthorAgeFilesLines
* clang-format: Set ContinuationIndentWidth: 3Julian Andres Klode2017-09-101-0/+1
| | | | | | | This fixes the indentation of struct members, for example, which were previously indented by 4 spaces. Gbp-Dch: ignore
* Reformat and sort all includes with clang-formatJulian Andres Klode2017-07-121-1/+15
| | | | | | | | | | | | | This makes it easier to see which headers includes what. The changes were done by running git grep -l '#\s*include' \ | grep -E '.(cc|h)$' \ | xargs sed -i -E 's/(^\s*)#(\s*)include/\1#\2 include/' To modify all include lines by adding a space, and then running ./git-clang-format.sh.
* http: Add support for CONNECT proxying to HTTPS locationsJulian Andres Klode2017-06-301-0/+1
| | | | | | | | | | | | | | | | | | | Proxying HTTPS traffic requires the proxy providing the CONNECT method. This implements the client side of it, although it is a bit hacky. HTTP connect is a normal HTTP CONNECT request, followed by a normal HTTP response, just that the body of the response is the TCP stream of the target host. We use a special wrapper in case there are data bytes in the header packets - in that case, the bytes are stored in a buffer and the buffer will be drained first, afterwards the connection continues directly with the TCP stream (with one more vcall). Also: Do not send full URI to https destinations when proxying, as we are directly interfacing with the destination data stream.
* Add clang-format definitionsJulian Andres Klode2017-06-281-0/+9
Also add git-clang-format helper to help with }}} Gbp-Dch: ignore