shttp

A small http server written in C

git clone git://git.janzachar.dev/shttp.git


0## README
1
2A small http server written in C.
3
4### Features
5
6* single-threaded
7* no dynamic memory allocation
8* tries to be really close to rfc9110 and rfc9110
9* spits files on a socket, and nothing more
10
11Build with:
12```
13gcc -o main *.c
14```
15
16### License
17
18This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
19
20This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
21
22You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.
23
24