I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit d855c5de authored by zzz's avatar zzz
Browse files

* NetDB: Add more su3 checks

 * SU3File: Improve CLI help
parent 9827c485
No related branches found
No related tags found
No related merge requests found
......@@ -513,14 +513,16 @@ public class SU3File {
/** @since 0.9.9 */
private static String dumpTypes() {
StringBuilder buf = new StringBuilder(256);
buf.append("Available signature types:\n");
buf.append("Available signature types (-t):\n");
for (SigType t : EnumSet.allOf(SigType.class)) {
buf.append(" ").append(t).append("\t(code: ").append(t.getCode()).append(')');
if (t.getCode() == DEFAULT_SIG_CODE)
buf.append(" DEFAULT");
if (!t.isAvailable())
buf.append(" UNAVAILABLE");
buf.append('\n');
}
buf.append("Available content types:\n");
buf.append("Available content types (-c):\n");
for (ContentType t : EnumSet.allOf(ContentType.class)) {
buf.append(" ").append(t).append("\t(code: ").append(t.getCode()).append(')');
if (t == DEFAULT_CONTENT_TYPE)
......
......@@ -498,6 +498,8 @@ public class Reseeder {
name.equals(ourB64) ||
f.length() > 10*1024 ||
f.lastModified() < minTime ||
!name.startsWith(ROUTERINFO_PREFIX) ||
!name.endsWith(ROUTERINFO_SUFFIX) ||
!f.isFile()) {
if (_log.shouldLog(Log.WARN))
_log.warn("Skipping " + f);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment