Class: NetConfGen::Server::RWSimple
- Defined in:
- lib/netconfgen/netconfgen.rb
Overview
Basic read-write TFTP server.
This is what most other TFTPd implementations give you.
Instance Attribute Summary
Attributes inherited from Base
#address, #clients, #handler, #port
Instance Method Summary collapse
-
#initialize(path, opts = {}) ⇒ RWSimple
constructor
A new instance of RWSimple.
Methods inherited from Base
Constructor Details
#initialize(path, opts = {}) ⇒ RWSimple
Returns a new instance of RWSimple.
463 464 465 466 |
# File 'lib/netconfgen/netconfgen.rb', line 463 def initialize(path, opts = {}) handler = Handler::RWSimple.new(path, opts) super(handler, opts) end |