repo.or.cz
/
glibc
/
history.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Get uint32_t definition.
[glibc/history.git]
/
include
/
ifaddrs.h
blob
d790fcbe870b5cff2668a606d41afd93de0e34ea
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
}
flags
;
15
uint32_t
addr
[
4
];
16
};
17
18
extern
void
__check_pf
(
bool
*
seen_ipv4
,
bool
*
seen_ipv6
,
19
struct
in6addrinfo
**
in6ai
,
size_t
*
in6ailen
)
20
attribute_hidden
;
21
22
#endif
/* ifaddrs.h */