-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhey.c
116 lines (105 loc) · 3.17 KB
/
hey.c
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
* Copyright (c) 2013 Per Johansson
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <netdb.h>
#include "hey.h"
#include "lookup.h"
#include "connect.h"
int
hey_connect(struct hey *hey, const char *host, const char *serv, int timeout)
{
struct hey_lookup dst;
int r;
if (hey || !host || !serv || timeout < 0)
return HEY_EINVAL;
r = hey_lookup(&dst, hey_af_any_inet, host, serv);
if (r)
return r;
r = hey_do_connect(&dst, timeout, 200);
hey_lookup_cleanup(&dst);
return r;
}
static const int hey_gai_err_lookup[] =
{
[ -HEY_EAI_AGAIN ] = EAI_AGAIN,
[ -HEY_EAI_BADFLAGS ] = EAI_BADFLAGS,
#ifdef EAI_BADHINTS
[ -HEY_EAI_BADHINTS ] = EAI_BADHINTS,
#endif
[ -HEY_EAI_FAIL ] = EAI_FAIL,
[ -HEY_EAI_FAMILY ] = EAI_FAMILY,
[ -HEY_EAI_MEMORY ] = EAI_MEMORY,
[ -HEY_EAI_NONAME ] = EAI_NONAME,
#ifdef EAI_OVERFLOW
[ -HEY_EAI_OVERFLOW ] = EAI_OVERFLOW,
#endif
#ifdef EAI_PROTOCOL
[ -HEY_EAI_PROTOCOL ] = EAI_PROTOCOL,
#endif
[ -HEY_EAI_SERVICE ] = EAI_SERVICE,
[ -HEY_EAI_SOCKTYPE ] = EAI_SOCKTYPE,
[ -HEY_EAI_SYSTEM ] = EAI_SYSTEM,
#ifdef EAI_NODATA
[ -HEY_EAI_NODATA ] = EAI_NODATA,
#endif
#ifdef EAI_ADDRFAMILY
[ -HEY_EAI_ADDRFAMILY ] = EAI_ADDRFAMILY,
#endif
};
const char *hey_strerror(int err, char *buf, size_t buflen)
{
switch (err)
{
case HEY_ETIMEDOUT:
return "timed out";
case HEY_EINVAL:
return "invalid parameter";
case HEY_ESYSTEM:
strerror_r(errno, buf, buflen);
return buf;
case HEY_EAI_AGAIN:
case HEY_EAI_BADFLAGS:
case HEY_EAI_BADHINTS:
case HEY_EAI_FAIL:
case HEY_EAI_FAMILY:
case HEY_EAI_MEMORY:
case HEY_EAI_NONAME:
case HEY_EAI_OVERFLOW:
case HEY_EAI_PROTOCOL:
case HEY_EAI_SERVICE:
case HEY_EAI_SOCKTYPE:
case HEY_EAI_SYSTEM:
case HEY_EAI_NODATA:
case HEY_EAI_ADDRFAMILY:
return gai_strerror(hey_gai_err_lookup[-err]);
case HEY_EAI_UNKNOWN:
snprintf(buf, buflen, "getaddrinfo unknown error");
return buf;
}
snprintf(buf, buflen, "unknown (%d)", err);
return buf;
}