]> Pileus Git - ~andy/fetchmail/blob - libesmtp/gethostbyname.h
Add Esperanto-language translation.
[~andy/fetchmail] / libesmtp / gethostbyname.h
1 /*
2  *  This file is a ghastly hack because nobody can agree on
3  *  gethostbyname_r()'s prototype.
4  *
5  *  Copyright (C) 2001,2002  Brian Stafford  <brian@stafford.uklinux.net>
6  *
7  *  This library is free software; you can redistribute it and/or
8  *  modify it under the terms of the GNU Lesser General Public
9  *  License as published by the Free Software Foundation; either
10  *  version 2.1 of the License, or (at your option) any later version.
11  *
12  *  This library is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  *  Lesser General Public License for more details.
16  *
17  *  You should have received a copy of the GNU Lesser General Public
18  *  License along with this library; if not, write to the Free Software
19  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 /*************************************************************************
23    Usage:
24
25    #include <errno.h>
26    #include "gethostbyname.h"
27
28    f ()
29    {
30      struct ghbnctx ctx;
31
32      errno = 0;
33      hp = gethostbyname_ctx (host, &ctx);
34      if (hp == NULL)
35        {
36          if (errno != 0)
37            handle_value_of_errno (errno);
38          else
39            handle_value_of_h_errno (h_error_ctx (&ctx));
40        }
41      else
42        {
43          ...
44        }
45      free_ghbnctx (&ctx);
46    }
47  *************************************************************************/
48
49 #ifndef _gethostbyname_h
50 #define _gethostbyname_h
51
52 #if HAVE_GETHOSTBYNAME_R == 6
53
54 struct ghbnctx
55   {
56     int h_err;
57     struct hostent hostent;
58     char *hostbuf;
59     size_t hostbuf_len;
60   };
61
62 #elif HAVE_GETHOSTBYNAME_R == 5
63
64 struct ghbnctx
65   {
66     int h_err;
67     struct hostent hostent;
68     char *hostbuf;
69     int hostbuf_len;
70   };
71
72 #elif HAVE_GETHOSTBYNAME_R == 3
73
74 struct ghbnctx
75   {
76     int h_err;
77     struct hostent_data hostent_data;
78     struct hostent hostent;
79   };
80
81 #else
82
83 struct ghbnctx
84   {
85     int h_err;
86   };
87
88 #endif
89
90 struct hostent *gethostbyname_ctx (const char *host, struct ghbnctx *ctx);
91 int h_error_ctx (struct ghbnctx *ctx);
92 void free_ghbnctx (struct ghbnctx *ctx);
93
94 #endif
95