21 lines
464 B
C
21 lines
464 B
C
/* $Id: fake-getnameinfo.h,v 1.3 2003/05/18 14:13:39 djm Exp $ */
|
|
|
|
#ifndef _FAKE_GETNAMEINFO_H
|
|
#define _FAKE_GETNAMEINFO_H
|
|
|
|
#include "config.h"
|
|
|
|
#ifndef HAVE_GETNAMEINFO
|
|
int getnameinfo(const struct sockaddr *, size_t, char *, size_t,
|
|
char *, size_t, int);
|
|
#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 */
|