-
-
Notifications
You must be signed in to change notification settings - Fork 17
Closed
Labels
Description
Hello
I would like to use this lib to query domain whois server , for examle the whois.nic.cx with port 43
$connector->connect('whois.nic.cx:43')->then(function (ConnectionInterface $stream) {
$stream->on('data', function ($chunk) {
echo $chunk;
});
}, 'printf');
how can I pass domain name to this connection and get whois data back ?