]> andersk Git - openssh.git/blame - openbsd-compat/fake-getnameinfo.h
- (djm) Add CVS Id's to files that we have missed
[openssh.git] / openbsd-compat / fake-getnameinfo.h
CommitLineData
0b202697 1/* $Id$ */
2
48e671d5 3#ifndef _FAKE_GETNAMEINFO_H
4#define _FAKE_GETNAMEINFO_H
5
6#include "config.h"
5daf7064 7
48e671d5 8#ifndef HAVE_GETNAMEINFO
9int getnameinfo(const struct sockaddr *sa, size_t salen, char *host,
10 size_t hostlen, char *serv, size_t servlen, int flags);
11#endif /* !HAVE_GETNAMEINFO */
12
13#ifndef NI_MAXSERV
14# define NI_MAXSERV 32
15#endif /* !NI_MAXSERV */
16#ifndef NI_MAXHOST
17# define NI_MAXHOST 1025
18#endif /* !NI_MAXHOST */
19
20#endif /* _FAKE_GETNAMEINFO_H */
This page took 0.068495 seconds and 5 git commands to generate.