* Streaming: New disableRejectLogging option (default false), enable for snark

This commit is contained in:
zzz
2012-10-31 15:56:02 +00:00
parent 2f4eeda397
commit 84a0793a10
3 changed files with 22 additions and 2 deletions

View File

@ -244,6 +244,8 @@ public class I2PSnarkUtil {
opts.setProperty("i2p.streaming.maxConnsPerHour", "20");
if (opts.getProperty("i2p.streaming.enforceProtocol") == null)
opts.setProperty("i2p.streaming.enforceProtocol", "true");
if (opts.getProperty("i2p.streaming.disableRejectLogging") == null)
opts.setProperty("i2p.streaming.disableRejectLogging", "true");
_manager = I2PSocketManagerFactory.createManager(_i2cpHost, _i2cpPort, opts);
_connecting = false;
}