From 284cedb6806b821267a3225670872bec1db165fc Mon Sep 17 00:00:00 2001 From: franchioping Date: Mon, 24 Jun 2024 19:58:17 +0100 Subject: [PATCH] Initial commit --- .gitignore | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 3 +++ 2 files changed, 70 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8fcfefa --- /dev/null +++ b/.gitignore @@ -0,0 +1,67 @@ +# ---> CMake +CMakeLists.txt.user +CMakeCache.txt +CMakeFiles +CMakeScripts +Testing +Makefile +cmake_install.cmake +install_manifest.txt +compile_commands.json +CTestTestfile.cmake +_deps + +# ---> C +# Prerequisites +*.d + +# Object files +*.o +*.ko +*.obj +*.elf + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Kernel Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf + diff --git a/README.md b/README.md new file mode 100644 index 0000000..e82801c --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# HttpServer + +Simple HTTP 1.1 server made in C using sockets \ No newline at end of file