exclude httplistener from project

This commit is contained in:
Luke Pulverenti
2015-03-08 15:06:15 -04:00
parent 98992ca580
commit 55c47e50fc
4 changed files with 13 additions and 7 deletions

View File

@@ -65,10 +65,17 @@ namespace MediaBrowser.Server.Implementations.HttpServer.SocketSharp
void socket_OnMessage(object sender, SocketHttpListener.MessageEventArgs e)
{
//if (!string.IsNullOrWhiteSpace(e.Data))
//{
// if (OnReceive != null)
// {
// OnReceive(e.Data);
// }
// return;
//}
if (OnReceiveBytes != null)
{
OnReceiveBytes(e.RawData);
//OnReceive(e.Data);
}
}