diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs index 380570b..9fa243e 100644 --- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs +++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | |||
@@ -813,6 +813,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
813 | public event ObjectOwner OnObjectOwner; | 813 | public event ObjectOwner OnObjectOwner; |
814 | public event DirPlacesQuery OnDirPlacesQuery; | 814 | public event DirPlacesQuery OnDirPlacesQuery; |
815 | public event DirFindQuery OnDirFindQuery; | 815 | public event DirFindQuery OnDirFindQuery; |
816 | public event MoveItemsAndLeaveCopy OnMoveItemsAndLeaveCopy; | ||
816 | public event DirLandQuery OnDirLandQuery; | 817 | public event DirLandQuery OnDirLandQuery; |
817 | public event DirPopularQuery OnDirPopularQuery; | 818 | public event DirPopularQuery OnDirPopularQuery; |
818 | public event DirClassifiedQuery OnDirClassifiedQuery; | 819 | public event DirClassifiedQuery OnDirClassifiedQuery; |
@@ -829,7 +830,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
829 | public event ClassifiedInfoRequest OnClassifiedInfoRequest; | 830 | public event ClassifiedInfoRequest OnClassifiedInfoRequest; |
830 | public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; | 831 | public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; |
831 | public event ClassifiedDelete OnClassifiedDelete; | 832 | public event ClassifiedDelete OnClassifiedDelete; |
832 | public event ClassifiedDelete OnClassifiedGodDelete; | 833 | public event ClassifiedGodDelete OnClassifiedGodDelete; |
833 | public event EventNotificationAddRequest OnEventNotificationAddRequest; | 834 | public event EventNotificationAddRequest OnEventNotificationAddRequest; |
834 | public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; | 835 | public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; |
835 | public event EventGodDelete OnEventGodDelete; | 836 | public event EventGodDelete OnEventGodDelete; |
@@ -880,6 +881,11 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
880 | 881 | ||
881 | public void Close() | 882 | public void Close() |
882 | { | 883 | { |
884 | Close(true); | ||
885 | } | ||
886 | |||
887 | public void Close(bool sendStop) | ||
888 | { | ||
883 | Disconnect(); | 889 | Disconnect(); |
884 | } | 890 | } |
885 | 891 | ||