Compare commits

...

2 Commits

Author SHA1 Message Date
Vinogradov Daniil
e8f4096b15
Merge 03461c9304 into d66e3aa487 2024-08-29 21:14:43 +02:00
Daniil Vinogradov
03461c9304 ipv6: in.h extended 2024-02-21 00:01:36 +01:00

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;