• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.
4 
5 #ifndef TOOLS_ANDROID_COMMON_NET_H_
6 #define TOOLS_ANDROID_COMMON_NET_H_
7 
8 #include <string>
9 
10 namespace tools {
11 
12 // DisableNagle can improve TCP transmission performance. Both Chrome net stack
13 // and adb tool use it.
14 int DisableNagle(int socket);
15 
16 // Wake up listener only when data arrive.
17 int DeferAccept(int socket);
18 
19 // Dumps a binary buffer into a string in a human-readable format.
20 std::string DumpBinary(const char* buffer, size_t length);
21 
22 }  // namespace tools
23 
24 #endif  // TOOLS_ANDROID_COMMON_NET_H_
25 
26