mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
Move ip_mreqn structure from Linux to generic
I.e. from sysdeps/unix/sysv/linux/bits/in.h to netinet/in.h It is following both the BSD and Linux definitions. Reviewed-by: Florian Weimer <fweimer@redhat.com>
This commit is contained in:
@@ -278,6 +278,19 @@ struct ip_mreq
|
||||
struct in_addr imr_interface;
|
||||
};
|
||||
|
||||
/* IPv4 multicast request with interface index. */
|
||||
struct ip_mreqn
|
||||
{
|
||||
/* IP multicast address of group. */
|
||||
struct in_addr imr_multiaddr;
|
||||
|
||||
/* Local IP address of interface. */
|
||||
struct in_addr imr_address;
|
||||
|
||||
/* Interface index. */
|
||||
int imr_ifindex;
|
||||
};
|
||||
|
||||
struct ip_mreq_source
|
||||
{
|
||||
/* IP multicast address of group. */
|
||||
|
Reference in New Issue
Block a user