module FFWD::UDP

Public Class Methods

bind(config, log, connection) click to toggle source
# File lib/ffwd/protocol/udp.rb, line 70
def self.bind config, log, connection
  SetupInput.new config, log, connection
end
connect(config, log, handler) click to toggle source
# File lib/ffwd/protocol/udp.rb, line 44
def self.connect config, log, handler
  SetupOutput.new config, log, handler
end
family() click to toggle source
# File lib/ffwd/protocol/udp.rb, line 23
def self.family
  :udp
end