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

Side by Side Diff: tools/android/common/net.h

Issue 9419020: fake_dns tool for Android (fixed DEPS). (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Try to remove references of fake_dns.gyp from all_android.gyp Created 8 years, 10 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 unified diff | Download patch
« no previous file with comments | « tools/android/common/adb_connection.cc ('k') | tools/android/common/net.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef TOOLS_ANDROID_COMMON_NET_H_ 5 #ifndef TOOLS_ANDROID_COMMON_NET_H_
6 #define TOOLS_ANDROID_COMMON_NET_H_ 6 #define TOOLS_ANDROID_COMMON_NET_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string>
10
9 namespace tools { 11 namespace tools {
10 12
11 // DisableNagle can improve TCP transmission performance. Both Chrome net stack 13 // DisableNagle can improve TCP transmission performance. Both Chrome net stack
12 // and adb tool use it. 14 // and adb tool use it.
13 int DisableNagle(int socket); 15 int DisableNagle(int socket);
14 16
15 // Wake up listener only when data arrive. 17 // Wake up listener only when data arrive.
16 int DeferAccept(int socket); 18 int DeferAccept(int socket);
17 19
20 // Dumps a binary buffer into a string in a human-readable format.
21 std::string DumpBinary(const char* buffer, size_t length);
22
18 } // namespace tools 23 } // namespace tools
19 24
20 #endif // TOOLS_ANDROID_COMMON_NET_H_ 25 #endif // TOOLS_ANDROID_COMMON_NET_H_
21 26
OLDNEW
« no previous file with comments | « tools/android/common/adb_connection.cc ('k') | tools/android/common/net.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698