We're not really done here.. but we're getting there. Socket Read is working.. Still have to do Header.ToBytes and compose a websocket frame with a payload.

This commit is contained in:
teravus
2013-02-05 18:02:25 -05:00
parent ee4f8ac193
commit 1dc09d8e8f
6 changed files with 4543 additions and 4502 deletions

View File

@@ -47,7 +47,7 @@ namespace OpenSim.Region.ClientStack.TCPJSONStream
public void NetworkStop()
{
m_tcpServer.Stop();
// m_tcpServer.Stop();
}
public bool HandlesRegion(Location x)
@@ -62,12 +62,12 @@ namespace OpenSim.Region.ClientStack.TCPJSONStream
public void Start()
{
m_tcpServer.Start();
//m_tcpServer.Start();
}
public void Stop()
{
m_tcpServer.Stop();
// m_tcpServer.Stop();
}
}
}