forked from I2P_Developers/i2p.i2p
Reseed: Move ReseedBundler from console to router (ticket #2203)
This commit is contained in:
@ -3,6 +3,7 @@ package net.i2p.router.web.helpers;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
|
||||
import net.i2p.router.networkdb.reseed.ReseedBundler;
|
||||
import net.i2p.router.web.HelperBase;
|
||||
|
||||
/**
|
||||
|
@ -1,3 +1,6 @@
|
||||
2018-04-04 zzz
|
||||
* Reseed: Move ReseedBundler from console to router (ticket #2203)
|
||||
|
||||
2018-04-03 zzz
|
||||
* Stats: Enable per-tunnel bw stats by default (tickets #2106, #2145)
|
||||
|
||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 23;
|
||||
public final static long BUILD = 24;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "-rc";
|
||||
|
@ -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
|
||||
* 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.
|
||||
*
|
||||
* @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 static String ROUTERINFO_PREFIX = "routerInfo-";
|
Reference in New Issue
Block a user