class TFTP::Server::RWSimple
Basic read-write TFTP
server.
This is what most other TFTPd implementations give you.
Public Class Methods
new(path, opts = {})
click to toggle source
Calls superclass method
TFTP::Server::Base::new
# File lib/tftp/tftp.rb, line 382 def initialize(path, opts = {}) handler = Handler::RWSimple.new(path, opts) super(handler, opts) end