module FFWD::TCP

Public Class Methods

bind(config, log, connection) click to toggle source
# File lib/ffwd/protocol/tcp.rb, line 82
def self.bind config, log, connection
  SetupInput.new config, log, connection
end
connect(config, log, handler) click to toggle source
# File lib/ffwd/protocol/tcp.rb, line 56
def self.connect config, log, handler
  SetupOutput.new config, log, handler
end
family() click to toggle source
# File lib/ffwd/protocol/tcp.rb, line 24
def self.family
  :tcp
end