Karyazilim/DoyosiWhois

connections with fsockopen or curl ??

sudheer1994 opened this issue · 4 comments

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.

This Script uses fsockopen.
Open app/lib/web.php and search for whois function.
You will see.

i have few more questions.
Does that do parallel request to whois servers or do single request at a time for bulk whois?

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.

thanks for clarifying mate.