2014-10-28 09:58:25 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1996-2001 Internet Software Consortium.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
|
|
|
|
* DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
|
|
|
|
* INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
|
|
|
|
* FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2013-01-12 21:35:37 +01:00
|
|
|
#ifndef INET_PTON_H_
|
|
|
|
#define INET_PTON_H_
|
2014-02-08 00:28:32 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#ifndef AF_INET
|
|
|
|
#define AF_INET 2 ///< internetwork address family: UDP, TCP, etc.
|
|
|
|
#endif
|
|
|
|
#ifndef AF_INET6
|
|
|
|
/**
|
|
|
|
* IPv6 address family.
|
|
|
|
*
|
|
|
|
* @see AF_INET
|
|
|
|
*/
|
|
|
|
#define AF_INET6 28
|
|
|
|
#endif
|
2013-01-12 21:35:37 +01:00
|
|
|
|
|
|
|
#ifndef IN6ADDRSZ
|
|
|
|
#define IN6ADDRSZ 16
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef INT16SZ
|
|
|
|
#define INT16SZ sizeof(int16_t)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef INADDRSZ
|
|
|
|
#define INADDRSZ 4
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(EAFNOSUPPORT) && defined(WSAEAFNOSUPPORT)
|
|
|
|
#define EAFNOSUPPORT WSAEAFNOSUPPORT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* WARNING: Don't even consider trying to compile this on a system where
|
|
|
|
* sizeof(int) < 4. sizeof(int) > 4 is fine; all the world's not a VAX.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int inet_pton(int af, const char *src, void *dst);
|
|
|
|
|
|
|
|
#endif /* INET_PTON_H_ */
|