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

Skip to content
Snippets Groups Projects
Commit ba0e58e6 authored by zab2's avatar zab2
Browse files

fix compilation

parent 18531f0c
No related branches found
No related tags found
No related merge requests found
...@@ -130,7 +130,7 @@ public class I2PSocketManagerFull implements I2PSocketManager { ...@@ -130,7 +130,7 @@ public class I2PSocketManagerFull implements I2PSocketManager {
_log.debug("receiveSocket() called: " + con); _log.debug("receiveSocket() called: " + con);
} }
if (con != null) { if (con != null) {
I2PSocketFull sock = new I2PSocketFull(con); I2PSocketFull sock = new I2PSocketFull(con,_context);
con.setSocket(sock); con.setSocket(sock);
return sock; return sock;
} else { } else {
...@@ -242,7 +242,7 @@ public class I2PSocketManagerFull implements I2PSocketManager { ...@@ -242,7 +242,7 @@ public class I2PSocketManagerFull implements I2PSocketManager {
Connection con = _connectionManager.connect(peer, opts); Connection con = _connectionManager.connect(peer, opts);
if (con == null) if (con == null)
throw new TooManyStreamsException("Too many streams, max " + _defaultOptions.getMaxConns()); throw new TooManyStreamsException("Too many streams, max " + _defaultOptions.getMaxConns());
I2PSocketFull socket = new I2PSocketFull(con); I2PSocketFull socket = new I2PSocketFull(con,_context);
con.setSocket(socket); con.setSocket(socket);
if (con.getConnectionError() != null) { if (con.getConnectionError() != null) {
con.disconnect(false); con.disconnect(false);
......
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