2012-06-29 05:18:28 +00:00
|
|
|
# -*- coding: binary -*-
|
2010-08-06 17:21:22 +00:00
|
|
|
#
|
|
|
|
# TFTP Server implementation according to:
|
|
|
|
#
|
|
|
|
# RFC1350, RFC2347, RFC2348, RFC2349
|
|
|
|
#
|
|
|
|
# written by jduck <jduck [at] metasploit.com>
|
|
|
|
# thx to scriptjunkie for pointing out option extensions
|
|
|
|
#
|
|
|
|
|
2010-05-21 00:03:04 +00:00
|
|
|
require 'rex/proto/tftp/constants'
|
|
|
|
require 'rex/proto/tftp/server'
|
2011-12-17 00:39:09 +00:00
|
|
|
require 'rex/proto/tftp/client'
|