diff options
Diffstat (limited to 'server/server/config.h')
-rw-r--r-- | server/server/config.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/server/config.h b/server/server/config.h index 4c76bfe..8886239 100644 --- a/server/server/config.h +++ b/server/server/config.h @@ -49,7 +49,6 @@ public: const int check_interval(); const int debug(); const int dos_conn_count(); - const std::string& ls_host(); const std::string& bind_ip(); const std::string& log_path(); const std::string& dos_log_path(); @@ -57,7 +56,7 @@ private: struct cfg_data { int ban_time, conn_count, check_interval, debug, dos_conn_count, conn_time; - std::string ls_host, log_path, bind_ip, dos_log_path; + std::string log_path, bind_ip, dos_log_path; cfg_data() { ban_time = conn_time = 60; |