From ba0e58e66a5a799571c20f0e727ea90625a1162a Mon Sep 17 00:00:00 2001 From: zab2 <zab2@mail.i2p> Date: Fri, 5 Jul 2013 12:53:13 +0000 Subject: [PATCH] fix compilation --- .../src/net/i2p/client/streaming/I2PSocketManagerFull.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/streaming/java/src/net/i2p/client/streaming/I2PSocketManagerFull.java b/apps/streaming/java/src/net/i2p/client/streaming/I2PSocketManagerFull.java index a60888f2cc..01d62b6093 100644 --- a/apps/streaming/java/src/net/i2p/client/streaming/I2PSocketManagerFull.java +++ b/apps/streaming/java/src/net/i2p/client/streaming/I2PSocketManagerFull.java @@ -130,7 +130,7 @@ public class I2PSocketManagerFull implements I2PSocketManager { _log.debug("receiveSocket() called: " + con); } if (con != null) { - I2PSocketFull sock = new I2PSocketFull(con); + I2PSocketFull sock = new I2PSocketFull(con,_context); con.setSocket(sock); return sock; } else { @@ -242,7 +242,7 @@ public class I2PSocketManagerFull implements I2PSocketManager { Connection con = _connectionManager.connect(peer, opts); if (con == null) throw new TooManyStreamsException("Too many streams, max " + _defaultOptions.getMaxConns()); - I2PSocketFull socket = new I2PSocketFull(con); + I2PSocketFull socket = new I2PSocketFull(con,_context); con.setSocket(socket); if (con.getConnectionError() != null) { con.disconnect(false); -- GitLab