summaryrefslogtreecommitdiff
path: root/server/src/configuration.h
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/configuration.h')
-rw-r--r--server/src/configuration.h18
1 files changed, 16 insertions, 2 deletions
diff --git a/server/src/configuration.h b/server/src/configuration.h
index 3d9f7f1..8980bfd 100644
--- a/server/src/configuration.h
+++ b/server/src/configuration.h
@@ -45,15 +45,29 @@ namespace Conf {
extern time_t db_max_ttl;
extern time_t pentominos_max_ttl;
- extern std::string pentominos_addr;
- extern port_t pentominos_port;
+ extern std::string artefact_addr;
+ extern port_t artefact_port;
+ extern bool artefact_use_ssl;
+
+ extern int artefact_poolsize;
extern std::string database_backend;
extern std::string database_addr;
extern std::string database_user;
extern std::string database_passwd;
+ extern int database_poolsize;
+
extern std::string xml_basedir;
+
+ extern bool use_ssl;
+ extern std::string ssl_key;
+ extern std::string ssl_cert;
+
+ extern int connection_limit;
+ extern int connection_timeout;
+
+ extern std::string session_path;
};
#endif/*__ARTEFACT_CONFIGURATION_H__*/