metasploit-framework/lib/rex/proto/tftp/constants.rb

31 lines
472 B
Ruby
Raw Normal View History

# $Id$
require 'rex/proto/tftp'
module Rex
module Proto
module TFTP
OPCODES = %w{ Unknown RRQ WRQ DATA ACK ERROR }
ERRCODES = [
"Undefined",
"File not found",
"Access violation",
"Disk full or allocation exceeded",
"Illegal TFTP operation",
"Unknown transfer ID",
"File already exists",
"No such user"
]
ErrFileNotFound = 1
ErrAccessViolation = 2
ErrDiskFull = 3
ErrIllegalOperation = 4
ErrUnknownTransferId = 5
ErrFileExists = 6
ErrNoSuchUser = 7
end
end
end