mirror of https://github.com/zlatinb/muwire
fix bandwidth property names
parent
950d34a259
commit
559dd76fc7
|
@ -223,8 +223,10 @@ public class Core {
|
||||||
Properties routerProps = new Properties()
|
Properties routerProps = new Properties()
|
||||||
routerProps.setProperty("i2p.dir.config", home.getAbsolutePath())
|
routerProps.setProperty("i2p.dir.config", home.getAbsolutePath())
|
||||||
routerProps.setProperty("router.excludePeerCaps", i2pOptions["router.excludePeerCaps"])
|
routerProps.setProperty("router.excludePeerCaps", i2pOptions["router.excludePeerCaps"])
|
||||||
routerProps.setProperty("i2np.inboundKBytesPerSecond", String.valueOf(props.inBw))
|
routerProps.setProperty("i2np.bandwidth.inboundKBytesPerSecond", String.valueOf(props.inBw))
|
||||||
routerProps.setProperty("i2np.outboundKBytesPerSecond", String.valueOf(props.outBw))
|
routerProps.setProperty("i2np.bandwidth.inboundBurstKBytesPerSecond", String.valueOf(props.inBw))
|
||||||
|
routerProps.setProperty("i2np.bandwidth.outboundKBytesPerSecond", String.valueOf(props.outBw))
|
||||||
|
routerProps.setProperty("i2np.bandwidth.outboundBurstKBytesPerSecond", String.valueOf(props.outBw))
|
||||||
routerProps.setProperty("router.sharePercentage", String.valueOf(props.sharePercentage))
|
routerProps.setProperty("router.sharePercentage", String.valueOf(props.sharePercentage))
|
||||||
routerProps.setProperty("i2cp.disableInterface", "true")
|
routerProps.setProperty("i2cp.disableInterface", "true")
|
||||||
routerProps.setProperty("i2np.ntcp.nodelay", "true")
|
routerProps.setProperty("i2np.ntcp.nodelay", "true")
|
||||||
|
|
Loading…
Reference in New Issue