This commit is contained in:
Vinogradov Daniil 2024-09-02 19:35:40 +03:00 committed by GitHub
commit 915add4f75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -684,6 +684,14 @@ struct sockaddr_in6 {
uint32_t sin6_scope_id; /* Scope ID */
};
/*
* Argument structure for IPV6_JOIN_GROUP and IPV6_LEAVE_GROUP.
*/
struct ipv6_mreq {
struct in6_addr ipv6mr_multiaddr;
unsigned int ipv6mr_interface;
};
extern const struct in6_addr in6addr_any;
extern const struct in6_addr in6addr_loopback;