Reseed: Move ReseedBundler from console to router (ticket #2203)

This commit is contained in:
zzz
2018-04-04 16:37:32 +00:00
parent d11c01cc82
commit 94c7d840c2
4 changed files with 9 additions and 4 deletions

View File

@ -3,6 +3,7 @@ package net.i2p.router.web.helpers;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
import net.i2p.router.networkdb.reseed.ReseedBundler;
import net.i2p.router.web.HelperBase; import net.i2p.router.web.HelperBase;
/** /**

View File

@ -1,3 +1,6 @@
2018-04-04 zzz
* Reseed: Move ReseedBundler from console to router (ticket #2203)
2018-04-03 zzz 2018-04-03 zzz
* Stats: Enable per-tunnel bw stats by default (tickets #2106, #2145) * Stats: Enable per-tunnel bw stats by default (tickets #2106, #2145)

View File

@ -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 = 23; public final static long BUILD = 24;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = "-rc"; public final static String EXTRA = "-rc";

View File

@ -1,4 +1,4 @@
package net.i2p.router.web.helpers; package net.i2p.router.networkdb.reseed;
/* /*
* free (adj.): unencumbered; not under the control of others * free (adj.): unencumbered; not under the control of others
* Written by jrandom in 2003 and released into the public domain * Written by jrandom in 2003 and released into the public domain
@ -36,10 +36,11 @@ import net.i2p.router.RouterContext;
* *
* Caller must delete file when done. * Caller must delete file when done.
* *
* @since 0.9.19 modified from BundleRouterInfos in installer/tools * @since 0.9.19 modified from BundleRouterInfos in installer/tools,
* moved from routerconsole to net.i2p.router.networkdb.reseed in 0.9.34
* *
*/ */
class ReseedBundler { public class ReseedBundler {
private final RouterContext _context; private final RouterContext _context;
private final static String ROUTERINFO_PREFIX = "routerInfo-"; private final static String ROUTERINFO_PREFIX = "routerInfo-";