Webserver+3d print

Dependents:   Nucleo

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ftp_server_misc.h Source File

ftp_server_misc.h

Go to the documentation of this file.
00001 /**
00002  * @file ftp_server_misc.h
00003  * @brief FTP server (miscellaneous functions)
00004  *
00005  * @section License
00006  *
00007  * Copyright (C) 2010-2017 Oryx Embedded SARL. All rights reserved.
00008  *
00009  * This file is part of CycloneTCP Open.
00010  *
00011  * This program is free software; you can redistribute it and/or
00012  * modify it under the terms of the GNU General Public License
00013  * as published by the Free Software Foundation; either version 2
00014  * of the License, or (at your option) any later version.
00015  *
00016  * This program is distributed in the hope that it will be useful,
00017  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00018  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00019  * GNU General Public License for more details.
00020  *
00021  * You should have received a copy of the GNU General Public License
00022  * along with this program; if not, write to the Free Software Foundation,
00023  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
00024  *
00025  * @author Oryx Embedded SARL (www.oryx-embedded.com)
00026  * @version 1.7.6
00027  **/
00028 
00029 #ifndef _FTP_SERVER_MISC_H
00030 #define _FTP_SERVER_MISC_H
00031 
00032 //Dependencies
00033 #include "ftp/ftp_server.h"
00034 
00035 //FTP server related functions
00036 uint16_t ftpServerGetPassivePort(FtpServerContext *context);
00037 
00038 void ftpServerCloseConnection(FtpServerContext *context,
00039    FtpClientConnection *connection);
00040 
00041 FtpClientConnection *ftpServerAcceptControlConnection(FtpServerContext *context);
00042 void ftpServerCloseControlConnection(FtpClientConnection *connection);
00043 
00044 error_t ftpServerOpenDataConnection(FtpServerContext *context,
00045    FtpClientConnection *connection);
00046 
00047 void ftpServerAcceptDataConnection(FtpClientConnection *connection);
00048 void ftpServerCloseDataConnection(FtpClientConnection *connection);
00049 
00050 error_t ftpServerGetPath(FtpClientConnection *connection,
00051    const char_t *inputPath, char_t *outputPath, size_t maxLen);
00052 
00053 uint_t ftpServerGetFilePermissions(FtpServerContext *context,
00054    FtpClientConnection *connection, const char_t *path);
00055 
00056 const char_t *ftpServerStripRootDir(FtpServerContext *context, const char_t *path);
00057 const char_t *ftpServerStripHomeDir(FtpClientConnection *connection, const char_t *path);
00058 
00059 #endif
00060