mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
773e79b316
(struct in6addrinfo): Add index element. Declare __check_native. * inet/Makefile (aux): Add check_native. * sysdeps/unix/sysv/linux/check_native.c: New file. * sysdeps/unix/sysv/linux/check_pf.c: No need to recognize IFA_F_TEMPORARY. Pass back ifa_index. * sysdeps/posix/getaddrinfo.c: Remove netlink compatibility code. (rfc3484_sort): Add new parameter. Implement rule 7 correctly: call __check_native if necessary. (getaddrinfo): Fill in index field. Use qsort_r instead of qsort to sort addresses. Pass information about the results. * posix/tst-rfc3484.c: Adjust for addition of index field and change of rfc3484_sort interface. * posix/tst-rfc3484-2.c: Likewise.
29 lines
601 B
C
29 lines
601 B
C
#ifndef _IFADDRS_H
|
|
#include <inet/ifaddrs.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
libc_hidden_proto (getifaddrs)
|
|
libc_hidden_proto (freeifaddrs)
|
|
|
|
struct in6addrinfo
|
|
{
|
|
enum {
|
|
in6ai_deprecated = 1,
|
|
in6ai_homeaddress = 2
|
|
} flags:8;
|
|
uint8_t prefixlen;
|
|
uint16_t :16;
|
|
uint32_t index;
|
|
uint32_t addr[4];
|
|
};
|
|
|
|
extern void __check_pf (bool *seen_ipv4, bool *seen_ipv6,
|
|
struct in6addrinfo **in6ai, size_t *in6ailen)
|
|
attribute_hidden;
|
|
extern void __check_native (uint32_t a1_index, int *a1_native,
|
|
uint32_t a2_index, int *a2_native)
|
|
attribute_hidden;
|
|
|
|
#endif /* ifaddrs.h */
|