如何取消 CFtpConnection::PutFile?

发布于 2024-12-11 22:23:48 字数 389 浏览 0 评论 0原文

使用 UDP 套接字的 ftp 服务器和客户端 (C windows)。

服务器使用 CFtpConnection::PutFile< 将文件放在客户端上/a>

一个大文件需要几分钟的时间,因此客户端需要能够取消 PutFile()。

如果 PutFile() 正忙于传输数据,如何检查取消 udp 消息?创建另一个线程......?

任何正确方向的建议都值得赞赏,谢谢。

ftp server and client (C windows) using a UDP socket.

The server puts files on the client using CFtpConnection::PutFile

A large file takes several minutes, so the client needs to be able to cancel PutFile().

How do I check for a cancel udp message if PutFile() is busy transferring data? Create another thread....?

Any advice in the right direction is appreciated, thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情话难免假 2024-12-18 22:23:48

由于您需要对传输过程进行某种程度的控制,因此您无法采用 PutFile 的高级方法,并且您必须扮演更直接的角色。

使用 CFtpConnection::OpenFile 用于写入,这将为您提供一个 CInternetFile*。然后,您可以使用 CInternetFile::Write 自己做;您还可以选择随时停止发送数据并关闭连接。

WinInet 文档的此页提到了 MS 知识库中的 HOWTO 和示例,这可能有助于研究实现。

Since you need some level of control for the transfer process, you can't go with the high-level approach of PutFile and you 'll have to take a more direct role.

Open the remote file with CFtpConnection::OpenFile for writing, which will give you a CInternetFile*. You would then write data using CInternetFile::Write by yourself; this will also give you the option to stop sending data and close the connection at any time.

This page of WinInet documentation mentions a HOWTO and a sample in the MS Knowledge Base, which might be good to look into for an implementation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文