diff options
author | Melanie | 2009-11-05 02:09:07 +0000 |
---|---|---|
committer | Melanie | 2009-11-05 02:09:07 +0000 |
commit | 83b4b4440b7becb405840bc69d665e260fdecea0 (patch) | |
tree | a623dc9c6d82bfb96d1db978d2464e3cbaf4d0ca /OpenSim/Framework | |
parent | Separate folder and item limit for UDP inventory packets. Folder limit is (diff) | |
download | opensim-SC_OLD-83b4b4440b7becb405840bc69d665e260fdecea0.zip opensim-SC_OLD-83b4b4440b7becb405840bc69d665e260fdecea0.tar.gz opensim-SC_OLD-83b4b4440b7becb405840bc69d665e260fdecea0.tar.bz2 opensim-SC_OLD-83b4b4440b7becb405840bc69d665e260fdecea0.tar.xz |
Patch by revolution, thank you. Mantis #1789 . Implement friends permissions.
Applied with major changes. Core functionality commented pending review
for possible rights escalation. No user functionality yet.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 0f88b93..ee7ab87 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -446,6 +446,7 @@ namespace OpenSim.Framework | |||
446 | public delegate void AvatarNotesUpdate(IClientAPI client, UUID targetID, string notes); | 446 | public delegate void AvatarNotesUpdate(IClientAPI client, UUID targetID, string notes); |
447 | public delegate void MuteListRequest(IClientAPI client, uint muteCRC); | 447 | public delegate void MuteListRequest(IClientAPI client, uint muteCRC); |
448 | public delegate void AvatarInterestUpdate(IClientAPI client, uint wantmask, string wanttext, uint skillsmask, string skillstext, string languages); | 448 | public delegate void AvatarInterestUpdate(IClientAPI client, uint wantmask, string wanttext, uint skillsmask, string skillstext, string languages); |
449 | public delegate void GrantUserFriendRights(IClientAPI client, UUID requester, UUID target, int rights); | ||
449 | public delegate void PlacesQuery(UUID QueryID, UUID TransactionID, string QueryText, uint QueryFlags, byte Category, string SimName, IClientAPI client); | 450 | public delegate void PlacesQuery(UUID QueryID, UUID TransactionID, string QueryText, uint QueryFlags, byte Category, string SimName, IClientAPI client); |
450 | 451 | ||
451 | public delegate void AgentFOV(IClientAPI client, float verticalAngle); | 452 | public delegate void AgentFOV(IClientAPI client, float verticalAngle); |
@@ -1023,6 +1024,7 @@ namespace OpenSim.Framework | |||
1023 | event PickInfoUpdate OnPickInfoUpdate; | 1024 | event PickInfoUpdate OnPickInfoUpdate; |
1024 | event AvatarNotesUpdate OnAvatarNotesUpdate; | 1025 | event AvatarNotesUpdate OnAvatarNotesUpdate; |
1025 | event AvatarInterestUpdate OnAvatarInterestUpdate; | 1026 | event AvatarInterestUpdate OnAvatarInterestUpdate; |
1027 | event GrantUserFriendRights OnGrantUserRights; | ||
1026 | 1028 | ||
1027 | event MuteListRequest OnMuteListRequest; | 1029 | event MuteListRequest OnMuteListRequest; |
1028 | 1030 | ||