added watt32 headers and brought the DOS version up to parity with UNIX
[oftp] / libs / watt32 / arpa / inet.h
1 /*!\file arpa/inet.h
2  * Address conversions.
3  */
4
5 /* Modified for emx by hv and em 1994
6  *
7  * Copyright (c) 1983, 1993
8  *      The Regents of the University of California.  All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *      @(#)inet.h      8.1 (Berkeley) 6/2/93
39  *      From: Id: inet.h,v 8.5 1997/01/29 08:48:09 vixie Exp $
40  */
41
42 #ifndef __ARPA_INET_H
43 #define __ARPA_INET_H
44
45 #ifndef __SYS_W32API_H
46 #include <sys/w32api.h>
47 #endif
48
49 #ifndef __SYS_TYPES_H
50 #include <sys/wtypes.h>
51 #endif
52
53 #ifndef __SYS_CDEFS_H
54 #include <sys/cdefs.h>
55 #endif
56
57 #ifndef __NETINET_IN_H
58 #include <netinet/in.h>
59 #endif
60
61
62 __BEGIN_DECLS
63
64 W32_FUNC int            ascii2addr   (int, const char *, void *);
65 W32_FUNC char          *addr2ascii   (int, const void *, int, char *);
66
67 W32_FUNC struct in_addr W32_CALL inet_makeaddr (u_long, u_long);
68 W32_FUNC u_long         W32_CALL inet_addr     (const char*);
69 W32_FUNC u_long         W32_CALL inet_lnaof    (struct in_addr);
70 W32_FUNC u_long         W32_CALL inet_netof    (struct in_addr);
71 W32_FUNC u_long         W32_CALL inet_network  (const char*);
72 W32_FUNC int            W32_CALL inet_aton     (const char *s, struct in_addr *adr);
73 W32_FUNC char*          W32_CALL inet_ntoa     (struct in_addr);
74 W32_FUNC char*          W32_CALL inet_ntoa_r   (struct in_addr adr, char *buf, int buflen);
75
76 W32_FUNC char          *W32_CALL inet_nsap_ntoa(int binlen, const u_char *binary, char *ascii);
77 W32_FUNC u_int          W32_CALL inet_nsap_addr(const char *ascii, u_char *binary, int maxlen);
78 W32_FUNC const char    *W32_CALL inet_ntop     (int af, const void *src, char *dst, size_t size);
79 W32_FUNC int            W32_CALL inet_pton     (int af, const char *src, void *dst);
80
81 __END_DECLS
82
83 #endif  /* !__ARPA_INET_H_ */