EAI AGAIN: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Sample: https://android.googlesource.com/platform/bionic/+/dba3df609436d7697305735818f0a840a49f1a0d/libc/dns/net/getaddrinfo.c <pre> "Temporary failure in name resolution", →EAI_AGAIN: </pre> Address Info Error codes: <pre> static const char * const ai_errlist[] = { "Success", "Address family for hostname not supported", →EAI_ADDRFAMILY: "Temporary failure in name resolution", →EAI_AGAIN: "Invalid value for ai_flags", /* EAI_BADFL...") |
(No difference)
|
Revision as of 03:00, 2 October 2024
Sample:
https://android.googlesource.com/platform/bionic/+/dba3df609436d7697305735818f0a840a49f1a0d/libc/dns/net/getaddrinfo.c
"Temporary failure in name resolution", /* EAI_AGAIN */
Address Info Error codes:
static const char * const ai_errlist[] = {
"Success",
"Address family for hostname not supported", /* EAI_ADDRFAMILY */
"Temporary failure in name resolution", /* EAI_AGAIN */
"Invalid value for ai_flags", /* EAI_BADFLAGS */
"Non-recoverable failure in name resolution", /* EAI_FAIL */
"ai_family not supported", /* EAI_FAMILY */
"Memory allocation failure", /* EAI_MEMORY */
"No address associated with hostname", /* EAI_NODATA */
"hostname nor servname provided, or not known", /* EAI_NONAME */
"servname not supported for ai_socktype", /* EAI_SERVICE */
"ai_socktype not supported", /* EAI_SOCKTYPE */
"System error returned in errno", /* EAI_SYSTEM */
"Invalid value for hints", /* EAI_BADHINTS */
"Resolved protocol is unknown", /* EAI_PROTOCOL */
"Argument buffer overflow", /* EAI_OVERFLOW */
"Unknown error", /* EAI_MAX */
};