diff options
Diffstat (limited to 'sample/clnt.rb')
-rw-r--r-- | sample/clnt.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sample/clnt.rb b/sample/clnt.rb new file mode 100644 index 000000000..7998379aa --- /dev/null +++ b/sample/clnt.rb @@ -0,0 +1,17 @@ +# socket example - client side +# usage: ruby clnt.rb [host] port + +require "socket" + +host=(if ARGV.length == 2; ARGV.shift; else "localhost"; end) +print("Trying ", host, " ...") +STDOUT.flush +s = TCPsocket.open(host, ARGV.shift) +print(" done\n") +print("addr: ", s.addr.join(":"), "\n") +print("peer: ", s.peeraddr.join(":"), "\n") +while gets() + s.write($_) + print(s.readline) +end +s.close |