enum

SF::Ftp::Response::Status

Inherits Enum / Comparable / Value / Object

Status codes possibly returned by a FTP response

Constants

RestartMarkerReply = 110

Restart marker reply

ServiceReadySoon = 120

Service ready in N minutes

DataConnectionAlreadyOpened = 125

Data connection already opened, transfer starting

OpeningDataConnection = 150

File status ok, about to open data connection

Ok = 200

Command ok

PointlessCommand = 202

Command not implemented

SystemStatus = 211

System status, or system help reply

DirectoryStatus = 212

Directory status

FileStatus = 213

File status

HelpMessage = 214

Help message

SystemType = 215

NAME system type, where NAME is an official system name from the list in the Assigned Numbers document

ServiceReady = 220

Service ready for new user

ClosingConnection = 221

Service closing control connection

DataConnectionOpened = 225

Data connection open, no transfer in progress

ClosingDataConnection = 226

Closing data connection, requested file action successful

EnteringPassiveMode = 227

Entering passive mode

LoggedIn = 230

User logged in, proceed. Logged out if appropriate

FileActionOk = 250

Requested file action ok

DirectoryOk = 257

PATHNAME created

NeedPassword = 331

User name ok, need password

NeedAccountToLogIn = 332

Need account for login

NeedInformation = 350

Requested file action pending further information

ServiceUnavailable = 421

Service not available, closing control connection

DataConnectionUnavailable = 425

Can't open data connection

TransferAborted = 426

Connection closed, transfer aborted

FileActionAborted = 450

Requested file action not taken

LocalError = 451

Requested action aborted, local error in processing

InsufficientStorageSpace = 452

Requested action not taken; insufficient storage space in system, file unavailable

CommandUnknown = 500

Syntax error, command unrecognized

ParametersUnknown = 501

Syntax error in parameters or arguments

CommandNotImplemented = 502

Command not implemented

BadCommandSequence = 503

Bad sequence of commands

ParameterNotImplemented = 504

Command not implemented for that parameter

NotLoggedIn = 530

Not logged in

NeedAccountToStore = 532

Need account for storing files

FileUnavailable = 550

Requested action not taken, file unavailable

PageTypeUnknown = 551

Requested action aborted, page type unknown

NotEnoughMemory = 552

Requested file action aborted, exceeded storage allocation

FilenameNotAllowed = 553

Requested action not taken, file name not allowed

InvalidResponse = 1000

Not part of the FTP standard, generated by SFML when a received response cannot be parsed

ConnectionFailed = 1001

Not part of the FTP standard, generated by SFML when the low-level socket connection with the server fails

ConnectionClosed = 1002

Not part of the FTP standard, generated by SFML when the low-level socket connection is unexpectedly closed

InvalidFile = 1003

Not part of the FTP standard, generated by SFML when a local file cannot be read or written

Instance methods

bad_command_sequence?

Returns true if this enum value equals BadCommandSequence

Source
closing_connection?

Returns true if this enum value equals ClosingConnection

Source
closing_data_connection?

Returns true if this enum value equals ClosingDataConnection

Source
command_not_implemented?

Returns true if this enum value equals CommandNotImplemented

Source
command_unknown?

Returns true if this enum value equals CommandUnknown

Source
connection_closed?

Returns true if this enum value equals ConnectionClosed

Source
connection_failed?

Returns true if this enum value equals ConnectionFailed

Source
data_connection_already_opened?

Returns true if this enum value equals DataConnectionAlreadyOpened

Source
data_connection_opened?

Returns true if this enum value equals DataConnectionOpened

Source
data_connection_unavailable?

Returns true if this enum value equals DataConnectionUnavailable

Source
directory_ok?

Returns true if this enum value equals DirectoryOk

Source
directory_status?

Returns true if this enum value equals DirectoryStatus

Source
entering_passive_mode?

Returns true if this enum value equals EnteringPassiveMode

Source
file_action_aborted?

Returns true if this enum value equals FileActionAborted

Source
file_action_ok?

Returns true if this enum value equals FileActionOk

Source
file_status?

Returns true if this enum value equals FileStatus

Source
file_unavailable?

Returns true if this enum value equals FileUnavailable

Source
filename_not_allowed?

Returns true if this enum value equals FilenameNotAllowed

Source
help_message?

Returns true if this enum value equals HelpMessage

Source
insufficient_storage_space?

Returns true if this enum value equals InsufficientStorageSpace

Source
invalid_file?

Returns true if this enum value equals InvalidFile

Source
invalid_response?

Returns true if this enum value equals InvalidResponse

Source
local_error?

Returns true if this enum value equals LocalError

Source
logged_in?

Returns true if this enum value equals LoggedIn

Source
need_account_to_log_in?

Returns true if this enum value equals NeedAccountToLogIn

Source
need_account_to_store?

Returns true if this enum value equals NeedAccountToStore

Source
need_information?

Returns true if this enum value equals NeedInformation

Source
need_password?

Returns true if this enum value equals NeedPassword

Source
not_enough_memory?

Returns true if this enum value equals NotEnoughMemory

Source
not_logged_in?

Returns true if this enum value equals NotLoggedIn

Source
ok?

Returns true if this enum value equals Ok

Source
opening_data_connection?

Returns true if this enum value equals OpeningDataConnection

Source
page_type_unknown?

Returns true if this enum value equals PageTypeUnknown

Source
parameter_not_implemented?

Returns true if this enum value equals ParameterNotImplemented

Source
parameters_unknown?

Returns true if this enum value equals ParametersUnknown

Source
pointless_command?

Returns true if this enum value equals PointlessCommand

Source
restart_marker_reply?

Returns true if this enum value equals RestartMarkerReply

Source
service_ready?

Returns true if this enum value equals ServiceReady

Source
service_ready_soon?

Returns true if this enum value equals ServiceReadySoon

Source
service_unavailable?

Returns true if this enum value equals ServiceUnavailable

Source
system_status?

Returns true if this enum value equals SystemStatus

Source
system_type?

Returns true if this enum value equals SystemType

Source
transfer_aborted?

Returns true if this enum value equals TransferAborted

Source