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

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

Issue 1839463002: Really remove io support when dart:io is unsupported. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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)
6
5 #include "platform/globals.h" 7 #include "platform/globals.h"
6 #if defined(TARGET_OS_ANDROID) 8 #if defined(TARGET_OS_ANDROID)
7 9
8 #include "bin/socket.h" 10 #include "bin/socket.h"
9 #include "bin/socket_android.h" 11 #include "bin/socket_android.h"
10 12
11 #include <errno.h> // NOLINT 13 #include <errno.h> // NOLINT
12 #include <netinet/tcp.h> // NOLINT 14 #include <netinet/tcp.h> // NOLINT
13 #include <stdio.h> // NOLINT 15 #include <stdio.h> // NOLINT
14 #include <stdlib.h> // NOLINT 16 #include <stdlib.h> // NOLINT
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after
562 mreq.gr_interface = interfaceIndex; 564 mreq.gr_interface = interfaceIndex;
563 memmove(&mreq.gr_group, &addr.ss, SocketAddress::GetAddrLength(addr)); 565 memmove(&mreq.gr_group, &addr.ss, SocketAddress::GetAddrLength(addr));
564 return NO_RETRY_EXPECTED(setsockopt( 566 return NO_RETRY_EXPECTED(setsockopt(
565 fd, proto, MCAST_LEAVE_GROUP, &mreq, sizeof(mreq))) == 0; 567 fd, proto, MCAST_LEAVE_GROUP, &mreq, sizeof(mreq))) == 0;
566 } 568 }
567 569
568 } // namespace bin 570 } // namespace bin
569 } // namespace dart 571 } // namespace dart
570 572
571 #endif // defined(TARGET_OS_ANDROID) 573 #endif // defined(TARGET_OS_ANDROID)
574
575 #endif // !defined(DART_IO_DISABLED)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698