Searched defs:error_num (Results 1 - 2 of 2) sorted by relevance

/bind-9.11.3/lib/lwres/
H A Dgetipnode.c85 * lwres_getipnodebyaddr() set *error_num to an appropriate error code
190 lwres_getipnodebyname(const char *name, int af, int flags, int *error_num) { argument
206 *error_num = NO_RECOVERY;
225 *error_num = HOST_NOT_FOUND;
258 return (copyandmerge(&he, NULL, af, error_num));
263 *error_num = NO_RECOVERY;
274 *error_num = NO_RECOVERY;
281 *error_num = NO_RECOVERY;
296 *error_num = NO_RECOVERY;
301 *error_num
325 lwres_getipnodebyaddr(const void *src, size_t len, int af, int *error_num) argument
835 copyandmerge(struct hostent *he1, struct hostent *he2, int af, int *error_num) argument
[all...]
/bind-9.11.3/bin/tests/system/lwresd/
H A Dlwtest.c313 int error_num; local
321 hp = getipnodebyname(name, af, flags, &error_num);
323 if (address == NULL && error_num == HOST_NOT_FOUND)
325 else if (error_num != HOST_NOT_FOUND) {
327 name, error_num);
410 int error_num; local
419 hp = getipnodebyaddr(addrbuf, len, af, &error_num);
422 if (name == NULL && error_num == HOST_NOT_FOUND)
424 else if (error_num != HOST_NOT_FOUND) {
426 address, error_num);
[all...]

Completed in 12 milliseconds