Changeset 307a8239
- Timestamp:
- May 29, 2019 3:51:04 PM (22 months ago)
- Branches:
- master
- Children:
- dca04f7f
- Parents:
- e189236
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
core/java/src/net/i2p/data/BlindData.java
re189236 r307a8239 256 256 if (_secret != null) 257 257 buf.append("\n\tSecret : \"").append(_secret).append('"'); 258 else 259 buf.append("\n\tSecret Required : ").append(_secretRequired); 258 260 buf.append("\n\tAuth Type : "); 259 261 if (_authType > 0) … … 263 265 if (_authKey != null) 264 266 buf.append("\n\tAuth Key : ").append(_authKey); 267 else 268 buf.append("\n\tAuth Required : ").append(_authRequired); 265 269 if (_dest != null) 266 buf.append("\n\tDestination : ").append(_dest);267 else 268 buf.append("\n\tDestination : unknown");270 buf.append("\n\tDestination : ").append(_dest); 271 else 272 buf.append("\n\tDestination : unknown"); 269 273 buf.append("\n\tB32 : ").append(toBase32()); 270 274 buf.append(']'); -
router/java/src/net/i2p/router/client/LookupDestJob.java
re189236 r307a8239 100 100 h = bd.getBlindedHash(); 101 101 if (_log.shouldDebug()) 102 _log.debug("Converting name lookup " + name + " to blinded " + h); 102 _log.debug("Converting name lookup " + name + " to blinded " + h + 103 " using BlindData:\n" + bd); 103 104 name = null; 104 105 } catch (RuntimeException re) {
Note: See TracChangeset
for help on using the changeset viewer.