forked from I2P_Developers/i2p.i2p
i2ptunnel: Disable shared clients (DSA), any server not
supporting EdDSA doesn't support LS2.
This commit is contained in:
@@ -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)
|
||||
|
@@ -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();
|
||||
|
@@ -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");
|
||||
|
Reference in New Issue
Block a user