summaryrefslogtreecommitdiffstats
path: root/include/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/config.h')
-rw-r--r--include/config.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h
index 83253f7..1a0b17c 100644
--- a/include/config.h
+++ b/include/config.h
@@ -2,6 +2,7 @@
#define GMNISRV_CONFIG
#include <arpa/inet.h>
#include <openssl/x509.h>
+#include <stdbool.h>
struct gmnisrv_tls {
char *store;
@@ -13,8 +14,12 @@ struct gmnisrv_tls {
struct gmnisrv_host {
char *hostname;
char *root;
+ char *index;
+ bool autoindex;
+
X509 *x509;
EVP_PKEY *pkey;
+
struct gmnisrv_host *next;
};