You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In NodeJS, one can connect to a remote (TCP) server using a regular host name. This will trigger a DNS lookup. By default, libuv's API doesn't do this (and understandably so), which means that if it's a desirable feature then this will have to be added on top of the TcpClient module.
Split off from #61 since I'm not sure if this is really needed. If yes, there could be events like DNS_LOOKUP and DNS_LOOKUP_COMPLETE, or even TCP_HOSTNAME_RESOLVED? Not sure if there's much benefit in having those.
The text was updated successfully, but these errors were encountered:
In NodeJS, one can connect to a remote (TCP) server using a regular host name. This will trigger a DNS lookup. By default, libuv's API doesn't do this (and understandably so), which means that if it's a desirable feature then this will have to be added on top of the
TcpClient
module.Split off from #61 since I'm not sure if this is really needed. If yes, there could be events like
DNS_LOOKUP
andDNS_LOOKUP_COMPLETE
, or evenTCP_HOSTNAME_RESOLVED
? Not sure if there's much benefit in having those.The text was updated successfully, but these errors were encountered: