mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
* Config.cpp : fix wrong group for options & code style
This commit is contained in:
parent
025eec1782
commit
f62d25fa5f
1 changed files with 6 additions and 6 deletions
|
@ -179,7 +179,7 @@ namespace config {
|
|||
;
|
||||
|
||||
options_description i2cp("I2CP options");
|
||||
bob.add_options()
|
||||
i2cp.add_options()
|
||||
("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.port", value<uint16_t>()->default_value(7654), "I2CP listen port")
|
||||
|
@ -208,7 +208,6 @@ namespace config {
|
|||
|
||||
m_OptionsDesc
|
||||
.add(general)
|
||||
.add(limits)
|
||||
.add(httpserver)
|
||||
.add(httpproxy)
|
||||
.add(socksproxy)
|
||||
|
@ -217,6 +216,7 @@ namespace config {
|
|||
.add(i2cp)
|
||||
.add(i2pcontrol)
|
||||
.add(precomputation)
|
||||
.add(limits)
|
||||
;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue