repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* nscd/selinux.c (preserve_capabilities): Initialize new_caps
[glibc.git]
/
include
/
ifaddrs.h
blob
71bdaeb1801f2e7ec4b21d71c1de1bc6e431221c
1
#ifndef _IFADDRS_H
2
#include <inet/ifaddrs.h>
3
#include <stdbool.h>
4
#include <stdint.h>
5
6
libc_hidden_proto
(
getifaddrs
)
7
libc_hidden_proto
(
freeifaddrs
)
8
9
struct
in6addrinfo
10
{
11
enum
{
12
in6ai_deprecated
=
1
,
13
in6ai_temporary
=
2
,
14
in6ai_homeaddress
=
4
15
}
flags
;
16
uint32_t
addr
[
4
];
17
};
18
19
extern
void
__check_pf
(
bool
*
seen_ipv4
,
bool
*
seen_ipv6
,
20
struct
in6addrinfo
**
in6ai
,
size_t
*
in6ailen
)
21
attribute_hidden
;
22
23
#endif
/* ifaddrs.h */