From 7765c6964aab2d21378f9aa0e71e5511018bfa8e Mon Sep 17 00:00:00 2001 From: Ivaylo Ivanov Date: Mon, 22 Oct 2018 08:55:15 +0200 Subject: [PATCH] Add initial http structure --- README.md | 1 + http/client.c | 0 http/public/greetings.html | 0 http/public/index.html | 0 http/server.c | 0 5 files changed, 1 insertion(+) create mode 100644 http/client.c create mode 100644 http/public/greetings.html create mode 100644 http/public/index.html create mode 100644 http/server.c diff --git a/README.md b/README.md index ba5d2c8..820ee01 100644 --- a/README.md +++ b/README.md @@ -2,5 +2,6 @@ This project contains some basic UNIX command line tools I had to do for TU. Currently the toolset is ther following: * mygrep - a simplified version of grep +* http - an implementation of HTTP 1.1 client and server Feel free to read the descriptions for each tool. \ No newline at end of file diff --git a/http/client.c b/http/client.c new file mode 100644 index 0000000..e69de29 diff --git a/http/public/greetings.html b/http/public/greetings.html new file mode 100644 index 0000000..e69de29 diff --git a/http/public/index.html b/http/public/index.html new file mode 100644 index 0000000..e69de29 diff --git a/http/server.c b/http/server.c new file mode 100644 index 0000000..e69de29