Tagged Questions

16
votes
12answers
25k views

How to Build a simple HTTP server in C

I need to build a simple HTTP server in C. Any guidance? Links? Samples? Thanks!
2
votes
3answers
184 views

Handling CGI requests in a bare-bones http server

I am writing a basic http server in C. Handling a simple static .html file is easy but I have no idea how to handle dynamic .pl .cgi file extensions. I know I will have to use exec() but how is my ...
1
vote
3answers
75 views

I wrote a simple http server that seems to work, but I run into issues when trying to access through browser

The main issue I am having doesn't seem to be in the code itself, however, I posted the code just in case. First, when I run the server and use "telnet localhost 46745" in a separate terminal I get a ...