diff --git a/core/java/src/net/i2p/util/Addresses.java b/core/java/src/net/i2p/util/Addresses.java index a9c8e6804bfd0342c3eebaf2bc83f1f5230338bd..60662e937d7dd7bb8c4a4d0e837df899e489cad3 100644 --- a/core/java/src/net/i2p/util/Addresses.java +++ b/core/java/src/net/i2p/util/Addresses.java @@ -50,7 +50,8 @@ public abstract class Addresses { /** * @return a sorted array of all addresses - * @param whether to exclude IPV6 and local + * @param includeLocal whether to include local + * @param includeIPv6 whether to include IPV6 * @return an array of all addresses * @since 0.8.3 */ diff --git a/router/java/src/net/i2p/router/client/ClientManagerFacadeImpl.java b/router/java/src/net/i2p/router/client/ClientManagerFacadeImpl.java index 5fd0bbc28baf0c4a7326efb7539f3fa35448cb1d..e4b6b2a36d38edf3a2560bd1cedf83b401f96c3b 100644 --- a/router/java/src/net/i2p/router/client/ClientManagerFacadeImpl.java +++ b/router/java/src/net/i2p/router/client/ClientManagerFacadeImpl.java @@ -39,8 +39,10 @@ public class ClientManagerFacadeImpl extends ClientManagerFacade implements Inte private final static Log _log = new Log(ClientManagerFacadeImpl.class); private ClientManager _manager; private RouterContext _context; + /** note that this is different than the property the client side uses, i2cp.tcp.port */ public final static String PROP_CLIENT_PORT = "i2cp.port"; public final static int DEFAULT_PORT = 7654; + /** note that this is different than the property the client side uses, i2cp.tcp.host */ public final static String PROP_CLIENT_HOST = "i2cp.hostname"; public final static String DEFAULT_HOST = "127.0.0.1";