00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 */ 00004 00005 #ifndef __INET_PTON_H 00006 #define __INET_PTON_H 00007 00008 #include "setup.h" 00009 00010 int Curl_inet_pton(int, const char *, void *); 00011 00012 #ifdef HAVE_INET_PTON 00013 00014 #if defined(HAVE_NO_INET_PTON_PROTO) 00015 int inet_pton(int af, const char *src, void *dst); 00016 #endif 00017 00018 #ifdef HAVE_ARPA_INET_H 00019 #include <arpa/inet.h> 00020 #endif 00021 #define Curl_inet_pton(x,y,z) inet_pton(x,y,z) 00022 #endif 00023 00024 #endif
1.5.6