diff --git a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelClientBase.java b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelClientBase.java index ea84603083d86f3d23e251886ce5ae9a4112cc48..f84aa8575ac86e71f7bb81a02822810156ebc39d 100644 --- a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelClientBase.java +++ b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelClientBase.java @@ -307,9 +307,15 @@ public abstract class I2PTunnelClientBase extends I2PTunnelTask implements Runna if (_log.shouldLog(Log.INFO)) _log.info(tunnel.getClientOptions().getProperty("inbound.nickname") + ": Building a new socket manager since there is no other one"); socketManager = buildSocketManager(tunnel, pkf); + +/* + since we enabled ratchet by default, we're not compatible with ancient servers anyway. + I2PSession sub = addSubsession(tunnel); if (sub != null && _log.shouldLog(Log.WARN)) _log.warn("Added subsession " + sub); +*/ + } return socketManager; } @@ -319,7 +325,9 @@ public abstract class I2PTunnelClientBase extends I2PTunnelTask implements Runna * * @return subsession, or null if none was added * @since 0.9.20 + * @deprecated unused as of 0.9.49 */ + @Deprecated protected static synchronized I2PSession addSubsession(I2PTunnel tunnel) { I2PSession sess = socketManager.getSession(); if (sess.getMyDestination().getSigType() == SigType.DSA_SHA1) diff --git a/apps/i2ptunnel/jsp/index.jsp b/apps/i2ptunnel/jsp/index.jsp index c502628f4f03fffdf5c8aa1581b52aa6c49caba0..551ec0cc2ff25ffd29e3aa6a2a3ced4c3b5988cd 100644 --- a/apps/i2ptunnel/jsp/index.jsp +++ b/apps/i2ptunnel/jsp/index.jsp @@ -18,7 +18,7 @@ <div class="panel" id="overview"><h2><%=intl._t("Hidden Services Manager")%></h2><p> <%=intl._t("These are the local services provided by your router.")%> -<%=intl._t("By default, most of your client services (email, HTTP proxy, IRC) will share the same set of tunnels and be listed as \"Shared Clients\" and \"Shared Clients(DSA)\".")%> +<%=intl._t("By default, most of your client services (email, HTTP proxy, IRC) will share the same set of tunnels and be listed as \"Shared Clients\".")%> </p></div> <% boolean isInitialized = indexBean.isInitialized(); diff --git a/apps/routerconsole/java/strings/Strings.java b/apps/routerconsole/java/strings/Strings.java index 420338eed396aaf00322e1a22ac529a6a0285ff6..8fd6f802bbefa3e9d03b9d7aec123b0046868f59 100644 --- a/apps/routerconsole/java/strings/Strings.java +++ b/apps/routerconsole/java/strings/Strings.java @@ -34,7 +34,6 @@ class Dummy { // note that if the wording changes in i2ptunnel.config, we have to // keep the old string here as well for existing installs _t("shared clients"); - _t("shared clients (DSA)"); _t("IRC proxy"); _t("eepsite"); _t("I2P webserver");