mikroSDK Reference Manual
ftp_server_control.h
Go to the documentation of this file.
1
31#ifndef _FTP_SERVER_CONTROL_H
32#define _FTP_SERVER_CONTROL_H
33
34//Dependencies
35#include "core/net.h"
36#include "ftp/ftp_server.h"
37
38//C++ guard
39#ifdef __cplusplus
40extern "C" {
41#endif
42
43//FTP server related functions
44void ftpServerRegisterControlChannelEvents(FtpClientConnection *connection,
45 SocketEventDesc *eventDesc);
46
47void ftpServerProcessControlChannelEvents(FtpClientConnection *connection,
48 uint_t eventFlags);
49
50void ftpServerAcceptControlChannel(FtpServerContext *context);
51void ftpServerCloseControlChannel(FtpClientConnection *connection);
52
53//C++ guard
54#ifdef __cplusplus
55}
56#endif
57
58#endif
FTP server (File Transfer Protocol)
TCP/IP stack core.
Structure describing socket events.
Definition socket.h:395