Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1123)

Unified Diff: net/tools/flip_server/flip_config.h

Issue 6332010: Memory leak fix, log file reopen, remote ip fix, connection idle timeout,... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/tools/flip_server/flip_in_mem_edsm_server.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/flip_server/flip_config.h
===================================================================
--- net/tools/flip_server/flip_config.h (revision 71892)
+++ net/tools/flip_server/flip_config.h (working copy)
@@ -136,6 +136,7 @@
bool wait_for_iface_;
int ssl_session_expiry_;
bool ssl_disable_compression_;
+ int idle_timeout_s_;
FlipConfig() :
server_think_time_in_s_(0),
@@ -143,7 +144,8 @@
forward_ip_header_enabled_(false),
wait_for_iface_(false),
ssl_session_expiry_(300),
- ssl_disable_compression_(false)
+ ssl_disable_compression_(false),
+ idle_timeout_s_(300)
{}
~FlipConfig() {}
« no previous file with comments | « no previous file | net/tools/flip_server/flip_in_mem_edsm_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698