identt
ServerConfig.hpp
Go to the documentation of this file.
1 
33 #ifndef _IDENTT_HTTP_SERVER_CONFIG_HPP_
34 #define _IDENTT_HTTP_SERVER_CONFIG_HPP_
35 
36 #include <string>
37 
38 namespace identt {
39 namespace http {
40 
41 struct ServerConfig {
42  ServerConfig(std::string address, unsigned short port):
43  address(address),port(port), reuse_address(true) {}
44  unsigned short port;
45  std::string address;
46  bool reuse_address;
47 };
48 
49 } // namespace http
50 } // namespace identt
51 #endif /* _IDENTT_HTTP_SERVER_CONFIG_HPP_ */
Definition: CryptoBase.hpp:49
Definition: ServerConfig.hpp:41