diff options
author | Revolution | 2009-12-30 21:45:10 -0600 |
---|---|---|
committer | Melanie | 2009-12-31 21:24:56 +0000 |
commit | 234d4e11059fb2e1fc9dbe879054bd84e95b502b (patch) | |
tree | 96b6cded9ead8e8a17fcc5a55d59c9fe5b3e8380 /OpenSim/Region/OptionalModules/Agent | |
parent | This patch caused serialization errors and needs to be reexamined (diff) | |
download | opensim-SC_OLD-234d4e11059fb2e1fc9dbe879054bd84e95b502b.zip opensim-SC_OLD-234d4e11059fb2e1fc9dbe879054bd84e95b502b.tar.gz opensim-SC_OLD-234d4e11059fb2e1fc9dbe879054bd84e95b502b.tar.bz2 opensim-SC_OLD-234d4e11059fb2e1fc9dbe879054bd84e95b502b.tar.xz |
Adds tons of packets.
Applied with change: Changed spelling to Summary (from Summery)
Signed-off-by: Melanie <melanie@t-data.com>
Diffstat (limited to 'OpenSim/Region/OptionalModules/Agent')
-rw-r--r-- | OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs index 8b34396..6c2b94a 100644 --- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs +++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | |||
@@ -836,6 +836,25 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
836 | public event MuteListRequest OnMuteListRequest; | 836 | public event MuteListRequest OnMuteListRequest; |
837 | public event AvatarInterestUpdate OnAvatarInterestUpdate; | 837 | public event AvatarInterestUpdate OnAvatarInterestUpdate; |
838 | public event PlacesQuery OnPlacesQuery; | 838 | public event PlacesQuery OnPlacesQuery; |
839 | public event FindAgentUpdate OnFindAgentEvent; | ||
840 | public event TrackAgentUpdate OnTrackAgentEvent; | ||
841 | public event NewUserReport OnUserReportEvent; | ||
842 | public event SaveStateHandler OnSaveStateEvent; | ||
843 | public event GroupAccountSummaryRequest OnGroupAccountSummaryRequest; | ||
844 | public event GroupAccountDetailsRequest OnGroupAccountDetailsRequest; | ||
845 | public event GroupAccountTransactionsRequest OnGroupAccountTransactionsRequest; | ||
846 | public event FreezeUserUpdate OnParcelFreezeUserEvent; | ||
847 | public event EjectUserUpdate OnParcelEjectUserEvent; | ||
848 | public event ParcelBuyPass OnParcelBuyPass; | ||
849 | public event ParcelGodMark OnParcelGodMark; | ||
850 | public event GroupActiveProposalsRequest OnGroupActiveProposalsRequest; | ||
851 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; | ||
852 | public event SimWideDeletesDelegate OnSimWideDeletes; | ||
853 | public event SendPostcard OnSendPostcard; | ||
854 | public event MuteListEntryUpdate OnUpdateMuteListEntryEvent; | ||
855 | public event MuteListEntryRemove OnRemoveMuteListEntryEvent; | ||
856 | public event GodlikeMessage onGodlikeMessageEvent; | ||
857 | public event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdateEvent; | ||
839 | 858 | ||
840 | #pragma warning restore 67 | 859 | #pragma warning restore 67 |
841 | 860 | ||
@@ -1628,5 +1647,17 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
1628 | public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages) | 1647 | public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages) |
1629 | { | 1648 | { |
1630 | } | 1649 | } |
1650 | |||
1651 | public void SendGroupAccountingDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID, int amt) | ||
1652 | { | ||
1653 | } | ||
1654 | |||
1655 | public void SendGroupAccountingSummary(IClientAPI sender,UUID groupID, uint moneyAmt, int totalTier, int usedTier) | ||
1656 | { | ||
1657 | } | ||
1658 | |||
1659 | public void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt) | ||
1660 | { | ||
1661 | } | ||
1631 | } | 1662 | } |
1632 | } | 1663 | } |