diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs index 781539a..c363fd3 100644 --- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs +++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | |||
@@ -670,6 +670,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
670 | public event ObjectDrop OnObjectDrop; | 670 | public event ObjectDrop OnObjectDrop; |
671 | public event StartAnim OnStartAnim; | 671 | public event StartAnim OnStartAnim; |
672 | public event StopAnim OnStopAnim; | 672 | public event StopAnim OnStopAnim; |
673 | public event ChangeAnim OnChangeAnim; | ||
673 | public event LinkObjects OnLinkObjects; | 674 | public event LinkObjects OnLinkObjects; |
674 | public event DelinkObjects OnDelinkObjects; | 675 | public event DelinkObjects OnDelinkObjects; |
675 | public event RequestMapBlocks OnRequestMapBlocks; | 676 | public event RequestMapBlocks OnRequestMapBlocks; |
@@ -715,6 +716,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
715 | public event RequestObjectPropertiesFamily OnRequestObjectPropertiesFamily; | 716 | public event RequestObjectPropertiesFamily OnRequestObjectPropertiesFamily; |
716 | public event UpdatePrimFlags OnUpdatePrimFlags; | 717 | public event UpdatePrimFlags OnUpdatePrimFlags; |
717 | public event UpdatePrimTexture OnUpdatePrimTexture; | 718 | public event UpdatePrimTexture OnUpdatePrimTexture; |
719 | public event ClientChangeObject onClientChangeObject; | ||
718 | public event UpdateVector OnUpdatePrimGroupPosition; | 720 | public event UpdateVector OnUpdatePrimGroupPosition; |
719 | public event UpdateVector OnUpdatePrimSinglePosition; | 721 | public event UpdateVector OnUpdatePrimSinglePosition; |
720 | public event UpdatePrimRotation OnUpdatePrimGroupRotation; | 722 | public event UpdatePrimRotation OnUpdatePrimGroupRotation; |
@@ -819,6 +821,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
819 | public event ObjectOwner OnObjectOwner; | 821 | public event ObjectOwner OnObjectOwner; |
820 | public event DirPlacesQuery OnDirPlacesQuery; | 822 | public event DirPlacesQuery OnDirPlacesQuery; |
821 | public event DirFindQuery OnDirFindQuery; | 823 | public event DirFindQuery OnDirFindQuery; |
824 | public event MoveItemsAndLeaveCopy OnMoveItemsAndLeaveCopy; | ||
822 | public event DirLandQuery OnDirLandQuery; | 825 | public event DirLandQuery OnDirLandQuery; |
823 | public event DirPopularQuery OnDirPopularQuery; | 826 | public event DirPopularQuery OnDirPopularQuery; |
824 | public event DirClassifiedQuery OnDirClassifiedQuery; | 827 | public event DirClassifiedQuery OnDirClassifiedQuery; |
@@ -835,7 +838,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
835 | public event ClassifiedInfoRequest OnClassifiedInfoRequest; | 838 | public event ClassifiedInfoRequest OnClassifiedInfoRequest; |
836 | public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; | 839 | public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; |
837 | public event ClassifiedDelete OnClassifiedDelete; | 840 | public event ClassifiedDelete OnClassifiedDelete; |
838 | public event ClassifiedDelete OnClassifiedGodDelete; | 841 | public event ClassifiedGodDelete OnClassifiedGodDelete; |
839 | public event EventNotificationAddRequest OnEventNotificationAddRequest; | 842 | public event EventNotificationAddRequest OnEventNotificationAddRequest; |
840 | public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; | 843 | public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; |
841 | public event EventGodDelete OnEventGodDelete; | 844 | public event EventGodDelete OnEventGodDelete; |
@@ -865,6 +868,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
865 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; | 868 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; |
866 | public event SimWideDeletesDelegate OnSimWideDeletes; | 869 | public event SimWideDeletesDelegate OnSimWideDeletes; |
867 | public event SendPostcard OnSendPostcard; | 870 | public event SendPostcard OnSendPostcard; |
871 | public event ChangeInventoryItemFlags OnChangeInventoryItemFlags; | ||
868 | public event MuteListEntryUpdate OnUpdateMuteListEntry; | 872 | public event MuteListEntryUpdate OnUpdateMuteListEntry; |
869 | public event MuteListEntryRemove OnRemoveMuteListEntry; | 873 | public event MuteListEntryRemove OnRemoveMuteListEntry; |
870 | public event GodlikeMessage onGodlikeMessage; | 874 | public event GodlikeMessage onGodlikeMessage; |
@@ -886,10 +890,10 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
886 | 890 | ||
887 | public void Close() | 891 | public void Close() |
888 | { | 892 | { |
889 | Close(false); | 893 | Close(true, false); |
890 | } | 894 | } |
891 | 895 | ||
892 | public void Close(bool force) | 896 | public void Close(bool sendStop, bool force) |
893 | { | 897 | { |
894 | Disconnect(); | 898 | Disconnect(); |
895 | } | 899 | } |
@@ -1097,7 +1101,12 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
1097 | 1101 | ||
1098 | public void SendInventoryItemCreateUpdate(InventoryItemBase Item, uint callbackId) | 1102 | public void SendInventoryItemCreateUpdate(InventoryItemBase Item, uint callbackId) |
1099 | { | 1103 | { |
1100 | 1104 | ||
1105 | } | ||
1106 | |||
1107 | public void SendInventoryItemCreateUpdate(InventoryItemBase Item, UUID transactionID, uint callbackId) | ||
1108 | { | ||
1109 | |||
1101 | } | 1110 | } |
1102 | 1111 | ||
1103 | public void SendRemoveInventoryItem(UUID itemID) | 1112 | public void SendRemoveInventoryItem(UUID itemID) |
@@ -1120,7 +1129,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
1120 | 1129 | ||
1121 | } | 1130 | } |
1122 | 1131 | ||
1123 | public void SendXferPacket(ulong xferID, uint packet, byte[] data) | 1132 | public void SendXferPacket(ulong xferID, uint packet, byte[] data, bool isTaskInventory) |
1124 | { | 1133 | { |
1125 | 1134 | ||
1126 | } | 1135 | } |
@@ -1678,5 +1687,10 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
1678 | public void SendPlacesReply(UUID queryID, UUID transactionID, PlacesReplyData[] data) | 1687 | public void SendPlacesReply(UUID queryID, UUID transactionID, PlacesReplyData[] data) |
1679 | { | 1688 | { |
1680 | } | 1689 | } |
1690 | |||
1691 | public void SendPartPhysicsProprieties(ISceneEntity entity) | ||
1692 | { | ||
1693 | } | ||
1694 | |||
1681 | } | 1695 | } |
1682 | } | 1696 | } |