
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@638 ec53bebd-3082-4978-b11e-865c3cabbd6b
38 lines
640 B
C
38 lines
640 B
C
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include "roken.h"
|
|
|
|
#ifndef HAVE_HSTRERROR
|
|
|
|
#include <stdio.h>
|
|
#include <netdb.h>
|
|
|
|
static
|
|
const
|
|
char *const h_errlist[] = {
|
|
"Resolver Error 0 (no error)",
|
|
"Unknown host", /* 1 HOST_NOT_FOUND */
|
|
"Host name lookup failure", /* 2 TRY_AGAIN */
|
|
"Unknown server error", /* 3 NO_RECOVERY */
|
|
"No address associated with name", /* 4 NO_ADDRESS */
|
|
};
|
|
|
|
static
|
|
const
|
|
int h_nerr = { sizeof h_errlist / sizeof h_errlist[0] };
|
|
|
|
const
|
|
char *
|
|
hstrerror(int herr)
|
|
{
|
|
if (0 <= herr && herr < h_nerr)
|
|
return h_errlist[herr];
|
|
else
|
|
return "Error number out of range (hstrerror)";
|
|
}
|
|
|
|
#endif
|
|
|