summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/main.c b/main.c
index 1561a09..137ac14 100644
--- a/main.c
+++ b/main.c
@@ -38,16 +38,19 @@
#include "config.h"
#include "download.h"
#include "http.h"
+#include "upload.h"
enum page {
PAGE_BROWSE,
PAGE_DOWNLOAD,
+ PAGE_UPLOAD,
PAGE__MAX
};
static const char *const pages[PAGE__MAX] = {
BROWSE_URL,
- DOWNLOAD_URL
+ DOWNLOAD_URL,
+ UPLOAD_URL
};
int
@@ -96,6 +99,9 @@ main(void)
case PAGE_DOWNLOAD:
ret = download(&r);
break;
+ case PAGE_UPLOAD:
+ ret = upload(&r);
+ break;
default:
http_exit(&r, KHTTP_404, NULL);
}