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

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

UPnP: Fix missing port in Host header causing failures on libupnp-based devices

parent 63ac9810
No related branches found
No related tags found
No related merge requests found
...@@ -834,6 +834,7 @@ public class HTTPPacket ...@@ -834,6 +834,7 @@ public class HTTPPacket
setHeader(HTTP.HOST, hostAddr + ":" + Integer.toString(port)); setHeader(HTTP.HOST, hostAddr + ":" + Integer.toString(port));
} }
/* I2P No - we always want port also. libupnp-based devices will reject 403 without the port
public void setHost(String host) public void setHost(String host)
{ {
String hostAddr = host; String hostAddr = host;
...@@ -841,6 +842,7 @@ public class HTTPPacket ...@@ -841,6 +842,7 @@ public class HTTPPacket
hostAddr = "[" + host + "]"; hostAddr = "[" + host + "]";
setHeader(HTTP.HOST, hostAddr); setHeader(HTTP.HOST, hostAddr);
} }
*/
public String getHost() public String getHost()
{ {
......
...@@ -402,7 +402,7 @@ public class HTTPRequest extends HTTPPacket ...@@ -402,7 +402,7 @@ public class HTTPRequest extends HTTPPacket
{ {
HTTPResponse httpRes = new HTTPResponse(); HTTPResponse httpRes = new HTTPResponse();
setHost(host); setHost(host, port);
setConnection((isKeepAlive == true) ? HTTP.KEEP_ALIVE : HTTP.CLOSE); setConnection((isKeepAlive == true) ? HTTP.KEEP_ALIVE : HTTP.CLOSE);
......
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