xref: /dflybsd-src/contrib/cvs-1.12/lib/canon-host.h (revision 86d7f5d305c6adaa56ff4582ece9859d73106103)
1*86d7f5d3SJohn Marino /* Host name canonicalization
2*86d7f5d3SJohn Marino 
3*86d7f5d3SJohn Marino    Copyright (C) 2005 Free Software Foundation, Inc.
4*86d7f5d3SJohn Marino 
5*86d7f5d3SJohn Marino    Written by Derek Price <derek@ximbiot.com>
6*86d7f5d3SJohn Marino 
7*86d7f5d3SJohn Marino    This program is free software; you can redistribute it and/or
8*86d7f5d3SJohn Marino    modify it under the terms of the GNU General Public License as
9*86d7f5d3SJohn Marino    published by the Free Software Foundation; either version 2, or (at
10*86d7f5d3SJohn Marino    your option) any later version.
11*86d7f5d3SJohn Marino 
12*86d7f5d3SJohn Marino    This program is distributed in the hope that it will be useful, but
13*86d7f5d3SJohn Marino    WITHOUT ANY WARRANTY; without even the implied warranty of
14*86d7f5d3SJohn Marino    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15*86d7f5d3SJohn Marino    General Public License for more details.
16*86d7f5d3SJohn Marino 
17*86d7f5d3SJohn Marino    You should have received a copy of the GNU General Public License
18*86d7f5d3SJohn Marino    along with this program; if not, write to the Free Software Foundation,
19*86d7f5d3SJohn Marino    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
20*86d7f5d3SJohn Marino 
21*86d7f5d3SJohn Marino #ifndef CANON_HOST_H
22*86d7f5d3SJohn Marino # define CANON_HOST_H 1
23*86d7f5d3SJohn Marino 
24*86d7f5d3SJohn Marino char *canon_host (char const *host);
25*86d7f5d3SJohn Marino char *canon_host_r (char const *host, int *cherror);
26*86d7f5d3SJohn Marino 
27*86d7f5d3SJohn Marino const char *ch_strerror (void);
28*86d7f5d3SJohn Marino # define ch_strerror_r(cherror) gai_strerror (cherror);
29*86d7f5d3SJohn Marino 
30*86d7f5d3SJohn Marino #endif /* !CANON_HOST_H */
31