Add option to specify HTTP server listen address/interface.
This commit is contained in:
committed by
craig.p.drummond@gmail.com
parent
dcc47d1b57
commit
fc7f4ab98e
@@ -35,6 +35,7 @@ void HttpServerSettings::load()
|
||||
enableHttp->setChecked(Settings::self()->enableHttp());
|
||||
alwaysUseHttp->setChecked(Settings::self()->alwaysUseHttp());
|
||||
httpPort->setValue(Settings::self()->httpPort());
|
||||
httpAddress->setText(Settings::self()->httpAddress());
|
||||
}
|
||||
|
||||
void HttpServerSettings::save()
|
||||
@@ -42,4 +43,5 @@ void HttpServerSettings::save()
|
||||
Settings::self()->saveEnableHttp(enableHttp->isChecked());
|
||||
Settings::self()->saveAlwaysUseHttp(alwaysUseHttp->isChecked());
|
||||
Settings::self()->saveHttpPort(httpPort->value());
|
||||
Settings::self()->saveHttpAddress(httpAddress->text());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user