changeset 3:e96eaa6b74c1

rename project to hey!
author Dennis <dennisconcepcionmartin@gmail.com>
date Mon, 17 Jul 2023 19:16:47 +0100
parents 052cf5cf100a
children 691358f944e8
files CMakeLists.txt README.md
diffstat 2 files changed, 6 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Mon Jul 17 19:11:53 2023 +0100
+++ b/CMakeLists.txt	Mon Jul 17 19:16:47 2023 +0100
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.1)
-project(web-server 
+project(hey 
 	VERSION 1.0 
 	LANGUAGES C
 )
 
-add_executable(web-server src/main.c)
+add_executable(hey src/main.c)
--- a/README.md	Mon Jul 17 19:11:53 2023 +0100
+++ b/README.md	Mon Jul 17 19:16:47 2023 +0100
@@ -1,7 +1,10 @@
-# web-server
+# Hey!
+
+In an attemp to learn about networking programming, I'm building a HTTP server. It's called **Hey!**.
 
 ## References
 
 - [What is a web server](https://developer.mozilla.org/en-US/docs/Learn/Common_questions/Web_mechanics/What_is_a_web_server)
 - [HTTP Protocol](https://www.rfc-editor.org/rfc/pdfrfc/rfc7231.txt.pdf)
 - [Socket programming Oracle](https://docs.oracle.com/cd/E19253-01/817-4415/6mjum5som/index.html)
+- [Beej's Guide to Network Programming](https://beej.us/guide/bgnet/html/split/index.html)