diff options
Diffstat (limited to 'OpenSim/Client/MXP/ClientStack')
-rw-r--r-- | OpenSim/Client/MXP/ClientStack/MXPClientView.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs index c9e56e6..e5f7474 100644 --- a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs +++ b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs | |||
@@ -1605,6 +1605,17 @@ namespace OpenSim.Client.MXP.ClientStack | |||
1605 | return default(T); | 1605 | return default(T); |
1606 | } | 1606 | } |
1607 | 1607 | ||
1608 | public void Disconnect(string reason) | ||
1609 | { | ||
1610 | Kick(reason); | ||
1611 | Close(true); | ||
1612 | } | ||
1613 | |||
1614 | public void Disconnect() | ||
1615 | { | ||
1616 | Close(true); | ||
1617 | } | ||
1618 | |||
1608 | #endregion | 1619 | #endregion |
1609 | 1620 | ||
1610 | public void SendCreateGroupReply(UUID groupID, bool success, string message) | 1621 | public void SendCreateGroupReply(UUID groupID, bool success, string message) |