summaryrefslogtreecommitdiff
path: root/uhttpd.h
diff options
context:
space:
mode:
Diffstat (limited to 'uhttpd.h')
-rw-r--r--uhttpd.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/uhttpd.h b/uhttpd.h
index d3ce591..1877cd4 100644
--- a/uhttpd.h
+++ b/uhttpd.h
@@ -79,7 +79,6 @@ struct config {
char docroot[PATH_MAX];
char *realm;
char *file;
- char *index_file;
char *error_handler;
int no_symlinks;
int no_dirlists;
@@ -206,6 +205,11 @@ struct auth_realm {
struct auth_realm *next;
};
+struct index_file {
+ const char *name;
+ struct index_file *next;
+};
+
#ifdef HAVE_CGI
struct interpreter {
char path[PATH_MAX];