|
|
|
@ -148,11 +148,16 @@ namespace config {
@@ -148,11 +148,16 @@ namespace config {
|
|
|
|
|
"Enable or disable elgamal precomputation table") |
|
|
|
|
; |
|
|
|
|
|
|
|
|
|
options_description trust("Trust options"); |
|
|
|
|
trust.add_options() |
|
|
|
|
("trust.enabled", value<bool>()->default_value(false), "enable explicit trust options") |
|
|
|
|
("trust.family", value<std::string>()->default_value(""), "Router Familiy to trust for first hops") |
|
|
|
|
("trust.hidden", value<bool>()->default_value(false), "should we hide our router from other routers?"); |
|
|
|
|
options_description reseed("Reseed options"); |
|
|
|
|
reseed.add_options() |
|
|
|
|
("reseed.file", value<std::string>()->default_value(""), "Path to .su3 file") |
|
|
|
|
; |
|
|
|
|
|
|
|
|
|
options_description trust("Trust options"); |
|
|
|
|
trust.add_options() |
|
|
|
|
("trust.enabled", value<bool>()->default_value(false), "enable explicit trust options") |
|
|
|
|
("trust.family", value<std::string>()->default_value(""), "Router Familiy to trust for first hops") |
|
|
|
|
("trust.hidden", value<bool>()->default_value(false), "should we hide our router from other routers?"); |
|
|
|
|
|
|
|
|
|
m_OptionsDesc |
|
|
|
|
.add(general) |
|
|
|
@ -166,6 +171,7 @@ namespace config {
@@ -166,6 +171,7 @@ namespace config {
|
|
|
|
|
.add(i2pcontrol) |
|
|
|
|
.add(upnp) |
|
|
|
|
.add(precomputation) |
|
|
|
|
.add(reseed) |
|
|
|
|
.add(trust) |
|
|
|
|
; |
|
|
|
|
} |
|
|
|
|