connections with fsockopen or curl ??
sudheer1994 opened this issue · 4 comments
sudheer1994 commented
what method do you use to connect to whois servers?
fsockopen or curl?
Where can i find this in your code please point me in correct direction.
Karyazilim commented
This Script uses fsockopen.
Open app/lib/web.php and search for whois function.
You will see.
sudheer1994 commented
i have few more questions.
Does that do parallel request to whois servers or do single request at a time for bulk whois?
Karyazilim commented
i have few more questions.
Does that do parallel request to whois servers or do single request at a time for bulk whois?
Not single request for all domains. It calls a request for each domain. Also not paralel. It waits for getting domain info and does for another then. So asynchronous.
sudheer1994 commented
thanks for clarifying mate.