diff --git a/apps/ministreaming/java/test/junit/net/i2p/client/streaming/impl/I2PSocketManagerFull.java b/apps/ministreaming/java/test/junit/net/i2p/client/streaming/impl/I2PSocketManagerFull.java index e40c2f40f..3a054ef1c 100644 --- a/apps/ministreaming/java/test/junit/net/i2p/client/streaming/impl/I2PSocketManagerFull.java +++ b/apps/ministreaming/java/test/junit/net/i2p/client/streaming/impl/I2PSocketManagerFull.java @@ -19,6 +19,7 @@ import net.i2p.client.streaming.I2PServerSocket; import net.i2p.client.streaming.I2PSocket; import net.i2p.client.streaming.I2PSocketManager; import net.i2p.client.streaming.I2PSocketOptions; +import net.i2p.client.streaming.IncomingConnectionFilter; import net.i2p.data.Destination; /** @@ -40,7 +41,8 @@ public class I2PSocketManagerFull implements I2PSocketManager { * @param opts may be null * @param name non-null */ - public I2PSocketManagerFull(I2PAppContext context, I2PSession session, Properties opts, String name) { + public I2PSocketManagerFull(I2PAppContext context, I2PSession session, Properties opts, String name, + IncomingConnectionFilter connectionFilter) { _session = session; _opts = opts; _name = name; diff --git a/history.txt b/history.txt index 44e55f3bc..9fa007457 100644 --- a/history.txt +++ b/history.txt @@ -3,6 +3,7 @@ - Adjust dependencies to match Tomcat and Jetty updates - Generate reproducible archives - Generate attributes for JAR manifests + * Tests: Fix ministreaming tests after access filtering changes 2019-04-17 zzz * Transport: More fixes for NTCP when SSU disabled (ticket #1417)