00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 */ 00004 00005 #ifndef __INET_NTOP_H 00006 #define __INET_NTOP_H 00007 00008 #include "setup.h" 00009 00010 char *Curl_inet_ntop(int af, const void *addr, char *buf, size_t size); 00011 00012 #ifdef HAVE_INET_NTOP 00013 #ifdef HAVE_ARPA_INET_H 00014 #include <arpa/inet.h> 00015 #endif 00016 #define Curl_inet_ntop(af,addr,buf,size) inet_ntop(af,addr,buf,size) 00017 #endif 00018 00019 #endif
1.5.6