net_tcp_client
net_tcp_client copied to clipboard
Net::TCPClient is a TCP Socket Client with automated failover, load balancing, retries and built-in timeouts.
I have just added a test to make sure `Net::TCPClient.connect` works as expected. This change should complement PR [Update tcp_client.rb to be ruby 3+ compatible](https://github.com/reidmorrison/net_tcp_client/pull/22) I guess these two should...
I'm using version 2.2.1 of the gem with Ruby 3.1.2p20 in Debian Bookworm. I'm getting `ArgumentError` when calling `Net::TCPClient.connect(connection_params)` because the parameters are passed to `new` in a way not...
maybe we can use `SOCKSSocket` instead of `Socket` or implement it (looks like it is not so difficult)
Hi, I am looking into how to implement a Whois client using Net::TCPClient. However I am a bit stuck, because I can't work out how to read an arbitrary number...