Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ useful case.
If this is unsuitable then an identity remap rule can be added for the peer |TS|. If the peer
|TS| was named "peer.ats" and it listens on port 4443, then the remap rule would be ::

remap https://peer.ats:4443 https://peer.ats:4443
map https://peer.ats:4443 https://peer.ats:4443

Remapping will be disabled for the user agent connection and so it will not need a rule.

Expand Down
2 changes: 1 addition & 1 deletion plugins/experimental/tls_bridge/tls_bridge.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ constexpr char const PLUGIN_NAME[] = "TLS Bridge";
constexpr char const PLUGIN_TAG[] = "tls_bridge";

// Base format string for making the internal CONNECT.
char const CONNECT_FORMAT[] = "CONNECT https:%.*s HTTP/1.1\r\n\r\n";
char const CONNECT_FORMAT[] = "CONNECT https://%.*s HTTP/1.1\r\n\r\n";

// TextView of the 'CONNECT' method string.
const TextView METHOD_CONNECT{TS_HTTP_METHOD_CONNECT, TS_HTTP_LEN_CONNECT};
Expand Down