Skip to content

Commit

Permalink
Update configuration.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
1 parent 2874d8f commit 3912c69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proxy/src/configuration.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Configuration {
bpo::options_description configurations("Configurations");
auto add_configuration_option = configurations.add_options();
add_configuration_option("tls-proxy-port",
bpo::value<uint16_t>()->default_value(443),
bpo::value<std::vector<int>>()->multitoken()->default_value(std::vector<int>{443}),
"tls proxy port");
add_configuration_option("listen-port",
bpo::value<uint16_t>()->default_value(443),
Expand Down Expand Up @@ -80,4 +80,4 @@ class Configuration {

} // namespace hood_proxy

#endif // HOOD_PROXY_CONFIGURATION_H_
#endif // HOOD_PROXY_CONFIGURATION_H_

0 comments on commit 3912c69

Please sign in to comment.