Usermode - Adding stub httpd
authorJohn Hodge <[email protected]>
Fri, 29 Nov 2013 01:46:03 +0000 (09:46 +0800)
committerJohn Hodge <[email protected]>
Fri, 29 Nov 2013 01:46:03 +0000 (09:46 +0800)
Usermode/Applications/httpd_src/Makefile [new file with mode: 0644]
Usermode/Applications/httpd_src/cgi.c [new file with mode: 0644]
Usermode/Applications/httpd_src/http.c [new file with mode: 0644]
Usermode/Applications/httpd_src/include/common.h [new file with mode: 0644]
Usermode/Applications/httpd_src/logging.c [new file with mode: 0644]
Usermode/Applications/httpd_src/main.c [new file with mode: 0644]
Usermode/Applications/httpd_src/net.c [new file with mode: 0644]
Usermode/Applications/httpd_src/server.c [new file with mode: 0644]

diff --git a/Usermode/Applications/httpd_src/Makefile b/Usermode/Applications/httpd_src/Makefile
new file mode 100644 (file)
index 0000000..4ff7256
--- /dev/null
@@ -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 (file)
index 0000000..e69de29
diff --git a/Usermode/Applications/httpd_src/http.c b/Usermode/Applications/httpd_src/http.c
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/Usermode/Applications/httpd_src/include/common.h b/Usermode/Applications/httpd_src/include/common.h
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/Usermode/Applications/httpd_src/logging.c b/Usermode/Applications/httpd_src/logging.c
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/Usermode/Applications/httpd_src/main.c b/Usermode/Applications/httpd_src/main.c
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/Usermode/Applications/httpd_src/net.c b/Usermode/Applications/httpd_src/net.c
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/Usermode/Applications/httpd_src/server.c b/Usermode/Applications/httpd_src/server.c
new file mode 100644 (file)
index 0000000..e69de29

UCC git Repository :: git.ucc.asn.au