mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:34:59 +00:00
LibC: Add herror() and hstrerror()
This commit is contained in:
parent
bc18fa75ec
commit
6a7d3006d7
2 changed files with 26 additions and 0 deletions
|
@ -829,4 +829,26 @@ int getnameinfo(const struct sockaddr* __restrict addr, socklen_t addrlen, char*
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void herror(char const* s)
|
||||
{
|
||||
dbgln("herror(): {}: {}", s, hstrerror(h_errno));
|
||||
warnln("{}: {}", s, hstrerror(h_errno));
|
||||
}
|
||||
|
||||
char const* hstrerror(int err)
|
||||
{
|
||||
switch (err) {
|
||||
case HOST_NOT_FOUND:
|
||||
return "The specified host is unknown.";
|
||||
case NO_DATA:
|
||||
return "The requested name is valid but does not have an IP address.";
|
||||
case NO_RECOVERY:
|
||||
return "A nonrecoverable name server error occurred.";
|
||||
case TRY_AGAIN:
|
||||
return "A temporary error occurred on an authoritative name server. Try again later.";
|
||||
default:
|
||||
return "Unknown error.";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue