From: John Hodge Date: Fri, 29 Nov 2013 01:46:03 +0000 (+0800) Subject: Usermode - Adding stub httpd X-Git-Tag: rel0.15~72 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=f0cfc200dffdccfd13e31bbd6e9d583eec5d5862;p=tpg%2Facess2.git Usermode - Adding stub httpd --- diff --git a/Usermode/Applications/httpd_src/Makefile b/Usermode/Applications/httpd_src/Makefile new file mode 100644 index 00000000..4ff72560 --- /dev/null +++ b/Usermode/Applications/httpd_src/Makefile @@ -0,0 +1,11 @@ +# Project: Simple CGI-Capable HTTP Server + +-include ../Makefile.cfg + +LDFLAGS += -lnet + +OBJ = main.o net.o server.o http.o cgi.o logging.o +BIN = httpd +DIR = SBin + +-include ../Makefile.tpl diff --git a/Usermode/Applications/httpd_src/cgi.c b/Usermode/Applications/httpd_src/cgi.c new file mode 100644 index 00000000..e69de29b diff --git a/Usermode/Applications/httpd_src/http.c b/Usermode/Applications/httpd_src/http.c new file mode 100644 index 00000000..e69de29b diff --git a/Usermode/Applications/httpd_src/include/common.h b/Usermode/Applications/httpd_src/include/common.h new file mode 100644 index 00000000..e69de29b diff --git a/Usermode/Applications/httpd_src/logging.c b/Usermode/Applications/httpd_src/logging.c new file mode 100644 index 00000000..e69de29b diff --git a/Usermode/Applications/httpd_src/main.c b/Usermode/Applications/httpd_src/main.c new file mode 100644 index 00000000..e69de29b diff --git a/Usermode/Applications/httpd_src/net.c b/Usermode/Applications/httpd_src/net.c new file mode 100644 index 00000000..e69de29b diff --git a/Usermode/Applications/httpd_src/server.c b/Usermode/Applications/httpd_src/server.c new file mode 100644 index 00000000..e69de29b