diff options
author | teravus | 2013-02-05 18:02:25 -0500 |
---|---|---|
committer | teravus | 2013-02-05 18:02:25 -0500 |
commit | 1dc09d8e8f4a6caa321d0227722af97ee4aeed6a (patch) | |
tree | 88bf751c1031c8a458e57c79c37804f983b43e42 /OpenSim/Region/ClientStack/TCPJSONStream/OpenSimWebSocketBase.cs | |
parent | Merge branch 'master' into JSONTCPClient (diff) | |
download | opensim-SC-1dc09d8e8f4a6caa321d0227722af97ee4aeed6a.zip opensim-SC-1dc09d8e8f4a6caa321d0227722af97ee4aeed6a.tar.gz opensim-SC-1dc09d8e8f4a6caa321d0227722af97ee4aeed6a.tar.bz2 opensim-SC-1dc09d8e8f4a6caa321d0227722af97ee4aeed6a.tar.xz |
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.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/TCPJSONStream/OpenSimWebSocketBase.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/TCPJSONStream/OpenSimWebSocketBase.cs b/OpenSim/Region/ClientStack/TCPJSONStream/OpenSimWebSocketBase.cs index 379438d..6d02543 100644 --- a/OpenSim/Region/ClientStack/TCPJSONStream/OpenSimWebSocketBase.cs +++ b/OpenSim/Region/ClientStack/TCPJSONStream/OpenSimWebSocketBase.cs | |||
@@ -47,7 +47,7 @@ namespace OpenSim.Region.ClientStack.TCPJSONStream | |||
47 | 47 | ||
48 | public void NetworkStop() | 48 | public void NetworkStop() |
49 | { | 49 | { |
50 | m_tcpServer.Stop(); | 50 | // m_tcpServer.Stop(); |
51 | } | 51 | } |
52 | 52 | ||
53 | public bool HandlesRegion(Location x) | 53 | public bool HandlesRegion(Location x) |
@@ -62,12 +62,12 @@ namespace OpenSim.Region.ClientStack.TCPJSONStream | |||
62 | 62 | ||
63 | public void Start() | 63 | public void Start() |
64 | { | 64 | { |
65 | m_tcpServer.Start(); | 65 | //m_tcpServer.Start(); |
66 | } | 66 | } |
67 | 67 | ||
68 | public void Stop() | 68 | public void Stop() |
69 | { | 69 | { |
70 | m_tcpServer.Stop(); | 70 | // m_tcpServer.Stop(); |
71 | } | 71 | } |
72 | } | 72 | } |
73 | } \ No newline at end of file | 73 | } \ No newline at end of file |