HttpServer icon indicating copy to clipboard operation
HttpServer copied to clipboard

一个使用C#编写的简易Web服务器

Results 13 HttpServer issues
Sort by recently updated
recently updated
newest added

HttpRequest.cs文件的第68、69行,处理GET的地址中的参数时,不应该用URL变量,应该用first[1]。否则无法解析出参数。

HttpRequest.cs里 private string GetRequestData(Stream stream) { var length = 0; var data = string.Empty; do { length = stream.Read(bytes, 0, MAX_SIZE - 1); data += Encoding.UTF8.GetString(bytes, 0, length); } while...

GetMimeFromFile()方法返回的MIME信息针对某些格式(**如.css**)不符合HTTP协议规范