From 7f7e9239652bbb552bd5ea62d9702edfcf86528c Mon Sep 17 00:00:00 2001 From: "mbelshe@chromium.org" Date: Tue, 26 Oct 2010 18:29:29 +0000 Subject: Add experimental option for TCP FastOpen. Use chrome.exe --enable-tcp-fastopen BUG=none TEST=none yet Review URL: http://codereview.chromium.org/4039003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63913 0039d316-1c4b-4281-b951-d872f2087c98 --- net/socket/tcp_client_socket.cc | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 net/socket/tcp_client_socket.cc (limited to 'net/socket/tcp_client_socket.cc') diff --git a/net/socket/tcp_client_socket.cc b/net/socket/tcp_client_socket.cc new file mode 100644 index 0000000..d3d4e20 --- /dev/null +++ b/net/socket/tcp_client_socket.cc @@ -0,0 +1,19 @@ +// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "net/socket/tcp_client_socket.h" + +namespace net { + +static bool g_tcp_fastopen_enabled = false; + +void set_tcp_fastopen_enabled(bool value) { + g_tcp_fastopen_enabled = value; +} + +bool is_tcp_fastopen_enabled() { + return g_tcp_fastopen_enabled; +} + +} // namespace net -- cgit v1.1