hstrerror.c
上传用户:zm130024
上传日期:2007-01-04
资源大小:432k
文件大小:5k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /* $Id: hstrerror.c,v 1.3 1999/05/13 16:35:55 karls Exp $ */
  2. #ifdef HAVE_CONFIG_H
  3. #include "autoconf.h"
  4. #endif  /* HAVE_CONFIG_H */
  5. #include "common.h"
  6. #if !HAVE_HSTRERROR
  7. /* $OpenBSD: herror.c,v 1.4 1997/03/13 19:07:28 downsj Exp $ */
  8. /*
  9.  * ++Copyright++ 1987, 1993
  10.  * -
  11.  * Copyright (c) 1987, 1993
  12.  *    The Regents of the University of California.  All rights reserved.
  13.  *
  14.  * Redistribution and use in source and binary forms, with or without
  15.  * modification, are permitted provided that the following conditions
  16.  * are met:
  17.  * 1. Redistributions of source code must retain the above copyright
  18.  *    notice, this list of conditions and the following disclaimer.
  19.  * 2. Redistributions in binary form must reproduce the above copyright
  20.  *    notice, this list of conditions and the following disclaimer in the
  21.  *    documentation and/or other materials provided with the distribution.
  22.  * 3. All advertising materials mentioning features or use of this software
  23.  *    must display the following acknowledgement:
  24.  * This product includes software developed by the University of
  25.  * California, Berkeley and its contributors.
  26.  * 4. Neither the name of the University nor the names of its contributors
  27.  *    may be used to endorse or promote products derived from this software
  28.  *    without specific prior written permission.
  29.  *
  30.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  31.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  32.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  33.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  34.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  35.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  36.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  37.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  38.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  39.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  40.  * SUCH DAMAGE.
  41.  * -
  42.  * Portions Copyright (c) 1993 by Digital Equipment Corporation.
  43.  *
  44.  * Permission to use, copy, modify, and distribute this software for any
  45.  * purpose with or without fee is hereby granted, provided that the above
  46.  * copyright notice and this permission notice appear in all copies, and that
  47.  * the name of Digital Equipment Corporation not be used in advertising or
  48.  * publicity pertaining to distribution of the document or software without
  49.  * specific, written prior permission.
  50.  *
  51.  * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
  52.  * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
  53.  * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
  54.  * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  55.  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  56.  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
  57.  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  58.  * SOFTWARE.
  59.  * -
  60.  * --Copyright--
  61.  */
  62. #if defined(LIBC_SCCS) && !defined(lint)
  63. #if 0
  64. static char sccsid[] = "@(#)herror.c 8.1 (Berkeley) 6/4/93";
  65. static char rcsid[] = "$From: herror.c,v 8.3 1996/08/05 08:31:35 vixie Exp $";
  66. #else
  67. static char rcsid[] = "$OpenBSD: herror.c,v 1.4 1997/03/13 19:07:28 downsj Exp $";
  68. #endif
  69. #endif /* LIBC_SCCS and not lint */
  70. #ifndef _COMMON_H_
  71. #include <sys/types.h>
  72. #include <sys/param.h>
  73. #include <sys/uio.h>
  74. #include <netdb.h>
  75. #if HAVE_UNISTD_H
  76. #include <unistd.h>
  77. #endif  /* HAVE_UNISTD_H */
  78. #include <string.h>
  79. #endif  /* !_COMMON_H_ */
  80. const char *h_errlist[] = {
  81. "Resolver Error 0 (no error)",
  82. "Unknown host", /* 1 HOST_NOT_FOUND */
  83. "Host name lookup failure", /* 2 TRY_AGAIN */
  84. "Unknown server error", /* 3 NO_RECOVERY */
  85. "No address associated with name", /* 4 NO_ADDRESS */
  86. };
  87. int h_nerr = { sizeof h_errlist / sizeof h_errlist[0] };
  88. extern int h_errno;
  89. #if 0
  90. /*
  91.  * herror --
  92.  * print the error indicated by the h_errno value.
  93.  */
  94. void
  95. herror(s)
  96. const char *s;
  97. {
  98. struct iovec iov[4];
  99. register struct iovec *v = iov;
  100. if (s && *s) {
  101. v->iov_base = (char *)s;
  102. v->iov_len = strlen(s);
  103. v++;
  104. v->iov_base = ": ";
  105. v->iov_len = 2;
  106. v++;
  107. }
  108. v->iov_base = (char *)hstrerror(h_errno);
  109. v->iov_len = strlen(v->iov_base);
  110. v++;
  111. v->iov_base = "n";
  112. v->iov_len = 1;
  113. writev(STDERR_FILENO, iov, (v - iov) + 1);
  114. }
  115. #endif
  116. const char *
  117. hstrerror(err)
  118. int err;
  119. {
  120. if (err < 0)
  121. return ("Resolver internal error");
  122. else if (err < h_nerr)
  123. return (h_errlist[err]);
  124. return ("Unknown resolver error");
  125. }
  126. #else
  127. static void avoid_error __P((void));
  128. static void avoid_error()
  129. {
  130. avoid_error();
  131. }
  132. #endif  /* !HAVE_HSTRERROR */