HTTPnet
HTTPnet copied to clipboard
HTTPnet is a high performance .NET library for HTTP and WebSocket based communication. It provides a HTTP/WebSocket server and a powerful processing pipeline for HTTP request and their responses.
In your example files are sent to client this way: `context.HttpContext.Response.Body = File.OpenRead(filename);` But Stream returned by function OpenRead is never disposed explicitly. It is not possible to write to...
Headers in http request should be case insensitive. Header is parsed in file RawHttpRequestReader.cs. I think that dictionary for headers should be case insensitive. Somethink like this: `var headers =...