aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/TCPJSONStream/OpenSimWebSocketBase.cs
diff options
context:
space:
mode:
authorteravus2013-02-05 18:02:25 -0500
committerteravus2013-02-05 18:02:25 -0500
commit1dc09d8e8f4a6caa321d0227722af97ee4aeed6a (patch)
tree88bf751c1031c8a458e57c79c37804f983b43e42 /OpenSim/Region/ClientStack/TCPJSONStream/OpenSimWebSocketBase.cs
parentMerge branch 'master' into JSONTCPClient (diff)
downloadopensim-SC_OLD-1dc09d8e8f4a6caa321d0227722af97ee4aeed6a.zip
opensim-SC_OLD-1dc09d8e8f4a6caa321d0227722af97ee4aeed6a.tar.gz
opensim-SC_OLD-1dc09d8e8f4a6caa321d0227722af97ee4aeed6a.tar.bz2
opensim-SC_OLD-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 'OpenSim/Region/ClientStack/TCPJSONStream/OpenSimWebSocketBase.cs')
-rw-r--r--OpenSim/Region/ClientStack/TCPJSONStream/OpenSimWebSocketBase.cs6
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