Addition of dependencies to the makefile

New make target of "make depend"
Addition of doxygen building ability
Cleanup of docygen comment blocks
Initial telnetd protocol module structure
This commit is contained in:
Mark Riddoch
2013-06-17 14:03:05 +02:00
parent 876af46cdd
commit 1300c5d089
31 changed files with 2284 additions and 147 deletions

View File

@ -18,19 +18,23 @@
* Copyright SkySQL Ab 2013
*/
/*
/**
* @file server.h
*
* The server level definitions within the gateway
*
* @verbatim
* Revision History
*
* Date Who Description
* 14/06/13 Mark Riddoch Initial implementation
*
* @endverbatim
*/
typedef struct server {
char *name; /* Server name/IP address*/
int port; /* Port to listen on */
char *protocol; /* Protocol module to use */
struct server *next; /* Next server */
char *name; /**< Server name/IP address*/
int port; /**< Port to listen on */
char *protocol; /**< Protocol module to use */
struct server *next; /**< Next server */
} SERVER;
#endif