14 lines
317 B
Ruby
14 lines
317 B
Ruby
# -*- coding: binary -*-
|
|
#
|
|
# TFTP Server implementation according to:
|
|
#
|
|
# RFC1350, RFC2347, RFC2348, RFC2349
|
|
#
|
|
# written by jduck <jduck [at] metasploit.com>
|
|
# thx to scriptjunkie for pointing out option extensions
|
|
#
|
|
|
|
require 'rex/proto/tftp/constants'
|
|
require 'rex/proto/tftp/server'
|
|
require 'rex/proto/tftp/client'
|