Blame lib/lwres/man/lwres_hstrerror.html

Packit Service ae04f2
Packit Service ae04f2
Packit Service ae04f2
 - Copyright (C) 2000, 2001, 2004, 2005, 2007, 2014-2016, 2018-2020 Internet Systems Consortium, Inc. ("ISC")
Packit Service ae04f2
 - 
Packit Service ae04f2
 - This Source Code Form is subject to the terms of the Mozilla Public
Packit Service ae04f2
 - License, v. 2.0. If a copy of the MPL was not distributed with this
Packit Service ae04f2
 - file, You can obtain one at http://mozilla.org/MPL/2.0/.
Packit Service ae04f2
-->
Packit Service ae04f2
<html lang="en">
Packit Service ae04f2
<head>
Packit Service ae04f2
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
Packit Service ae04f2
<title>lwres_hstrerror</title>
Packit Service ae04f2
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
Packit Service ae04f2
</head>
Packit Service ae04f2
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
Packit Service ae04f2
Packit Service ae04f2
  
Packit Service ae04f2
  
Packit Service ae04f2
Packit Service ae04f2
  
Packit Service ae04f2
Packit Service ae04f2
  
Packit Service ae04f2
Packit Service ae04f2
  
Packit Service ae04f2

Name

Packit Service ae04f2

Packit Service ae04f2
    lwres_herror, 
Packit Service ae04f2
    lwres_hstrerror
Packit Service ae04f2
     — lightweight resolver error message generation
Packit Service ae04f2
  

Packit Service ae04f2
Packit Service ae04f2
  
Packit Service ae04f2

Synopsis

Packit Service ae04f2
    
Packit Service ae04f2
#include <lwres/netdb.h>
Packit Service ae04f2
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
lwres_herror(
Packit Service ae04f2
const char *s);
Packit Service ae04f2
Packit Service ae04f2
 
Packit Service ae04f2
Packit Service ae04f2
Packit Service ae04f2
const char *
Packit Service ae04f2
lwres_hstrerror(
Packit Service ae04f2
int err);
Packit Service ae04f2
Packit Service ae04f2
 
Packit Service ae04f2
Packit Service ae04f2
  
Packit Service ae04f2
Packit Service ae04f2
  
Packit Service ae04f2

DESCRIPTION

Packit Service ae04f2
Packit Service ae04f2
Packit Service ae04f2
    

lwres_herror()

Packit Service ae04f2
      prints the string s on
Packit Service ae04f2
      stderr followed by the string generated by
Packit Service ae04f2
      lwres_hstrerror() for the error code stored
Packit Service ae04f2
      in the global variable lwres_h_errno.
Packit Service ae04f2
    

Packit Service ae04f2
Packit Service ae04f2
    

lwres_hstrerror()

Packit Service ae04f2
      returns an appropriate string for the error code gievn by
Packit Service ae04f2
      err.  The values of the error codes and
Packit Service ae04f2
      messages are as follows:
Packit Service ae04f2
Packit Service ae04f2
      

Packit Service ae04f2
Packit Service ae04f2
NETDB_SUCCESS
Packit Service ae04f2
Packit Service ae04f2
            

Resolver Error 0 (no error)

Packit Service ae04f2
            

Packit Service ae04f2
          
Packit Service ae04f2
HOST_NOT_FOUND
Packit Service ae04f2
Packit Service ae04f2
            

Unknown host

Packit Service ae04f2
            

Packit Service ae04f2
          
Packit Service ae04f2
TRY_AGAIN
Packit Service ae04f2
Packit Service ae04f2
            

Host name lookup failure

Packit Service ae04f2
            

Packit Service ae04f2
          
Packit Service ae04f2
NO_RECOVERY
Packit Service ae04f2
Packit Service ae04f2
            

Unknown server error

Packit Service ae04f2
            

Packit Service ae04f2
          
Packit Service ae04f2
NO_DATA
Packit Service ae04f2
Packit Service ae04f2
            

No address associated with name

Packit Service ae04f2
            

Packit Service ae04f2
          
Packit Service ae04f2
Packit Service ae04f2

Packit Service ae04f2
    

Packit Service ae04f2
  
Packit Service ae04f2
Packit Service ae04f2
  
Packit Service ae04f2

RETURN VALUES

Packit Service ae04f2
Packit Service ae04f2
    

Packit Service ae04f2
      The string Unknown resolver error is returned by
Packit Service ae04f2
      lwres_hstrerror()
Packit Service ae04f2
      when the value of
Packit Service ae04f2
      lwres_h_errno
Packit Service ae04f2
      is not a valid error code.
Packit Service ae04f2
    

Packit Service ae04f2
  
Packit Service ae04f2
  
Packit Service ae04f2

SEE ALSO

Packit Service ae04f2
Packit Service ae04f2
    

Packit Service ae04f2
        herror(3)
Packit Service ae04f2
      ,
Packit Service ae04f2
Packit Service ae04f2
      
Packit Service ae04f2
        lwres_hstrerror(3)
Packit Service ae04f2
      .
Packit Service ae04f2
    

Packit Service ae04f2
Packit Service ae04f2
  
Packit Service ae04f2
</body>
Packit Service ae04f2
</html>