INT WINAPI FtpReset( |
|
HCLIENT hClient |
|
); |
The FtpReset function resets the client state and
resynchronizes with the server. This function is typically
called after an unexpected error has occurred, or an operation has
been canceled.
Parameters
- hClient
- Handle to the client session.
Return Value
If the function succeeds, the return value is the server result
code. If the function fails, the return value is FTP_ERROR. To get
extended error information, call FtpGetLastError.
Remarks
The client cannot be reset while a file transfer is in progress or
if the client is in a blocked state. To abort a file transfer, use
the FtpCancel function.
Requirements
Minimum Desktop Platform: Windows 7 (Service Pack 1)
Minimum Server Platform: Windows Server 2008 R2 (Service Pack 1)
Header File: cstools10.h
Import Library: csftpv10.lib
Unicode: Implemented as Unicode and ANSI versions.
See Also
FtpCancel
|