...
Files
ftp-c.h/ftp-c.c
Prototype
Code Block |
---|
CPU_BOOLEAN FTPc_Close (FTPc_CONN *p_conn,
FTPc_ERR *p_err) |
Arguments
p_conn
Pointer to FTP Client Connection object.
...
Notes / Warnings
None.
Example Usage
Code Block |
---|
FTPc_CONN conn;
CPU_BOOLEAN result;
FTPc_ERR err;
result = FTPc_Close(&conn, &err);
if (result != DEF_OK) {
printf("FTPc_Close() failed.\n\r");
} |