tinc/src/fake-gai-errnos.h

24 lines
349 B
C
Raw Normal View History

/*
* fake library for ssh
*
* This file is included in getaddrinfo.c and getnameinfo.c.
* See getaddrinfo.c and getnameinfo.c.
*/
/* for old netdb.h */
#ifndef EAI_NODATA
2012-10-10 15:17:49 +00:00
#define EAI_NODATA 1
#endif
#ifndef EAI_MEMORY
2012-10-10 15:17:49 +00:00
#define EAI_MEMORY 2
#endif
#ifndef EAI_FAMILY
2012-10-10 15:17:49 +00:00
#define EAI_FAMILY 3
#endif
2013-07-17 16:00:40 +00:00
#ifndef EAI_SYSTEM
#define EAI_SYSTEM 4
#endif