disable nagle when running an embedded router (effective with router 0.9.48)

pull/53/head
Zlatin Balevsky 2020-11-24 18:07:34 +00:00
parent 0e1fe12722
commit 69fe8914e7
No known key found for this signature in database
GPG Key ID: A72832072D525E41
1 changed files with 1 additions and 0 deletions

View File

@ -221,6 +221,7 @@ public class Core {
routerProps.setProperty("i2np.inboundKBytesPerSecond", String.valueOf(props.inBw))
routerProps.setProperty("i2np.outboundKBytesPerSecond", String.valueOf(props.outBw))
routerProps.setProperty("i2cp.disableInterface", "true")
routerProps.setProperty("i2np.ntcp.nodelay", "true")
routerProps.setProperty("i2np.ntcp.port", i2pOptions["i2np.ntcp.port"])
routerProps.setProperty("i2np.udp.port", i2pOptions["i2np.udp.port"])
routerProps.setProperty("i2np.udp.internalPort", i2pOptions["i2np.udp.port"])