| 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) |
| 6 |
| 5 #include "platform/globals.h" | 7 #include "platform/globals.h" |
| 6 #if defined(TARGET_OS_LINUX) | 8 #if defined(TARGET_OS_LINUX) |
| 7 | 9 |
| 8 #include "bin/socket.h" | 10 #include "bin/socket.h" |
| 9 #include "bin/socket_linux.h" | 11 #include "bin/socket_linux.h" |
| 10 | 12 |
| 11 #include <errno.h> // NOLINT | 13 #include <errno.h> // NOLINT |
| 12 #include <ifaddrs.h> // NOLINT | 14 #include <ifaddrs.h> // NOLINT |
| 13 #include <net/if.h> // NOLINT | 15 #include <net/if.h> // NOLINT |
| 14 #include <netinet/tcp.h> // NOLINT | 16 #include <netinet/tcp.h> // NOLINT |
| (...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 578 mreq.gr_interface = interfaceIndex; | 580 mreq.gr_interface = interfaceIndex; |
| 579 memmove(&mreq.gr_group, &addr.ss, SocketAddress::GetAddrLength(addr)); | 581 memmove(&mreq.gr_group, &addr.ss, SocketAddress::GetAddrLength(addr)); |
| 580 return NO_RETRY_EXPECTED( | 582 return NO_RETRY_EXPECTED( |
| 581 setsockopt(fd, proto, MCAST_LEAVE_GROUP, &mreq, sizeof(mreq))) == 0; | 583 setsockopt(fd, proto, MCAST_LEAVE_GROUP, &mreq, sizeof(mreq))) == 0; |
| 582 } | 584 } |
| 583 | 585 |
| 584 } // namespace bin | 586 } // namespace bin |
| 585 } // namespace dart | 587 } // namespace dart |
| 586 | 588 |
| 587 #endif // defined(TARGET_OS_LINUX) | 589 #endif // defined(TARGET_OS_LINUX) |
| 590 |
| 591 #endif // !defined(DART_IO_DISABLED) |
| OLD | NEW |