tinc/lib/fake-getnameinfo.h

17 lines
428 B
C
Raw Normal View History

2019-08-26 11:44:36 +00:00
#ifndef _FAKE_GETNAMEINFO_H
#define _FAKE_GETNAMEINFO_H
2019-08-26 11:44:38 +00:00
#if !HAVE_DECL_GETNAMEINFO
2019-08-26 11:44:36 +00:00
int getnameinfo(const struct sockaddr *sa, size_t salen, char *host,
size_t hostlen, char *serv, size_t servlen, int flags);
#endif /* !HAVE_GETNAMEINFO */
#ifndef NI_MAXSERV
# define NI_MAXSERV 32
#endif /* !NI_MAXSERV */
#ifndef NI_MAXHOST
# define NI_MAXHOST 1025
#endif /* !NI_MAXHOST */
#endif /* _FAKE_GETNAMEINFO_H */