A slight rejig of the server/service setup for the backend databases. Also including the protocol

module names.
This commit is contained in:
Mark Riddoch
2013-06-14 17:05:00 +02:00
parent 2260bf7587
commit cf6b18a4fe
4 changed files with 13 additions and 12 deletions

View File

@ -19,7 +19,7 @@
*/
/*
* The servER level definitions within the gateway
* The server level definitions within the gateway
*
* Revision History
*
@ -30,6 +30,7 @@
typedef struct server {
char *name; /* Server name/IP address*/
int port; /* Port to listen on */
struct server *next; /* Next service protocol */
char *protocol; /* Protocol module to use */
struct server *next; /* Next server */
} SERVER;
#endif