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

@ -36,6 +36,7 @@
typedef struct backend {
char *hostname; /* Server hostname */
unsigned short port; /* Port on which the server listens */
char *protocol; /* Protocol to use to connect to the server */
int count; /* Number of connections to the server */
} BACKEND;