Fixed HttpServer.cs

This commit is contained in:
sta 2012-09-12 12:29:42 +09:00
parent 8e2a1ee1b3
commit 52ceb665fb
59 changed files with 27 additions and 7 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -49,7 +49,6 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="System" /> <Reference Include="System" />
<Reference Include="System.Configuration" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="AssemblyInfo.cs" /> <Compile Include="AssemblyInfo.cs" />

Binary file not shown.

View File

@ -1,7 +1,4 @@
using System; using System;
using System.Configuration;
using System.IO;
using System.Text;
using WebSocketSharp; using WebSocketSharp;
using WebSocketSharp.Net; using WebSocketSharp.Net;
using WebSocketSharp.Server; using WebSocketSharp.Server;

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -126,26 +126,47 @@ namespace WebSocketSharp.Server {
_rootPath = ConfigurationManager.AppSettings["RootPath"]; _rootPath = ConfigurationManager.AppSettings["RootPath"];
} }
private bool isUpgrade(HttpListenerRequest request, string value)
{
if (!request.Headers.Exists("Upgrade", value))
return false;
if (!request.Headers.Exists("Connection", "Upgrade"))
return false;
return true;
}
private void respond(HttpListenerContext context) private void respond(HttpListenerContext context)
{ {
WaitCallback respondCb = (state) => WaitCallback respondCb = (state) =>
{ {
var req = context.Request;
var res = context.Response;
try try
{ {
if (context.Request.IsWebSocketRequest) if (isUpgrade(req, "websocket"))
{ {
upgradeToWebSocket(context); if (req.IsWebSocketRequest)
{
upgradeToWebSocket(context);
return;
}
res.StatusCode = (int)HttpStatusCode.BadRequest;
} }
else else
{ {
respondToClient(context); respondToClient(context);
context.Response.Close();
} }
} }
catch (Exception ex) catch (Exception ex)
{ {
OnError.Emit(this, new ErrorEventArgs(ex.Message)); OnError.Emit(this, new ErrorEventArgs(ex.Message));
} }
res.Close();
}; };
ThreadPool.QueueUserWorkItem(respondCb); ThreadPool.QueueUserWorkItem(respondCb);
} }
@ -236,6 +257,9 @@ namespace WebSocketSharp.Server {
public byte[] GetFile(string path) public byte[] GetFile(string path)
{ {
var filePath = _rootPath + path; var filePath = _rootPath + path;
#if WINDOWS
filePath = filePath.Replace("/", "\\");
#endif
if (File.Exists(filePath)) if (File.Exists(filePath))
return File.ReadAllBytes(filePath); return File.ReadAllBytes(filePath);

Binary file not shown.