|
@@ -470,16 +470,6 @@ std::vector<OptionHandler*> OptionHandlerFactory::createOptionHandlers()
|
|
|
op->addTag(TAG_ADVANCED);
|
|
|
handlers.push_back(op);
|
|
|
}
|
|
|
- {
|
|
|
- OptionHandler* op(new DefaultOptionHandler
|
|
|
- (PREF_MULTIPLE_INTERFACE,
|
|
|
- TEXT_MULTIPLE_INTERFACE,
|
|
|
- NO_DEFAULT_VALUE,
|
|
|
- "interface, IP address, hostname",
|
|
|
- OptionHandler::REQ_ARG));
|
|
|
- op->addTag(TAG_ADVANCED);
|
|
|
- handlers.push_back(op);
|
|
|
- }
|
|
|
{
|
|
|
OptionHandler* op(new DefaultOptionHandler
|
|
|
(PREF_LOG,
|
|
@@ -605,6 +595,16 @@ std::vector<OptionHandler*> OptionHandlerFactory::createOptionHandlers()
|
|
|
handlers.push_back(op);
|
|
|
}
|
|
|
#endif // ENABLE_SSL
|
|
|
+ {
|
|
|
+ OptionHandler* op(new DefaultOptionHandler
|
|
|
+ (PREF_MULTIPLE_INTERFACE,
|
|
|
+ TEXT_MULTIPLE_INTERFACE,
|
|
|
+ NO_DEFAULT_VALUE,
|
|
|
+ "interface, IP address, hostname",
|
|
|
+ OptionHandler::REQ_ARG));
|
|
|
+ op->addTag(TAG_ADVANCED);
|
|
|
+ handlers.push_back(op);
|
|
|
+ }
|
|
|
{
|
|
|
OptionHandler* op(new BooleanOptionHandler
|
|
|
(PREF_NO_CONF,
|