Changeset ca440a50
- Timestamp:
- Jan 7, 2017 1:55:36 PM (4 years ago)
- Branches:
- master
- Children:
- 5dd6f2d
- Parents:
- fc0ddb0
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/i2ptunnel/java/src/net/i2p/i2ptunnel/localServer/LocalHTTPServer.java
rfc0ddb0 rca440a50 128 128 // Do the add and redirect. 129 129 if (targetRequest.equals("/add")) { 130 if (query == null) { 131 out.write(ERR_ADD.getBytes("UTF-8")); 132 return; 133 } 130 134 Map<String, String> opts = new HashMap<String, String>(8); 131 135 // this only works if all keys are followed by =value -
history.txt
rfc0ddb0 rca440a50 1 2017-01-07 zzz 2 * i2ptunnel: Fix NPE on proxy.i2p/add when no params 3 4 2017-01-06 zzz 5 * EepGet: Recognize more status codes 6 7 2017-01-04 zzz 8 * Crypto: Enforce correct seed and hash lengths in EdDSAPrivateKeySpec 9 * Data: No longer sort addresses in an RI by SHA256 10 * Router: Replace random tunnel keys when rekeying 11 12 2016-12-24 zzz 13 * Utils: Add RKG command line tool 14 15 2016-12-23 zzz 16 * Console: Add Referrer-Policy header 17 1 18 2016-12-22 zzz 2 19 * Blocklist: … … 4 21 - Check blocklist when loading RIs 5 22 - Ensure blocklist is initialized before netdb 23 * Clock: Fix duplicate notification of clock shift listeners 6 24 * Console: Limit age of news entries displayed 7 25 * Update: Fix JVM crash and i2p.jar corruption when updating from -1 -
router/java/src/net/i2p/router/RouterVersion.java
rfc0ddb0 rca440a50 19 19 public final static String ID = "Monotone"; 20 20 public final static String VERSION = CoreVersion.VERSION; 21 public final static long BUILD = 2;21 public final static long BUILD = 3; 22 22 23 23 /** for example "-test" */
Note: See TracChangeset
for help on using the changeset viewer.