Listen: eliminate listen_add_config_param()
This commit is contained in:
parent
a943f4063c
commit
0ec31b4aa4
@ -40,19 +40,6 @@
|
|||||||
|
|
||||||
int listen_port;
|
int listen_port;
|
||||||
|
|
||||||
/**
|
|
||||||
* Throws #std::runtime_error on error.
|
|
||||||
*/
|
|
||||||
static void
|
|
||||||
listen_add_config_param(ClientListener &listener,
|
|
||||||
unsigned int port,
|
|
||||||
const ConfigParam *param)
|
|
||||||
{
|
|
||||||
assert(param != nullptr);
|
|
||||||
|
|
||||||
ServerSocketAddGeneric(listener, param->value.c_str(), port);
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef ENABLE_SYSTEMD_DAEMON
|
#ifdef ENABLE_SYSTEMD_DAEMON
|
||||||
|
|
||||||
static bool
|
static bool
|
||||||
@ -86,7 +73,8 @@ listen_global_init(const ConfigData &config, ClientListener &listener)
|
|||||||
|
|
||||||
for (const auto ¶m : config.GetParamList(ConfigOption::BIND_TO_ADDRESS)) {
|
for (const auto ¶m : config.GetParamList(ConfigOption::BIND_TO_ADDRESS)) {
|
||||||
try {
|
try {
|
||||||
listen_add_config_param(listener, port, ¶m);
|
ServerSocketAddGeneric(listener, param.value.c_str(),
|
||||||
|
port);
|
||||||
} catch (...) {
|
} catch (...) {
|
||||||
std::throw_with_nested(FormatRuntimeError("Failed to listen on %s (line %i)",
|
std::throw_with_nested(FormatRuntimeError("Failed to listen on %s (line %i)",
|
||||||
param.value.c_str(),
|
param.value.c_str(),
|
||||||
|
Loading…
Reference in New Issue
Block a user