Module: FFWD::UDP
- Defined in:
- lib/ffwd/protocol/udp.rb,
lib/ffwd/protocol/udp/bind.rb,
lib/ffwd/protocol/udp/connect.rb
Defined Under Namespace
Classes: Bind, Connect, SetupInput, SetupOutput
Class Method Summary
collapse
Class Method Details
.bind(config, log, connection) ⇒ Object
70
71
72
|
# File 'lib/ffwd/protocol/udp.rb', line 70
def self.bind config, log, connection
SetupInput.new config, log, connection
end
|
.connect(config, log, handler) ⇒ Object
44
45
46
|
# File 'lib/ffwd/protocol/udp.rb', line 44
def self.connect config, log, handler
SetupOutput.new config, log, handler
end
|
.family ⇒ Object
23
24
25
|
# File 'lib/ffwd/protocol/udp.rb', line 23
def self.family
:udp
end
|