37
38
39
40
41
|
# File 'lib/ffwd/protocol/udp.rb', line 37
def connect core
raise "Missing required key :host" if (host = @config[:host]).nil?
raise "Missing required key :port" if (port = @config[:port]).nil?
Connect.new core, @log, host, port, @handler, @config
end
|