1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* sample/svr.rb: obsolete TCPserver renamed. [ruby-core:24712]

* sample/tsvr.rb: ditto.

* sample/dualstack-httpd.rb: ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24372 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2009-08-03 09:26:26 +00:00
parent 0f1c1ecbd8
commit e2ea286ec9
4 changed files with 11 additions and 3 deletions

View file

@ -6,7 +6,7 @@
require "socket"
gs = TCPserver.open(0)
gs = TCPServer.open(0)
addr = gs.addr
addr.shift
printf("server is on %s\n", addr.join(":"))