aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Client')
-rw-r--r--OpenSim/Client/MXP/ClientStack/MXPClientView.cs12
-rw-r--r--OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs7
-rw-r--r--OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs7
3 files changed, 22 insertions, 4 deletions
diff --git a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
index d414f08..658ddf0 100644
--- a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
+++ b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs
@@ -827,10 +827,18 @@ namespace OpenSim.Client.MXP.ClientStack
827 827
828 public void Close() 828 public void Close()
829 { 829 {
830 Close(true);
831 }
832
833 public void Close(bool sendStop)
834 {
830 m_log.Info("[MXP ClientStack] Close Called"); 835 m_log.Info("[MXP ClientStack] Close Called");
831 836
832 // Tell the client to go 837 // Tell the client to go
833 SendLogoutPacket(); 838 if (sendStop == true)
839 {
840 SendLogoutPacket();
841 }
834 842
835 // Let MXPPacketServer clean it up 843 // Let MXPPacketServer clean it up
836 if (Session.SessionState != SessionState.Disconnected) 844 if (Session.SessionState != SessionState.Disconnected)
@@ -923,7 +931,7 @@ namespace OpenSim.Client.MXP.ClientStack
923 // Need to translate to MXP somehow 931 // Need to translate to MXP somehow
924 } 932 }
925 933
926 public void SendGenericMessage(string method, List<string> message) 934 public void SendGenericMessage(string method, List<byte[]> message)
927 { 935 {
928 // Need to translate to MXP somehow 936 // Need to translate to MXP somehow
929 } 937 }
diff --git a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
index d305ffe..c2ddd36 100644
--- a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
+++ b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
@@ -439,6 +439,11 @@ namespace OpenSim.Client.Sirikata.ClientStack
439 439
440 public void Close() 440 public void Close()
441 { 441 {
442 Close(true);
443 }
444
445 public void Close(bool sendStop)
446 {
442 throw new System.NotImplementedException(); 447 throw new System.NotImplementedException();
443 } 448 }
444 449
@@ -497,7 +502,7 @@ namespace OpenSim.Client.Sirikata.ClientStack
497 throw new System.NotImplementedException(); 502 throw new System.NotImplementedException();
498 } 503 }
499 504
500 public void SendGenericMessage(string method, List<string> message) 505 public void SendGenericMessage(string method, List<Byte[]> message)
501 { 506 {
502 throw new System.NotImplementedException(); 507 throw new System.NotImplementedException();
503 } 508 }
diff --git a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
index ef74677..df07807 100644
--- a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
+++ b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
@@ -446,6 +446,11 @@ namespace OpenSim.Client.VWoHTTP.ClientStack
446 446
447 public void Close() 447 public void Close()
448 { 448 {
449 Close(true);
450 }
451
452 public void Close(bool sendStop)
453 {
449 throw new System.NotImplementedException(); 454 throw new System.NotImplementedException();
450 } 455 }
451 456
@@ -504,7 +509,7 @@ namespace OpenSim.Client.VWoHTTP.ClientStack
504 throw new System.NotImplementedException(); 509 throw new System.NotImplementedException();
505 } 510 }
506 511
507 public void SendGenericMessage(string method, List<string> message) 512 public void SendGenericMessage(string method, List<byte[]> message)
508 { 513 {
509 throw new System.NotImplementedException(); 514 throw new System.NotImplementedException();
510 } 515 }