How to Build a simple HTTP server in C - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T18:38:58Z http://stackoverflow.com/feeds/question/176409 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c 3 How to Build a simple HTTP server in C nute 2008-10-06T22:10:24Z 2008-10-07T01:23:04Z <p>I need to build a simple HTTP server in C. Any guidance? Links? Samples? Thanks!</p> http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c/176412#176412 0 Answer by billpg for How to Build a simple HTTP server in C billpg 2008-10-06T22:11:11Z 2008-10-06T22:11:11Z <p>How simple?</p> http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c/176417#176417 2 Answer by warren for How to Build a simple HTTP server in C warren 2008-10-06T22:12:32Z 2008-10-06T22:12:32Z <p>I'd suggest looking at the source to something like <a href="http://www.lighttpd.net/" rel="nofollow">lighthttpd</a>.</p> http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c/176418#176418 4 Answer by Eclipse for How to Build a simple HTTP server in C Eclipse 2008-10-06T22:12:41Z 2008-10-06T22:12:41Z <p>Open a TCP socket on port 80, start listening for new connections, implement <a href="http://www.w3.org/Protocols/rfc2616/rfc2616.html" rel="nofollow">this</a>. Depending on your purposes, you can ignore almost everything. At the easiest, you can send the same response for every request, which just involves writing text to the socket.</p> http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c/176419#176419 3 Answer by Daniel A. White for How to Build a simple HTTP server in C Daniel A. White 2008-10-06T22:12:55Z 2008-10-06T22:30:41Z <p>I have written my own that you can use. This one works has sqlite, is thread safe and is in C++ for UNIX.</p> <p>You should be able to pick it apart and use the C compatible code.</p> <p><a href="http://code.google.com/p/mountain-cms/" rel="nofollow">http://code.google.com/p/mountain-cms/</a></p> http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c/176421#176421 0 Answer by arul for How to Build a simple HTTP server in C arul 2008-10-06T22:13:26Z 2008-10-06T22:13:26Z <p>Use platform specific socket functions to encapsulate the HTTP protocol, just like guys behind <a href="http://en.wikipedia.org/wiki/Apache_HTTP_Server" rel="nofollow">Apache</a> did.</p> http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c/176422#176422 6 Answer by Adam Rosenfield for How to Build a simple HTTP server in C Adam Rosenfield 2008-10-06T22:13:39Z 2008-10-06T22:13:39Z <p>I suggest you take a look at <a href="http://tinyhttpd.sourceforge.net/" rel="nofollow">tiny httpd</a>. If you want to write it from scratch, then you'll want to <em>thoroughly</em> read <a href="http://tools.ietf.org/html/rfc2616" rel="nofollow">RFC 2616</a>. Use <a href="http://en.wikipedia.org/wiki/Berkeley_sockets" rel="nofollow">BSD sockets</a> to access the network at a really low level.</p> http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c/176427#176427 2 Answer by Adam Davis for How to Build a simple HTTP server in C Adam Davis 2008-10-06T22:15:34Z 2008-10-06T22:15:34Z <p>An HTTP server is conceptually simple:</p> <ul> <li>Open port 80 for listening</li> <li>When contact is made, gather a little information (get mainly - you can ignore the rest for now)</li> <li>Translate the request into a file request</li> <li>Open the file and spit it back at the client</li> </ul> <p>It gets more difficult depending on how much of HTTP you want to support - POST is a little more complicated, scripts, handling multiple requests, etc.</p> <p>But the base is very simple.</p> <p>-Adam</p> http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c/176470#176470 1 Answer by Bob Nadler for How to Build a simple HTTP server in C Bob Nadler 2008-10-06T22:30:51Z 2008-10-06T22:30:51Z <p><a href="http://shttpd.sourceforge.net/" rel="nofollow">Simple HTTP Daemon</a> (SHTTPD) is pretty good. In particular, it's embeddable and compiles under Windows, Windows CE, and UNIX.</p> http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c/176477#176477 2 Answer by Ates Goral for How to Build a simple HTTP server in C Ates Goral 2008-10-06T22:35:14Z 2008-10-07T00:15:22Z <p>I'd recommend that you take a look at: <a href="http://www.jmarshall.com/easy/http" rel="nofollow">A Practical Guide to Writing Clients and Servers</a></p> <p>What you have to implement in incremental steps is:</p> <ol> <li>Get your basic TCP sockets layer running (listen on port/ports, accept client connections and send/receive data).</li> <li>Implement a buffered reader so that you can read requests one line (delimited by CRLF) at a time.</li> <li>Read the very first line. Parse out the method, the request version and the path.</li> <li>Implement generic header reader for the "Header: value" syntax. Don't forget unfolding folded headers.</li> <li>Check the request method, content type and content size to determine how/if the body will be read.</li> <li>Implement decoding of content based on content-type.</li> <li>If you're going to support HTTP 1.1, implement things like "100 Continue", keep-alive, chunked transfer.</li> <li>Add robustness/security measures like detecting incomplete requests, limiting max number of clients etc.</li> <li>Shrink wrap your code and open-source it :)</li> </ol> http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c/176491#176491 1 Answer by Omer van Kloeten for How to Build a simple HTTP server in C Omer van Kloeten 2008-10-06T22:38:50Z 2008-10-06T22:38:50Z <p>The <a href="http://www.ietf.org/rfc/rfc2616.txt" rel="nofollow">HTTP spec</a> and <a href="https://addons.mozilla.org/en-US/firefox/addon/1843" rel="nofollow">Firebug</a> were very useful for me when I had to do it for <em>my</em> homework.</p> <p>Good luck with yours. :)</p> http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c/176895#176895 0 Answer by anjanb for How to Build a simple HTTP server in C anjanb 2008-10-07T01:23:04Z 2008-10-07T01:23:04Z <p><a href="http://www.manning.com/hethmon/" rel="nofollow">http://www.manning.com/hethmon/</a> -- "Illustrated Guide to HTTP by Paul S. Hethmon" from Manning is a very good book to learn HTTP protocol and will be very useful to someone implementing it /extending it.</p>