How to Build a simple HTTP server in C - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T18:38:58Zhttp://stackoverflow.com/feeds/question/176409http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c3How to Build a simple HTTP server in Cnute2008-10-06T22:10:24Z2008-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#1764120Answer by billpg for How to Build a simple HTTP server in Cbillpg2008-10-06T22:11:11Z2008-10-06T22:11:11Z<p>How simple?</p>
http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c/176417#1764172Answer by warren for How to Build a simple HTTP server in Cwarren2008-10-06T22:12:32Z2008-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#1764184Answer by Eclipse for How to Build a simple HTTP server in CEclipse2008-10-06T22:12:41Z2008-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#1764193Answer by Daniel A. White for How to Build a simple HTTP server in CDaniel A. White2008-10-06T22:12:55Z2008-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#1764210Answer by arul for How to Build a simple HTTP server in Carul2008-10-06T22:13:26Z2008-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#1764226Answer by Adam Rosenfield for How to Build a simple HTTP server in CAdam Rosenfield2008-10-06T22:13:39Z2008-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#1764272Answer by Adam Davis for How to Build a simple HTTP server in CAdam Davis2008-10-06T22:15:34Z2008-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#1764701Answer by Bob Nadler for How to Build a simple HTTP server in CBob Nadler2008-10-06T22:30:51Z2008-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#1764772Answer by Ates Goral for How to Build a simple HTTP server in CAtes Goral2008-10-06T22:35:14Z2008-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#1764911Answer by Omer van Kloeten for How to Build a simple HTTP server in COmer van Kloeten2008-10-06T22:38:50Z2008-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#1768950Answer by anjanb for How to Build a simple HTTP server in Canjanb2008-10-07T01:23:04Z2008-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>