A small http server written in C
git clone git://git.janzachar.dev/shttp.git
0## README12A small http server written in C.34### Features56* single-threaded7* no dynamic memory allocation8* tries to be really close to rfc9110 and rfc91109* spits files on a socket, and nothing more1011Build with:12```13gcc -o main *.c14```1516### License1718This 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.1920This 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.2122You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.2324