summaryrefslogtreecommitdiff
path: root/server/src/configuration.h
diff options
context:
space:
mode:
authordeva <deva>2010-01-04 11:01:30 +0000
committerdeva <deva>2010-01-04 11:01:30 +0000
commitfc6e95c57f8f7f0acc083daf15dbac828e627e20 (patch)
tree79132d6c4f5dff5a848c6dbee3f6e1e1d50ec43b /server/src/configuration.h
parent99832c46482751486e3348f2e5e18ee46d0a2856 (diff)
Added config, cli and compiletime check for ssl usage. Still needs to check is microhttpd has ssl support.
Diffstat (limited to 'server/src/configuration.h')
-rw-r--r--server/src/configuration.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/server/src/configuration.h b/server/src/configuration.h
index 3d9f7f1..c12bf19 100644
--- a/server/src/configuration.h
+++ b/server/src/configuration.h
@@ -54,6 +54,13 @@ namespace Conf {
extern std::string database_passwd;
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;
};
#endif/*__ARTEFACT_CONFIGURATION_H__*/