]> andersk Git - gssapi-openssh.git/blame - openssh/openbsd-compat/fake-getnameinfo.h
no longer included in OpenSSH distribution
[gssapi-openssh.git] / openssh / openbsd-compat / fake-getnameinfo.h
CommitLineData
3c0ef626 1/* $Id$ */
2
3#ifndef _FAKE_GETNAMEINFO_H
4#define _FAKE_GETNAMEINFO_H
5
6#include "config.h"
7
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.07956 seconds and 5 git commands to generate.