1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef TOOLS_ANDROID_COMMON_NET_H_
6 #define TOOLS_ANDROID_COMMON_NET_H_
12 // DisableNagle can improve TCP transmission performance. Both Chrome net stack
13 // and adb tool use it.
14 int DisableNagle(int socket
);
16 // Wake up listener only when data arrive.
17 int DeferAccept(int socket
);
19 // Dumps a binary buffer into a string in a human-readable format.
20 std::string
DumpBinary(const char* buffer
, size_t length
);
24 #endif // TOOLS_ANDROID_COMMON_NET_H_