Class: Ftpd::CommandHandlerFactory

Inherits:
Object
  • Object
show all
Defined in:
lib/ftpd/command_handler_factory.rb

Class Method Summary collapse

Class Method Details

.standard_command_handlersObject



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/ftpd/command_handler_factory.rb', line 7

def self.standard_command_handlers
  [
    CmdAbor,
    CmdAllo,
    CmdAppe,
    CmdAuth,
    CmdCdup,
    CmdCwd,
    CmdDele,
    CmdEprt,
    CmdEpsv,
    CmdFeat,
    CmdHelp,
    CmdList,
    CmdLogin,
    CmdMdtm,
    CmdMkd,
    CmdMode,
    CmdNlst,
    CmdNoop,
    CmdOpts,
    CmdPasv,
    CmdPbsz,
    CmdPort,
    CmdProt,
    CmdPwd,
    CmdQuit,
    CmdRein,
    CmdRename,
    CmdRest,
    CmdRetr,
    CmdRmd,
    CmdSite,
    CmdSize,
    CmdSmnt,
    CmdStat,
    CmdStor,
    CmdStou,
    CmdStru,
    CmdSyst,
    CmdType,
  ]      
end