I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Unverified Commit 3acc4b75 authored by zzz's avatar zzz
Browse files

SSLEepGet: Send Host header to HTTPS proxy

ref: RFC 2617 sec. 5.2
parent ef08dfad
No related branches found
No related tags found
No related merge requests found
...@@ -957,7 +957,8 @@ public class SSLEepGet extends EepGet { ...@@ -957,7 +957,8 @@ public class SSLEepGet extends EepGet {
_proxyIn = _proxy.getInputStream(); _proxyIn = _proxy.getInputStream();
_proxyOut = _proxy.getOutputStream(); _proxyOut = _proxy.getOutputStream();
StringBuilder buf = new StringBuilder(64); StringBuilder buf = new StringBuilder(64);
buf.append("CONNECT ").append(host).append(':').append(port).append(" HTTP/1.1\r\n"); buf.append("CONNECT ").append(host).append(':').append(port).append(" HTTP/1.1\r\n" +
"Host: ").append(host).append(':').append(port).append("\r\n");
// TODO if we need extra headers to the proxy, add a new method and list. // TODO if we need extra headers to the proxy, add a new method and list.
// Standard extra headers go the server, not the proxy // Standard extra headers go the server, not the proxy
//if (_extraPHeaders != null) { //if (_extraPHeaders != null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment