91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 319.78 KB
    文件類型: .rar
    金幣: 1
    下載: 0 次
    發布日期: 2024-12-13
  • 語言: 其他
  • 標簽: Socket??

資源簡介

它的原理也相當的簡單,客戶端程序實現一個命令行或圖形界面,將用戶命令翻譯成 FTP 命令,并發送給服務器端程序。服務器端程序響應 FTP 命令,并將操作成功與否的信息以 FTP 響應形式返回給客戶端程序。雙方遵守 FTP 協議,完成文件傳輸服務。 就是利用MFC提供的CSocket類和CAsyncsocket類實現一個客戶/服務器模式的數據通信模式,使用CSocketFile類和CArchive類來讀寫數據。它很好的實現了所有的功能,提供了簡潔實用的接口。

資源截圖

代碼片段和文件信息

/*/////////////////////////////////////////////////////////////////////
FTPclient.cpp?(c)?GDI?1999
V1.0.0?(10/4/99)
Phil?Anderson.?philip@gd-ind.com

Simple?FTP?client?functionality.?If?you?have?any?problems?with?it
please?tell?me?about?them?(or?better?still?e-mail?me?the?fixed
code).?Please?feel?free?to?use?this?code?however?you?wish?although
if?you?make?changes?please?put?your?name?in?the?source?&?comment?what
you?did.

Nothing?awesome?going?on?here?at?all?(all?sockets?are?used?in
synchronous?blocking?mode)?but?it?does?the?following
things?WinInet?doesn‘t?seem?to:
*?Supports?loads?of?different?firewalls?(I?think?I?don‘t
??have?access?to?all?types?so?they?haven‘t?all?been?fully
??tested?yet)
*?Allows?you?to?execute?any?command?on?the?FTP?server
*?Adds?10K?to?your?app?install?rather?than?1Mb?#;-)

Functions?return?TRUE?if?everything?went?OK?FALSE?if?there?was?an
error.?A?message?describing?the?outcome?(normally?the?one?returned
from?the?server)?will?be?in?m_retmsg?on?return?from?the?function.
There?are?a?few?error?msgs?in?the?app‘s?string?table?that?you‘ll
need?to?paste?into?your?app?along?with?this?file?&?FTPclient.h

If?you?created?your?app?without?checking?the?“Use?Windows?Sockets“
checkbox?in?AppWizard?you‘ll?need?to?add?the?following?bit?of?code
to?you?app‘s?InitInstance()

if(!AfxSocketInit())
{
AfxMessageBox(“Could?not?initialize?Windows?Sockets!“);
return?FALSE;
}

To?use:

1/?Create?an?object?of?CFTPCommandProcessor.

2/?Use?LogOnToServer()?to?connect?to?the?server.?Any?arguments
not?used?(e.g.?if?you‘re?not?using?a?firewall)?pass?an?empty
string?or?zero?for?numeric?args.?You?must?pass?a?server?port
number?use?the?FTP?default?of?21?if?you?don‘t?know?what?it?is.

3/?Use?MoveFile()?to?upload/download?a?file?1st?arg?is?local?file
path?2nd?arg?is?remote?file?path?3rd?arg?is?TRUE?for?a?PASV
connection?(required?by?some?firewalls)?FALSE?otherwise?4th?arg
is?TRUE?to?upload?FALSE?to?download?file.?MoveFile?only?works?in
synchronous?mode?(ie?the?function?will?not?return?‘till?the?transfer
is?finished).?File?transfers?are?always?of?type?BINARY.

4/?You?can?use?FTPcommand()?to?execute?FTP?commands?(eg
FTPcommand(“CWD?/home/mydir“)?to?change?directory?on?the?server)
note?that?this?function?will?return?FALSE?unless?the?server?response
is?a?200?series?code.?This?should?work?fine?for?most?FTP?commands?
otherwise?you?can?use?WriteStr()?and?ReadStr()?to?send?commands?&?
interpret?the?response?yourself.?Use?LogOffServer()?to?disconnect
when?done.

/////////////////////////////////////////////////////////////////////*/


#include?“stdafx.h“
#include?“MyFTPClient.h“
#include?“FTPCommandProcessor.h“


#ifdef?_DEBUG
#undef?THIS_FILE
static?char?THIS_FILE[]=__FILE__;
#define?new?DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
//?Construction/Destruction
//////////////////////////////////////////////////////////////////////


?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件?????155726??2009-06-05?14:33??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\Debug\FTPSOCKET.exe

?????文件??????13850??2003-09-27?04:32??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\FTPCommandProcessor.cpp

?????文件???????1319??2003-09-27?02:46??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\FTPCommandProcessor.h

?????文件??????22572??2003-09-30?20:13??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\FTPSOCKET.APS

?????文件???????1746??2003-10-19?16:43??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\FTPSOCKET.clw

?????文件???????4500??2003-09-27?04:39??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\FTPSOCKET.dsp

?????文件????????543??2002-08-06?13:24??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\FTPSOCKET.dsw

?????文件?????173056??2003-10-19?16:43??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\FTPSOCKET.ncb

?????文件??????82944??2009-06-09?21:13??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\FTPSOCKET.opt

?????文件????????758??2003-09-30?20:13??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\FTPSOCKET.plg

?????文件???????6911??2003-09-27?03:38??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\FTPSOCKET.rc

?????文件???????1614??2002-08-07?18:02??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\ListItem.cpp

?????文件????????691??2002-03-19?16:53??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\ListItem.h

?????文件???????2205??2003-09-27?03:16??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\MyFTPClient.cpp

?????文件???????1357??2002-08-06?13:24??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\MyFTPClient.h

?????文件??????18438??2003-09-27?03:37??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\MyFTPClientDlg.cpp

?????文件???????3598??2003-09-27?03:19??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\MyFTPClientDlg.h

?????文件???????3633??2002-08-06?13:24??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\ReadMe.txt

?????文件???????1078??2002-08-06?13:24??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\res\FTPSOCKET.ico

?????文件????????401??2002-08-06?13:24??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\res\FTPSOCKET.rc2

?????文件???????1462??2002-08-08?20:58??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\Resource.h

?????文件????????211??2003-09-27?02:53??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\StdAfx.cpp

?????文件???????1108??2002-08-06?19:04??用Socket編程實現FTP\用Sochets實現??FTP\ftp客戶端\StdAfx.h

?????文件???????1190??2003-09-29?13:33??用Socket編程實現FTP\用Sochets實現??FTP\MyFtpServer\MyFtpServer\AccountDialog.cpp

?????文件???????1261??2003-09-29?13:33??用Socket編程實現FTP\用Sochets實現??FTP\MyFtpServer\MyFtpServer\AccountDialog.h

?????文件?????147550??2009-06-05?14:33??用Socket編程實現FTP\用Sochets實現??FTP\MyFtpServer\MyFtpServer\Debug\MyFtpServer.exe

?????文件??????37604??2003-09-29?15:06??用Socket編程實現FTP\用Sochets實現??FTP\MyFtpServer\MyFtpServer\MyFtpServer.aps

?????文件???????2421??2003-09-29?21:45??用Socket編程實現FTP\用Sochets實現??FTP\MyFtpServer\MyFtpServer\MyFtpServer.clw

?????文件???????2133??2003-09-27?05:04??用Socket編程實現FTP\用Sochets實現??FTP\MyFtpServer\MyFtpServer\MyFtpServer.cpp

?????文件???????4547??2003-09-29?16:52??用Socket編程實現FTP\用Sochets實現??FTP\MyFtpServer\MyFtpServer\MyFtpServer.dsp

............此處省略29個文件信息

評論

共有 條評論