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

Side by Side Diff: runtime/bin/socket_macos.cc

Issue 2803543006: Added synchronous socket implementation to dart:io. (Closed)
Patch Set: Changed signature for GetSocketIdNativeField Created 3 years, 8 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 | « runtime/bin/socket_linux.cc ('k') | runtime/bin/sync_socket.h » ('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) 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_MACOS) 8 #if defined(HOST_OS_MACOS)
9 9
10 #include "bin/socket.h"
11
10 #include <errno.h> // NOLINT 12 #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
19 13
20 #include "bin/fdutils.h" 14 #include "bin/fdutils.h"
21 #include "bin/file.h"
22 #include "bin/socket.h"
23 #include "bin/socket_base_macos.h"
24 #include "platform/signal_blocker.h" 15 #include "platform/signal_blocker.h"
25 16
26 namespace dart { 17 namespace dart {
27 namespace bin { 18 namespace bin {
28 19
29 Socket::Socket(intptr_t fd) 20 Socket::Socket(intptr_t fd)
30 : ReferenceCounted(), fd_(fd), port_(ILLEGAL_PORT) {} 21 : ReferenceCounted(), fd_(fd), port_(ILLEGAL_PORT) {}
31 22
32 23
33 void Socket::SetClosedFd() { 24 void Socket::SetClosedFd() {
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 } 201 }
211 return socket; 202 return socket;
212 } 203 }
213 204
214 } // namespace bin 205 } // namespace bin
215 } // namespace dart 206 } // namespace dart
216 207
217 #endif // defined(HOST_OS_MACOS) 208 #endif // defined(HOST_OS_MACOS)
218 209
219 #endif // !defined(DART_IO_DISABLED) 210 #endif // !defined(DART_IO_DISABLED)
OLDNEW
« no previous file with comments | « runtime/bin/socket_linux.cc ('k') | runtime/bin/sync_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698