MCPcopy Create free account
hub / github.com/Predelnik/DSpellCheck / Help

Method Help

deps/FtpClient/FTPClient.cpp:1636–1642  ·  view source on GitHub ↗

Executes the FTP command HELP This command shall cause the server to send helpful information regarding its implementation status over the control connection to the user. The command may take an argument (e.g., any command name) and return more specific information as a response. The reply is type 211 or 214. It is suggested that HELP be allowed before entering a USER command. The server may use

Source from the content-addressed store, hash-verified

1634/// @param[in] strTopic Topic of the requested help.
1635/// @return see return values of CFTPClient::SimpleErrorCheck
1636int CFTPClient::Help(const tstring& strTopic) const
1637{
1638 CReply Reply;
1639 if( !SendCommand(CCommand::HELP(), strTopic, Reply) )
1640 return FTP_ERROR;
1641 return SimpleErrorCheck(Reply);
1642}
1643
1644/// Executes the FTP command DELE (DELETE)
1645/// This command causes the file specified in the pathname to be deleted at the

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected