Hugo Benichi | 7b314e1 | 2018-01-15 21:54:00 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2018 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #define LOG_TAG "TcpSocketMonitor" |
| 18 | |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 19 | #include <iomanip> |
| 20 | #include <thread> |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 21 | #include <vector> |
Hugo Benichi | 7b314e1 | 2018-01-15 21:54:00 +0900 | [diff] [blame] | 22 | |
| 23 | #include <arpa/inet.h> |
| 24 | #include <netinet/tcp.h> |
| 25 | #include <linux/tcp.h> |
| 26 | |
Hugo Benichi | 8c39767 | 2018-01-22 22:06:15 +0900 | [diff] [blame] | 27 | #include "Controllers.h" |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 28 | #include "DumpWriter.h" |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 29 | #include "SockDiag.h" |
| 30 | #include "TcpSocketMonitor.h" |
| 31 | |
Hugo Benichi | 7b314e1 | 2018-01-15 21:54:00 +0900 | [diff] [blame] | 32 | namespace android { |
| 33 | namespace net { |
| 34 | |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 35 | using std::chrono::duration_cast; |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 36 | using std::chrono::steady_clock; |
| 37 | |
Hugo Benichi | 7b314e1 | 2018-01-15 21:54:00 +0900 | [diff] [blame] | 38 | constexpr const char* getTcpStateName(int t) { |
| 39 | switch (t) { |
| 40 | case TCP_ESTABLISHED: |
| 41 | return "ESTABLISHED"; |
| 42 | case TCP_SYN_SENT: |
| 43 | return "SYN-SENT"; |
| 44 | case TCP_SYN_RECV: |
| 45 | return "SYN-RECV"; |
| 46 | case TCP_FIN_WAIT1: |
| 47 | return "FIN-WAIT-1"; |
| 48 | case TCP_FIN_WAIT2: |
| 49 | return "FIN-WAIT-2"; |
| 50 | case TCP_TIME_WAIT: |
| 51 | return "TIME-WAIT"; |
| 52 | case TCP_CLOSE: |
| 53 | return "CLOSE"; |
| 54 | case TCP_CLOSE_WAIT: |
| 55 | return "CLOSE-WAIT"; |
| 56 | case TCP_LAST_ACK: |
| 57 | return "LAST-ACK"; |
| 58 | case TCP_LISTEN: |
| 59 | return "LISTEN"; |
| 60 | case TCP_CLOSING: |
| 61 | return "CLOSING"; |
| 62 | default: |
| 63 | return "UNKNOWN"; |
| 64 | } |
| 65 | } |
| 66 | |
Hugo Benichi | 54bfc7c | 2018-01-23 14:16:52 +0900 | [diff] [blame] | 67 | // Helper macro for reading fields into struct tcp_info and handling different struct tcp_info |
| 68 | // versions in the kernel. |
Hugo Benichi | 321b22c | 2018-01-30 11:37:27 +0900 | [diff] [blame] | 69 | #define TCPINFO_GET(ptr, fld, len, zero) \ |
| 70 | (((ptr) != nullptr && (offsetof(struct tcp_info, fld) + sizeof((ptr)->fld)) < len) ? \ |
| 71 | (ptr)->fld : zero) |
Hugo Benichi | 54bfc7c | 2018-01-23 14:16:52 +0900 | [diff] [blame] | 72 | |
Hugo Benichi | cbaa36b | 2018-01-17 12:11:43 +0900 | [diff] [blame] | 73 | static void tcpInfoPrint(DumpWriter &dw, Fwmark mark, const struct inet_diag_msg *sockinfo, |
Hugo Benichi | 54bfc7c | 2018-01-23 14:16:52 +0900 | [diff] [blame] | 74 | const struct tcp_info *tcpinfo, uint32_t tcpinfoLen) { |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 75 | char saddr[INET6_ADDRSTRLEN] = {}; |
| 76 | char daddr[INET6_ADDRSTRLEN] = {}; |
| 77 | inet_ntop(sockinfo->idiag_family, &(sockinfo->id.idiag_src), saddr, sizeof(saddr)); |
| 78 | inet_ntop(sockinfo->idiag_family, &(sockinfo->id.idiag_dst), daddr, sizeof(daddr)); |
Hugo Benichi | 7b314e1 | 2018-01-15 21:54:00 +0900 | [diff] [blame] | 79 | |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 80 | dw.println( |
| 81 | "netId=%d uid=%u mark=0x%x saddr=%s daddr=%s sport=%u dport=%u tcp_state=%s(%u) " |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 82 | "rtt=%gms sent=%u lost=%u", |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 83 | mark.netId, |
| 84 | sockinfo->idiag_uid, |
| 85 | mark.intValue, |
| 86 | saddr, |
| 87 | daddr, |
| 88 | ntohs(sockinfo->id.idiag_sport), |
| 89 | ntohs(sockinfo->id.idiag_dport), |
| 90 | getTcpStateName(sockinfo->idiag_state), sockinfo->idiag_state, |
Hugo Benichi | 321b22c | 2018-01-30 11:37:27 +0900 | [diff] [blame] | 91 | TCPINFO_GET(tcpinfo, tcpi_rtt, tcpinfoLen, 0) / 1000.0, |
| 92 | TCPINFO_GET(tcpinfo, tcpi_segs_out, tcpinfoLen, 0), |
| 93 | TCPINFO_GET(tcpinfo, tcpi_lost, tcpinfoLen, 0)); |
Hugo Benichi | 7b314e1 | 2018-01-15 21:54:00 +0900 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | const String16 TcpSocketMonitor::DUMP_KEYWORD = String16("tcp_socket_info"); |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 97 | const milliseconds TcpSocketMonitor::kDefaultPollingInterval = milliseconds(30000); |
Hugo Benichi | 7b314e1 | 2018-01-15 21:54:00 +0900 | [diff] [blame] | 98 | |
| 99 | void TcpSocketMonitor::dump(DumpWriter& dw) { |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 100 | std::lock_guard<std::mutex> guard(mLock); |
| 101 | |
Hugo Benichi | 7b314e1 | 2018-01-15 21:54:00 +0900 | [diff] [blame] | 102 | dw.println("TcpSocketMonitor"); |
Erik Kline | b31fd69 | 2018-06-06 20:50:11 +0900 | [diff] [blame] | 103 | ScopedIndent tcpSocketMonitorDetails(dw); |
Hugo Benichi | 7b314e1 | 2018-01-15 21:54:00 +0900 | [diff] [blame] | 104 | |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 105 | const auto now = steady_clock::now(); |
| 106 | const auto d = duration_cast<milliseconds>(now - mLastPoll); |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 107 | dw.println("running=%d, suspended=%d, last poll %lld ms ago", |
| 108 | mIsRunning, mIsSuspended, d.count()); |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 109 | |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 110 | if (!mNetworkStats.empty()) { |
| 111 | dw.blankline(); |
| 112 | dw.println("Network stats:"); |
Erik Kline | b31fd69 | 2018-06-06 20:50:11 +0900 | [diff] [blame] | 113 | for (const auto& stats : mNetworkStats) { |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 114 | if (stats.second.nSockets == 0) { |
| 115 | continue; |
| 116 | } |
Erik Kline | b31fd69 | 2018-06-06 20:50:11 +0900 | [diff] [blame] | 117 | dw.println("netId=%d sent=%d lost=%d rttMs=%gms sentAckDiff=%dms", |
| 118 | stats.first, |
| 119 | stats.second.sent, |
| 120 | stats.second.lost, |
| 121 | stats.second.rttUs / 1000.0 / stats.second.nSockets, |
| 122 | stats.second.sentAckDiffMs / stats.second.nSockets); |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 123 | } |
Hugo Benichi | 7b314e1 | 2018-01-15 21:54:00 +0900 | [diff] [blame] | 124 | } |
| 125 | |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 126 | if (!mSocketEntries.empty()) { |
| 127 | dw.blankline(); |
| 128 | dw.println("Socket entries:"); |
Erik Kline | b31fd69 | 2018-06-06 20:50:11 +0900 | [diff] [blame] | 129 | for (const auto& stats : mSocketEntries) { |
| 130 | dw.println("netId=%u uid=%u cookie=%llu", |
| 131 | stats.second.mark.netId, stats.second.uid, (unsigned long long) stats.first); |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 132 | } |
| 133 | } |
Hugo Benichi | 7b314e1 | 2018-01-15 21:54:00 +0900 | [diff] [blame] | 134 | |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 135 | SockDiag sd; |
| 136 | if (sd.open()) { |
| 137 | dw.blankline(); |
| 138 | dw.println("Current socket dump:"); |
| 139 | const auto tcpInfoReader = [&dw](Fwmark mark, const struct inet_diag_msg *sockinfo, |
| 140 | const struct tcp_info *tcpinfo, uint32_t tcpinfoLen) { |
| 141 | tcpInfoPrint(dw, mark, sockinfo, tcpinfo, tcpinfoLen); |
| 142 | }; |
| 143 | |
| 144 | if (int ret = sd.getLiveTcpInfos(tcpInfoReader)) { |
| 145 | ALOGE("Failed to dump TCP socket info: %s", strerror(-ret)); |
| 146 | } |
| 147 | } else { |
| 148 | ALOGE("Error opening sock diag for dumping TCP socket info"); |
Hugo Benichi | 7b314e1 | 2018-01-15 21:54:00 +0900 | [diff] [blame] | 149 | } |
Hugo Benichi | 7b314e1 | 2018-01-15 21:54:00 +0900 | [diff] [blame] | 150 | } |
| 151 | |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 152 | void TcpSocketMonitor::setPollingInterval(milliseconds nextSleepDurationMs) { |
| 153 | std::lock_guard<std::mutex> guard(mLock); |
| 154 | |
| 155 | mNextSleepDurationMs = nextSleepDurationMs; |
| 156 | |
| 157 | ALOGD("tcpinfo polling interval set to %lld ms", mNextSleepDurationMs.count()); |
| 158 | } |
| 159 | |
| 160 | void TcpSocketMonitor::resumePolling() { |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 161 | bool wasSuspended; |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 162 | { |
| 163 | std::lock_guard<std::mutex> guard(mLock); |
| 164 | |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 165 | wasSuspended = mIsSuspended; |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 166 | mIsSuspended = false; |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 167 | ALOGD("resuming tcpinfo polling (interval=%lldms)", mNextSleepDurationMs.count()); |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 168 | } |
| 169 | |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 170 | if (wasSuspended) { |
| 171 | mCv.notify_all(); |
| 172 | } |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | void TcpSocketMonitor::suspendPolling() { |
| 176 | std::lock_guard<std::mutex> guard(mLock); |
| 177 | |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 178 | bool wasSuspended = mIsSuspended; |
| 179 | mIsSuspended = true; |
| 180 | ALOGD("suspending tcpinfo polling"); |
| 181 | |
| 182 | if (!wasSuspended) { |
| 183 | mSocketEntries.clear(); |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 184 | } |
| 185 | } |
| 186 | |
| 187 | void TcpSocketMonitor::poll() { |
| 188 | std::lock_guard<std::mutex> guard(mLock); |
| 189 | |
| 190 | if (mIsSuspended) { |
| 191 | return; |
| 192 | } |
| 193 | |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 194 | SockDiag sd; |
| 195 | if (!sd.open()) { |
| 196 | ALOGE("Error opening sock diag for polling TCP socket info"); |
| 197 | return; |
| 198 | } |
| 199 | |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 200 | const auto now = steady_clock::now(); |
| 201 | const auto tcpInfoReader = [this, now](Fwmark mark, const struct inet_diag_msg *sockinfo, |
| 202 | const struct tcp_info *tcpinfo, |
| 203 | uint32_t tcpinfoLen) NO_THREAD_SAFETY_ANALYSIS { |
Hugo Benichi | 54bfc7c | 2018-01-23 14:16:52 +0900 | [diff] [blame] | 204 | if (sockinfo == nullptr || tcpinfo == nullptr || tcpinfoLen == 0 || mark.intValue == 0) { |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 205 | return; |
| 206 | } |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 207 | updateSocketStats(now, mark, sockinfo, tcpinfo, tcpinfoLen); |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 208 | }; |
| 209 | |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 210 | // Reset mNetworkStats |
| 211 | mNetworkStats.clear(); |
| 212 | |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 213 | if (int ret = sd.getLiveTcpInfos(tcpInfoReader)) { |
| 214 | ALOGE("Failed to poll TCP socket info: %s", strerror(-ret)); |
| 215 | return; |
| 216 | } |
| 217 | |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 218 | // Remove any SocketEntry not updated |
| 219 | for (auto it = mSocketEntries.cbegin(); it != mSocketEntries.cend();) { |
| 220 | if (it->second.lastUpdate < now) { |
| 221 | it = mSocketEntries.erase(it); |
| 222 | } else { |
| 223 | it++; |
| 224 | } |
| 225 | } |
Hugo Benichi | 8c39767 | 2018-01-22 22:06:15 +0900 | [diff] [blame] | 226 | |
| 227 | const auto listener = gCtls->eventReporter.getNetdEventListener(); |
| 228 | if (listener != nullptr) { |
| 229 | std::vector<int> netIds; |
| 230 | std::vector<int> sentPackets; |
| 231 | std::vector<int> lostPackets; |
| 232 | std::vector<int> rtts; |
| 233 | std::vector<int> sentAckDiffs; |
| 234 | for (auto const& stats : mNetworkStats) { |
| 235 | int32_t nSockets = stats.second.nSockets; |
| 236 | if (nSockets == 0) { |
| 237 | continue; |
| 238 | } |
| 239 | netIds.push_back(stats.first); |
| 240 | sentPackets.push_back(stats.second.sent); |
| 241 | lostPackets.push_back(stats.second.lost); |
| 242 | rtts.push_back(stats.second.rttUs / nSockets); |
| 243 | sentAckDiffs.push_back(stats.second.sentAckDiffMs / nSockets); |
| 244 | } |
| 245 | listener->onTcpSocketStatsEvent(netIds, sentPackets, lostPackets, rtts, sentAckDiffs); |
| 246 | } |
| 247 | |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 248 | mLastPoll = now; |
| 249 | } |
| 250 | |
| 251 | void TcpSocketMonitor::waitForNextPoll() { |
| 252 | bool isSuspended; |
| 253 | milliseconds nextSleepDurationMs; |
| 254 | { |
| 255 | std::lock_guard<std::mutex> guard(mLock); |
| 256 | isSuspended = mIsSuspended; |
| 257 | nextSleepDurationMs= mNextSleepDurationMs; |
| 258 | } |
| 259 | |
| 260 | std::unique_lock<std::mutex> ul(mLock); |
| 261 | if (isSuspended) { |
| 262 | mCv.wait(ul); |
| 263 | } else { |
| 264 | mCv.wait_for(ul, nextSleepDurationMs); |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | bool TcpSocketMonitor::isRunning() { |
| 269 | std::lock_guard<std::mutex> guard(mLock); |
| 270 | return mIsRunning; |
| 271 | } |
| 272 | |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 273 | void TcpSocketMonitor::updateSocketStats(time_point now, Fwmark mark, |
| 274 | const struct inet_diag_msg *sockinfo, |
| 275 | const struct tcp_info *tcpinfo, |
| 276 | uint32_t tcpinfoLen) NO_THREAD_SAFETY_ANALYSIS { |
Hugo Benichi | 321b22c | 2018-01-30 11:37:27 +0900 | [diff] [blame] | 277 | int32_t lastAck = TCPINFO_GET(tcpinfo, tcpi_last_ack_recv, tcpinfoLen, 0); |
| 278 | int32_t lastSent = TCPINFO_GET(tcpinfo, tcpi_last_data_sent, tcpinfoLen, 0); |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 279 | TcpStats diff = { |
Hugo Benichi | 321b22c | 2018-01-30 11:37:27 +0900 | [diff] [blame] | 280 | .sent = TCPINFO_GET(tcpinfo, tcpi_segs_out, tcpinfoLen, 0), |
| 281 | .lost = TCPINFO_GET(tcpinfo, tcpi_lost, tcpinfoLen, 0), |
| 282 | .rttUs = TCPINFO_GET(tcpinfo, tcpi_rtt, tcpinfoLen, 0), |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 283 | .sentAckDiffMs = lastAck - lastSent, |
| 284 | .nSockets = 1, |
| 285 | }; |
| 286 | |
| 287 | { |
| 288 | // Update socket stats with the newest entry, computing the diff w.r.t the previous entry. |
| 289 | const uint64_t cookie = (static_cast<uint64_t>(sockinfo->id.idiag_cookie[0]) << 32) |
| 290 | | static_cast<uint64_t>(sockinfo->id.idiag_cookie[1]); |
| 291 | const SocketEntry previous = mSocketEntries[cookie]; |
| 292 | mSocketEntries[cookie] = { |
| 293 | .sent = diff.sent, |
| 294 | .lost = diff.lost, |
| 295 | .lastUpdate = now, |
| 296 | .mark = mark, |
| 297 | .uid = sockinfo->idiag_uid, |
| 298 | }; |
| 299 | |
| 300 | diff.sent -= previous.sent; |
| 301 | diff.lost -= previous.lost; |
| 302 | } |
| 303 | |
| 304 | { |
| 305 | // Aggregate the diff per network id. |
| 306 | auto& stats = mNetworkStats[mark.netId]; |
| 307 | stats.sent += diff.sent; |
| 308 | stats.lost += diff.lost; |
| 309 | stats.rttUs += diff.rttUs; |
| 310 | stats.sentAckDiffMs += diff.sentAckDiffMs; |
| 311 | stats.nSockets += diff.nSockets; |
| 312 | } |
| 313 | } |
| 314 | |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 315 | TcpSocketMonitor::TcpSocketMonitor() { |
| 316 | std::lock_guard<std::mutex> guard(mLock); |
| 317 | |
| 318 | mNextSleepDurationMs = kDefaultPollingInterval; |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 319 | mIsRunning = true; |
Hugo Benichi | 4596d2f | 2018-01-19 13:36:29 +0900 | [diff] [blame] | 320 | mIsSuspended = true; |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 321 | mPollingThread = std::thread([this] { |
Lorenzo Colitti | 15fc2d3 | 2018-01-26 10:07:20 +0900 | [diff] [blame] | 322 | (void) this; |
Hugo Benichi | a9e3c5d | 2018-01-18 10:33:22 +0900 | [diff] [blame] | 323 | while (isRunning()) { |
| 324 | poll(); |
| 325 | waitForNextPoll(); |
| 326 | } |
| 327 | }); |
| 328 | } |
| 329 | |
| 330 | TcpSocketMonitor::~TcpSocketMonitor() { |
| 331 | { |
| 332 | std::lock_guard<std::mutex> guard(mLock); |
| 333 | mIsRunning = false; |
| 334 | mIsSuspended = true; |
| 335 | } |
| 336 | mCv.notify_all(); |
| 337 | mPollingThread.join(); |
| 338 | } |
| 339 | |
Hugo Benichi | 7b314e1 | 2018-01-15 21:54:00 +0900 | [diff] [blame] | 340 | } // namespace net |
| 341 | } // namespace android |