]> andersk Git - openssh.git/blame - fake-getnameinfo.h
- Moved all the bsd-* and fake-* stuff into new libopenbsd-compat.a
[openssh.git] / fake-getnameinfo.h
CommitLineData
48e671d5 1#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 */
This page took 0.06438 seconds and 5 git commands to generate.