blob: ecf0df2cff45a3747e7a516ee359dc289a3b7364 [file] [log] [blame]
Damien Miller34132e52000-01-14 15:45:46 +11001#ifndef _FAKE_GETNAMEINFO_H
2#define _FAKE_GETNAMEINFO_H
3
4#include "config.h"
5#ifndef HAVE_GETNAMEINFO
6int getnameinfo(const struct sockaddr *sa, size_t salen, char *host,
7 size_t hostlen, char *serv, size_t servlen, int flags);
8#endif /* !HAVE_GETNAMEINFO */
9
10#ifndef NI_MAXSERV
11# define NI_MAXSERV 32
12#endif /* !NI_MAXSERV */
13#ifndef NI_MAXHOST
14# define NI_MAXHOST 1025
15#endif /* !NI_MAXHOST */
16
17#endif /* _FAKE_GETNAMEINFO_H */