Sha256: 2aa3de9ea12006a74d6e69d3a1a907cfaf3e0f2743482ab5a1a1621fec8b0f31

Contents?: true

Size: 818 Bytes

Versions: 7

Compression:

Stored size: 818 Bytes

Contents

# frozen_string_literal: true

module Ftpd

  class CommandHandlerFactory

    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

  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ftpd-2.1.0 lib/ftpd/command_handler_factory.rb
ftpd-2.0.5 lib/ftpd/command_handler_factory.rb
ftpd-2.0.4 lib/ftpd/command_handler_factory.rb
ftpd-2.0.3 lib/ftpd/command_handler_factory.rb
ftpd-2.0.2 lib/ftpd/command_handler_factory.rb
ftpd-2.0.1 lib/ftpd/command_handler_factory.rb
ftpd-2.0.0 lib/ftpd/command_handler_factory.rb