mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 12:40:00 -04:00
parent
7e8225dd09
commit
eb6cdc3750
2 changed files with 5 additions and 2 deletions
|
|
@ -63,7 +63,8 @@ static const char *gai_messages[] = {
|
|||
"ai_socktype not supported",
|
||||
"system error returned in errno",
|
||||
"bad hints",
|
||||
"bad protocol"
|
||||
"bad protocol",
|
||||
"overflow"
|
||||
};
|
||||
|
||||
/*% Returns an error message corresponding to an error code returned by getaddrinfo() */
|
||||
|
|
|
|||
|
|
@ -88,6 +88,7 @@ struct addrinfo {
|
|||
#undef EAI_SYSTEM
|
||||
#undef EAI_BADHINTS
|
||||
#undef EAI_PROTOCOL
|
||||
#undef EAI_OVERFLOW
|
||||
#undef EAI_MAX
|
||||
|
||||
#define EAI_ADDRFAMILY 1 /* address family for hostname not supported */
|
||||
|
|
@ -103,7 +104,8 @@ struct addrinfo {
|
|||
#define EAI_SYSTEM 11 /* system error returned in errno */
|
||||
#define EAI_BADHINTS 12
|
||||
#define EAI_PROTOCOL 13
|
||||
#define EAI_MAX 14
|
||||
#define EAI_OVERFLOW 14
|
||||
#define EAI_MAX 15
|
||||
|
||||
/*
|
||||
* Flag values for getaddrinfo()
|
||||
|
|
|
|||
Loading…
Reference in a new issue