123456789101112131415161718192021222324252627 |
- #ifndef TOOLS_ANDROID_COMMON_NET_H_
- #define TOOLS_ANDROID_COMMON_NET_H_
- #include <stddef.h>
- #include <string>
- namespace tools {
- int DisableNagle(int socket);
- int DeferAccept(int socket);
- std::string DumpBinary(const char* buffer, size_t length);
- }
- #endif
|