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,8 +18,8 @@
* Copyright SkySQL Ab 2013
*/
/*
* The query router interface mechanisms
/**
* @file router.h - The query router interface mechanisms
*
* Revision History
*
@ -38,7 +38,8 @@
typedef void *ROUTER;
/*
/**
* @verbatim
* The "module object" structure for a query router module
*
* The entry points are:
@ -49,6 +50,7 @@ typedef void *ROUTER;
* closeSession Called when a session is closed
* routeQuery Called on each query that requires
* routing
* @endverbatim
*/
typedef struct {
ROUTER *(*createInstance)(SERVICE *service);