forked from I2P_Developers/i2p.i2p
jump table tweak
This commit is contained in:
@@ -1183,8 +1183,8 @@ public class I2PTunnelHTTPClient extends I2PTunnelHTTPClientBase implements Runn
|
|||||||
}
|
}
|
||||||
public static final String DEFAULT_JUMP_SERVERS =
|
public static final String DEFAULT_JUMP_SERVERS =
|
||||||
"http://i2host.i2p/cgi-bin/i2hostjump?," +
|
"http://i2host.i2p/cgi-bin/i2hostjump?," +
|
||||||
"http://stats.i2p/cgi-bin/jump.cgi?a=," +
|
"http://stats.i2p/cgi-bin/jump.cgi?a=";
|
||||||
"http://i2jump.i2p/";
|
//"http://i2jump.i2p/";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param jumpServers comma- or space-separated list, or null
|
* @param jumpServers comma- or space-separated list, or null
|
||||||
@@ -1242,8 +1242,8 @@ public class I2PTunnelHTTPClient extends I2PTunnelHTTPClientBase implements Runn
|
|||||||
out.write(jurl.getBytes());
|
out.write(jurl.getBytes());
|
||||||
out.write(uri.getBytes());
|
out.write(uri.getBytes());
|
||||||
out.write("\">".getBytes());
|
out.write("\">".getBytes());
|
||||||
out.write(jurl.substring(7).getBytes());
|
// Translators: parameter is a host name
|
||||||
out.write(uri.getBytes());
|
out.write(_("{0} jump service", jumphost).getBytes());
|
||||||
out.write("</a>\n".getBytes());
|
out.write("</a>\n".getBytes());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
17
history.txt
17
history.txt
@@ -1,3 +1,20 @@
|
|||||||
|
2012-06-15 zzz
|
||||||
|
* I2PSocketEepGet: Use specified port
|
||||||
|
* I2PTunnel:
|
||||||
|
- Don't strip port from an I2P URL
|
||||||
|
- More client options cleanups
|
||||||
|
- Options changes now propagate to running
|
||||||
|
socket managers and sessions, and through to the router
|
||||||
|
- Better parsing of jump server URLs
|
||||||
|
* NetDB: Only publish stats every so often, to improve
|
||||||
|
anonymity while preserving the ability to monitor
|
||||||
|
the network (effective next release)
|
||||||
|
* SocketManager:
|
||||||
|
- Simplify factory, use 4-arg constructor,
|
||||||
|
make fields final, deprecate 0-arg constructor
|
||||||
|
- Improve how options are updated
|
||||||
|
- Javadocs
|
||||||
|
|
||||||
2012-06-13 zzz
|
2012-06-13 zzz
|
||||||
* I2PSocketEepGet: Set port to 80
|
* I2PSocketEepGet: Set port to 80
|
||||||
* I2PTunnel:
|
* I2PTunnel:
|
||||||
|
@@ -18,7 +18,7 @@ public class RouterVersion {
|
|||||||
/** deprecated */
|
/** deprecated */
|
||||||
public final static String ID = "Monotone";
|
public final static String ID = "Monotone";
|
||||||
public final static String VERSION = CoreVersion.VERSION;
|
public final static String VERSION = CoreVersion.VERSION;
|
||||||
public final static long BUILD = 14;
|
public final static long BUILD = 15;
|
||||||
|
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "";
|
public final static String EXTRA = "";
|
||||||
|
Reference in New Issue
Block a user