-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathresolve.h
44 lines (36 loc) · 1.73 KB
/
resolve.h
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
/* RESOLVE.H (c) Copyright Ian Shorter, 2011-2012 */
/* Resolve host name or IP address */
/* */
/* Released under "The Q Public License Version 1" */
/* (http://www.hercules-390.org/herclic.html) as modifications to */
/* Hercules. */
#ifndef __RESOLVE_H_
#define __RESOLVE_H_
/* ----------------------------------------------------------------- */
/* Hercules Resolve Block */
/* ----------------------------------------------------------------- */
struct _HRB;
typedef struct _HRB HRB, *PHRB;
struct _HRB
{
char host[256]; // Host name or IP address
char ipaddr[64]; // IP address
unsigned int salen; // Sockaddr length
union
{
struct sockaddr_in in;
struct sockaddr_in6 in6;
} sa; // Sockaddr
int afam; // Address family
unsigned int numeric; // Numerical address
int wantafam; // Wanted address family
int rv; // getaddrinfo() or gethostinfo() return value
char em[80]; // Error message
};
/* ----------------------------------------------------------------- */
/* Function Declarations */
/* ----------------------------------------------------------------- */
extern int resolve_host( PHRB pHRB );
extern int resolve_ipaddr( PHRB pHRB );
extern int resolve_sa( PHRB pHRB );
#endif // __RESOLVE_H_