- updated for debian compliance

This commit is contained in:
Mark Vejvoda
2012-11-12 04:50:34 +00:00
parent 2469503128
commit 0cd2389e95
5 changed files with 6 additions and 7 deletions

View File

@@ -600,7 +600,7 @@ namespace Shared { namespace Util {
/*! /*!
** \brief Convert an UTF-8 String into a WideChar String ** \brief Convert an UTF-8 String into a WideChar String
** \todo This class must be removed as soon as possible and is only here to prevent against ** \This class must be removed as soon as possible and is only here to prevent against
** stange bugs with the previous implementation ** stange bugs with the previous implementation
*/ */
struct WString struct WString

View File

@@ -69,7 +69,7 @@ int ftpDeleteAccount(const char* name)
* The translated path depends on the current working directory of the * The translated path depends on the current working directory of the
* session and the root path of the session. In addition the path will * session and the root path of the session. In addition the path will
* be normalized. * be normalized.
* @todo normalize root and check if normalized path really exists * normalize root and check if normalized path really exists
* *
* @param name user name * @param name user name
* @param passw account password * @param passw account password

View File

@@ -75,7 +75,7 @@ void ftpRemoveDoubleSlash(char* path)
* The function catenates all passed strings to a new string and assures that * The function catenates all passed strings to a new string and assures that
* the result does not exceed MAX_PATH_LEN. The last parameter has to be * the result does not exceed MAX_PATH_LEN. The last parameter has to be
* NULL. * NULL.
* @todo Not all embedded environments support variadic functions, or they are * Not all embedded environments support variadic functions, or they are
* too expensive. * too expensive.
* *
* @param dest user name * @param dest user name

View File

@@ -123,7 +123,6 @@ if(VERBOSE_MODE_ENABLED) printf("Server passive port successfully started\n");
* In order of avoid blocking of ftpExecute this function can be used to * In order of avoid blocking of ftpExecute this function can be used to
* determine if the server has something to do. You can call this function in * determine if the server has something to do. You can call this function in
* a loop and everytime it returns nonezero its time to call ftpExecute(). * a loop and everytime it returns nonezero its time to call ftpExecute().
* @todo implement me
* *
* @return 0 noting to do; else server has received some data * @return 0 noting to do; else server has received some data
*/ */

View File

@@ -323,7 +323,7 @@ if(VERBOSE_MODE_ENABLED) printf("ftpChangeDir path [%s] realPath [%s] NEW sessio
} }
/** /**
* @todo documentation * Open an ftp transmission
*/ */
void ftpOpenTransmission(int id, operation_E op, void* fsHandle, socket_t dataSocket, uint32_t fileSize) void ftpOpenTransmission(int id, operation_E op, void* fsHandle, socket_t dataSocket, uint32_t fileSize)
{ {
@@ -335,7 +335,7 @@ void ftpOpenTransmission(int id, operation_E op, void* fsHandle, socket_t dataSo
} }
/** /**
* @todo documentation * Close an ftp transmission
*/ */
void ftpCloseTransmission(int id) void ftpCloseTransmission(int id)
{ {
@@ -366,7 +366,7 @@ void ftpCloseTransmission(int id)
} }
/** /**
* @todo documentation * Get the active transaction count
*/ */
int ftpGetActiveTransCnt(void) int ftpGetActiveTransCnt(void)
{ {