Changeset a7485ab
- Timestamp:
- Jul 21, 2013 8:17:42 PM (8 years ago)
- Branches:
- master
- Children:
- cc271de
- Parents:
- 7133736
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
core/java/src/net/i2p/client/I2PSessionImpl.java
r7133736 ra7485ab 310 310 } 311 311 String val = options.getProperty(key); 312 // not serializing (no limit) in router ctx 312 // Long strings MUST be removed, even in router context, 313 // as the session config properties must be serialized to be signed. 313 314 // fixme, bytes could still be over 255 (unlikely) 314 if ((!_context.isRouterContext()) && 315 (key.length() > 255 || val.length() > 255)) { 315 if (key.length() > 255 || val.length() > 255) { 316 316 if (_log.shouldLog(Log.WARN)) 317 317 _log.warn("Not passing on property [" -
router/java/src/net/i2p/router/RouterVersion.java
r7133736 ra7485ab 19 19 public final static String ID = "Monotone"; 20 20 public final static String VERSION = CoreVersion.VERSION; 21 public final static long BUILD = 7;21 public final static long BUILD = 8; 22 22 23 23 /** for example "-test" */
Note: See TracChangeset
for help on using the changeset viewer.