// Copyright (c) 2012 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 "tools/android/common/net.h" #include #include #include #include namespace tools { int DisableNagle(int socket) { int on = 1; return setsockopt(socket, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on)); } int DeferAccept(int socket) { int on = 1; return setsockopt(socket, IPPROTO_TCP, TCP_DEFER_ACCEPT, &on, sizeof(on)); } } // namespace tools