5

I want enable curl's AsynchDNS ( find in phpinfo() ) . What do i must do ? This is screenshot : enter image description here

I found out install http://c-ares.haxx.se/

c-ares is a C library that performs DNS requests and name resolves asynchronously

http://curl.haxx.se/dev/readme-ares.html But i still stuck at how install on curl exist.

Daniel Stenberg
  • 54,736
  • 17
  • 146
  • 222
meotimdihia
  • 4,191
  • 15
  • 49
  • 69

1 Answers1

4

libcurl needs to have been compiled and built for it. For Linux and other *nix systems, you can build with c-ares or the threaded-resolver to make it use asynchronous resolves.

Daniel Stenberg
  • 54,736
  • 17
  • 146
  • 222