mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
* Config.cpp : fix wrong group for options & code style
This commit is contained in:
@@ -179,7 +179,7 @@ namespace config {
|
|||||||
;
|
;
|
||||||
|
|
||||||
options_description i2cp("I2CP options");
|
options_description i2cp("I2CP options");
|
||||||
bob.add_options()
|
i2cp.add_options()
|
||||||
("i2cp.enabled", value<bool>()->default_value(false), "Enable or disable I2CP")
|
("i2cp.enabled", value<bool>()->default_value(false), "Enable or disable I2CP")
|
||||||
("i2cp.address", value<std::string>()->default_value("127.0.0.1"), "I2CP listen address")
|
("i2cp.address", value<std::string>()->default_value("127.0.0.1"), "I2CP listen address")
|
||||||
("i2cp.port", value<uint16_t>()->default_value(7654), "I2CP listen port")
|
("i2cp.port", value<uint16_t>()->default_value(7654), "I2CP listen port")
|
||||||
@@ -208,7 +208,6 @@ namespace config {
|
|||||||
|
|
||||||
m_OptionsDesc
|
m_OptionsDesc
|
||||||
.add(general)
|
.add(general)
|
||||||
.add(limits)
|
|
||||||
.add(httpserver)
|
.add(httpserver)
|
||||||
.add(httpproxy)
|
.add(httpproxy)
|
||||||
.add(socksproxy)
|
.add(socksproxy)
|
||||||
@@ -217,6 +216,7 @@ namespace config {
|
|||||||
.add(i2cp)
|
.add(i2cp)
|
||||||
.add(i2pcontrol)
|
.add(i2pcontrol)
|
||||||
.add(precomputation)
|
.add(precomputation)
|
||||||
|
.add(limits)
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user