netinet/in.h: Rename imr_interface to imr_address in struct ip_mreqn.

Rename imr_interface to imr_address in struct ip_mreqn to match the Linux definition.
This ensures compatibility with standard socket APIs and existing Linux applications.

Signed-off-by: daichuan <daichuan@xiaomi.com>
This commit is contained in:
daichuan
2024-12-26 16:28:19 +08:00
committed by Xiang Xiao
parent be74eec727
commit cf8dacde9c
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -287,7 +287,7 @@ struct ip_mreq
struct ip_mreqn
{
struct in_addr imr_multiaddr; /* IPv4 multicast address of group */
struct in_addr imr_interface; /* Local IPv4 address of interface */
struct in_addr imr_address; /* Local IPv4 address of interface */
unsigned int imr_ifindex; /* Local interface index */
};