summaryrefslogtreecommitdiff
path: root/conform/data/netdb.h-data
blob: 76475ad3af45e94b6907e5b2bac34e38f31a49ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#ifndef ISO
type in_port_t
type in_addr_t

type {struct hostent}

element {struct hostent} {char*} h_name
element {struct hostent} {char**} h_aliases
element {struct hostent} int h_addrtype
element {struct hostent} int h_length
element {struct hostent} {char**} h_addr_list

type {struct netent}

element {struct netent} {char*} n_name
element {struct netent} {char**} n_aliases
element {struct netent} int n_addrtype
element {struct netent} uint32_t n_net

type uint32_t

type {struct protoent}

element {struct protoent} {char*} p_name
element {struct protoent} {char**} p_aliases
element {struct protoent} int p_proto

type {struct servent}

element {struct servent} {char*} s_name
element {struct servent} {char**} s_aliases
element {struct servent} int s_port
element {struct servent} {char*} s_proto

macro IPPORT_RESERVED

# variable int h_errno
allow h_errno

macro HOST_NOT_FOUND
macro NO_DATA
macro NO_RECOVERY
macro TRY_AGAIN

macro AI_V4MAPPED
macro AI_ALL
macro AI_ADDRCONFIG
macro AI_DEFAULT

function void endhostent (void)
function void endnetent (void)
function void endprotoent (void)
function void endservent (void)
function {struct hostent*} gethostbyaddr (const void*, socklen_t, int)
function {struct hostent*} gethostbyname (const char*)
function {struct hostent*} gethostent (void)

#endif