Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Unable to render {include} The included page could not be found.
Unable to render {include} The included page could not be found.

FTPc_Close()

Closes the FTP connection.

Files

ftp-c.h/ftp-c.c

Prototype

CPU_BOOLEAN FTPc_Close (NET_ERR *p_err_net);

Arguments

p_err_net Pointer to variable that will receive the return error code from this function.

Returned Values

DEF_OK, FTP connection successfully closed;

DEF_FAIL, otherwise.

Required Configuration

None.

Notes / Warnings

None.

Example Usage

CPU_BOOLEAN result;

NET_ERR err;

 

result = FTPc_Close(&err);

if (result != DEF_OK) {

printf("FTPc_Close() failed.\n\r");

}

  • No labels