HttpServerLite
HttpServerLite copied to clipboard
TCP-based user-space HTTP and HTTPS server, written in C#, with no dependency on http.sys.
I'm writing a nuget server implementation using this library and because status codes are hardcoded when sending http Conflict(409) i get this  Why not just use HttpStatusCode and then...
Since HttpServerLite can only handle one server at a time, is there any way to make a reroute from port 80 (without SSL) to 443 (with SSL), so my site...
SocketException: Only one usage of each socket address (protocol/network address/port) is normally permitted. Code: Variable `private Webserver _webserver;` Constructor: `_webserver = new Webserver("localhost", 8000, IndexHtml); _webserver.Start();` My IndexHtml method: `private...