Ruby 的 UDP 服务器简单一例

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

require 'socket'

s = UDPSocket.new
s.bind(nil, 1234)

5.times do
  text, sender = s.recvfrom(16)
  puts text
end