Writing an HTTP Server in C
A super small program that lists your machines outward facing IP addresses, a simple TCP server that will capitalize a string sent to it, and a TCP Client.
Making a simple HTTP webserver in C -
In this post we will go over creating a simple webserver in C, step-by-step. First, we'll start with some background into webservers, and subsequently add more ...
bloominstituteoftechnologyC-Web-Server
For example: http://localhost:3490/index.html. should serve the file ./serverroot/index.html. Examine the skeleton source code in server.c and cache.c for ...
Building a Simple Web Server in C
C-Web-Server is a fun little project to practice C programming while reviewing concepts such as LRU cache, memory management, and the HTTP protocol. Caveats when sending header... · Caution: Always initialize your...
Build a simple HTTP server in C [closed]
An HTTP server is conceptually simple: It gets more difficult depending on how much of HTTP you want to support - POST is a little more complicated, scripts, ...