diff options
Diffstat (limited to 'include/inet_common.h')
-rw-r--r-- | include/inet_common.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/inet_common.h b/include/inet_common.h index eb4cb7325..f4374e5a2 100644 --- a/include/inet_common.h +++ b/include/inet_common.h | |||
@@ -12,15 +12,15 @@ | |||
12 | /* hostfirst!=0 If we expect this to be a hostname, | 12 | /* hostfirst!=0 If we expect this to be a hostname, |
13 | try hostname database first | 13 | try hostname database first |
14 | */ | 14 | */ |
15 | int INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirst); | 15 | int INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirst) FAST_FUNC; |
16 | 16 | ||
17 | /* numeric: & 0x8000: "default" instead of "*", | 17 | /* numeric: & 0x8000: "default" instead of "*", |
18 | * & 0x4000: host instead of net, | 18 | * & 0x4000: host instead of net, |
19 | * & 0x0fff: don't resolve | 19 | * & 0x0fff: don't resolve |
20 | */ | 20 | */ |
21 | 21 | ||
22 | int INET6_resolve(const char *name, struct sockaddr_in6 *sin6); | 22 | int INET6_resolve(const char *name, struct sockaddr_in6 *sin6) FAST_FUNC; |
23 | 23 | ||
24 | /* These return malloced string */ | 24 | /* These return malloced string */ |
25 | char *INET_rresolve(struct sockaddr_in *s_in, int numeric, uint32_t netmask); | 25 | char *INET_rresolve(struct sockaddr_in *s_in, int numeric, uint32_t netmask) FAST_FUNC; |
26 | char *INET6_rresolve(struct sockaddr_in6 *sin6, int numeric); | 26 | char *INET6_rresolve(struct sockaddr_in6 *sin6, int numeric) FAST_FUNC; |