]> sjero.net Git - iperf/blob - include/inet_aton.h
Original 2.0.2 iperf sources
[iperf] / include / inet_aton.h
1 /*--------------------------------------------------------------- 
2  * Copyright (c) 1999,2000,2001,2002,2003                              
3  * The Board of Trustees of the University of Illinois            
4  * All Rights Reserved.                                           
5  *--------------------------------------------------------------- 
6  * Permission is hereby granted, free of charge, to any person    
7  * obtaining a copy of this software (Iperf) and associated       
8  * documentation files (the "Software"), to deal in the Software  
9  * without restriction, including without limitation the          
10  * rights to use, copy, modify, merge, publish, distribute,        
11  * sublicense, and/or sell copies of the Software, and to permit     
12  * persons to whom the Software is furnished to do
13  * so, subject to the following conditions: 
14  *
15  *     
16  * Redistributions of source code must retain the above 
17  * copyright notice, this list of conditions and 
18  * the following disclaimers. 
19  *
20  *     
21  * Redistributions in binary form must reproduce the above 
22  * copyright notice, this list of conditions and the following 
23  * disclaimers in the documentation and/or other materials 
24  * provided with the distribution. 
25  * 
26  *     
27  * Neither the names of the University of Illinois, NCSA, 
28  * nor the names of its contributors may be used to endorse 
29  * or promote products derived from this Software without
30  * specific prior written permission. 
31  * 
32  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
33  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
34  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
35  * NONINFRINGEMENT. IN NO EVENT SHALL THE CONTIBUTORS OR COPYRIGHT 
36  * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
37  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 
38  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE
39  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 
40  * ________________________________________________________________
41  * National Laboratory for Applied Network Research 
42  * National Center for Supercomputing Applications 
43  * University of Illinois at Urbana-Champaign 
44  * http://www.ncsa.uiuc.edu
45  * ________________________________________________________________ 
46  *
47  * inet_aton.h
48  *
49  * Mark Gates <mgates@nlanr.net>
50  *      Kevin Gibbs <kgibbs@ncsa.uiuc.edu> Sept. 2002
51  * to use this prototype, make sure HAVE_INET_PTON is not defined
52  * to use this prototype, make sure HAVE_INET_NTOP is not defined
53  *
54  * =================================================================== */
55
56 #ifndef INET_ATON_H
57 #define INET_ATON_H
58
59
60 #include "headers.h"
61
62 /*
63  * inet_pton is the new, better version of inet_aton.
64  * inet_aton is not IP version agnostic.
65  * inet_aton is the new, better version of inet_addr.
66  * inet_addr is incorrect in that it returns -1 as an error value,
67  * while -1 (0xFFFFFFFF) is a valid IP address (255.255.255.255).
68  */
69
70 #ifndef HAVE_INET_NTOP
71
72     #ifdef __cplusplus
73 extern "C" {
74 #endif
75 int inet_ntop(int af, const void *src, char *dst, size_t size);
76 int inet_ntop4(const unsigned char *src, char *dst,
77                       size_t size);
78 #ifdef HAVE_IPV6
79 int inet_ntop6(const unsigned char *src, char *dst,
80                       size_t size);
81 #endif
82
83
84 #ifdef __cplusplus
85 } /* end extern "C" */
86     #endif
87
88 #endif /* HAVE_INET_NTOP */
89 #ifndef HAVE_INET_PTON
90
91     #ifdef __cplusplus
92 extern "C" {
93 #endif
94 int inet_pton(int af, const char *src, void *dst);
95 int inet_pton4(const char *src, unsigned char *dst);
96 #ifdef HAVE_IPV6
97 int inet_pton6(const char *src, unsigned char *dst);
98 #endif
99
100 #ifdef __cplusplus
101 } /* end extern "C" */
102     #endif
103
104 #endif /* HAVE_INET_PTON */
105 #endif /* INET_ATON_H */