cares_pton.h 217 B

12345678
  1. #ifdef CARES_EMBED
  2. #include "ares_setup.h"
  3. #include "ares_inet_net_pton.h"
  4. #else
  5. #include <arpa/inet.h>
  6. #define ares_inet_pton(x,y,z) inet_pton(x,y,z)
  7. #define ares_inet_net_pton(w,x,y,z) inet_net_pton(w,x,y,z)
  8. #endif