Click here to Skip to main content
15,885,278 members
Articles / Desktop Programming / MFC

FTP Client Class

Rate me:
Please Sign up or sign in to vote.
4.85/5 (80 votes)
8 Dec 2012CPOL4 min read 766.9K   48.2K   246  
A non-MFC class to encapsulate the FTP protocol.
#ifndef INC_FTPPROTOCOLOUTPUT_H
#define INC_FTPPROTOCOLOUTPUT_H

#pragma once

#include "FTPclient.h"

namespace nsFTP
{
namespace nsView
{

/// @brief Shows communication between server and client
class CFTPProtocolOutput : public CRichEditCtrl, public nsFTP::CFTPClient::CNotification
{
   DECLARE_MESSAGE_MAP()
public:
   CFTPProtocolOutput();
   virtual ~CFTPProtocolOutput();
   static DWORD CALLBACK ProtocolStreamInCallback(DWORD_PTR dwCookie, LPBYTE pbBuff, LONG cb, LONG *pcb);

protected:
   virtual void OnInternalError(const tstring& strErrorMsg, const tstring& strFileName, DWORD dwLineNr);
   virtual void OnSendCommand(const tstring& strCommand);
   virtual void OnResponse(const tstring& strResponse);

private:
   void WriteLine(const CString& cszLine, COLORREF crText);
};

};
};

#endif // INC_FTPPROTOCOLOUTPUT_H

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions