| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #if !defined(DART_IO_DISABLED) | 5 #if !defined(DART_IO_DISABLED) |
| 6 | 6 |
| 7 #include "platform/globals.h" | 7 #include "platform/globals.h" |
| 8 #if defined(HOST_OS_LINUX) | 8 #if defined(HOST_OS_LINUX) |
| 9 | 9 |
| 10 #include "bin/socket.h" | |
| 11 | |
| 12 #include <errno.h> // NOLINT | 10 #include <errno.h> // NOLINT |
| 11 #include <ifaddrs.h> // NOLINT |
| 12 #include <net/if.h> // NOLINT |
| 13 #include <netinet/tcp.h> // NOLINT |
| 14 #include <stdio.h> // NOLINT |
| 15 #include <stdlib.h> // NOLINT |
| 16 #include <string.h> // NOLINT |
| 17 #include <sys/stat.h> // NOLINT |
| 18 #include <unistd.h> // NOLINT |
| 13 | 19 |
| 14 #include "bin/fdutils.h" | 20 #include "bin/fdutils.h" |
| 21 #include "bin/file.h" |
| 22 #include "bin/socket.h" |
| 23 #include "bin/socket_base_linux.h" |
| 24 #include "bin/thread.h" |
| 15 #include "platform/signal_blocker.h" | 25 #include "platform/signal_blocker.h" |
| 16 | 26 |
| 17 namespace dart { | 27 namespace dart { |
| 18 namespace bin { | 28 namespace bin { |
| 19 | 29 |
| 20 Socket::Socket(intptr_t fd) | 30 Socket::Socket(intptr_t fd) |
| 21 : ReferenceCounted(), fd_(fd), port_(ILLEGAL_PORT) {} | 31 : ReferenceCounted(), fd_(fd), port_(ILLEGAL_PORT) {} |
| 22 | 32 |
| 23 | 33 |
| 24 void Socket::SetClosedFd() { | 34 void Socket::SetClosedFd() { |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 } | 197 } |
| 188 return socket; | 198 return socket; |
| 189 } | 199 } |
| 190 | 200 |
| 191 } // namespace bin | 201 } // namespace bin |
| 192 } // namespace dart | 202 } // namespace dart |
| 193 | 203 |
| 194 #endif // defined(HOST_OS_LINUX) | 204 #endif // defined(HOST_OS_LINUX) |
| 195 | 205 |
| 196 #endif // !defined(DART_IO_DISABLED) | 206 #endif // !defined(DART_IO_DISABLED) |
| OLD | NEW |