Ruby 的 UDP 客户端一例

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

require 'socket'

s = UDPSocket.new
s.send("hello", 0, 'localhost', 1234)