diff options
author | John Hurliman | 2010-02-05 17:46:37 -0800 |
---|---|---|
committer | John Hurliman | 2010-02-05 17:46:37 -0800 |
commit | e251f4244388363e2f6fca11edd2efe133324057 (patch) | |
tree | 15634544372d8481e7ba6e9b7f651b930ea7bc32 /OpenSim/Services/Interfaces/IFriendsService.cs | |
parent | Fixing an incorrect logging message in insertUserRow (diff) | |
parent | Clarify some names (diff) | |
download | opensim-SC_OLD-e251f4244388363e2f6fca11edd2efe133324057.zip opensim-SC_OLD-e251f4244388363e2f6fca11edd2efe133324057.tar.gz opensim-SC_OLD-e251f4244388363e2f6fca11edd2efe133324057.tar.bz2 opensim-SC_OLD-e251f4244388363e2f6fca11edd2efe133324057.tar.xz |
Merge branch 'presence-refactor' of ssh://opensimulator.org/var/git/opensim into presence-refactor
Diffstat (limited to 'OpenSim/Services/Interfaces/IFriendsService.cs')
-rw-r--r-- | OpenSim/Services/Interfaces/IFriendsService.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Services/Interfaces/IFriendsService.cs b/OpenSim/Services/Interfaces/IFriendsService.cs index ed77c1a..4e665cd 100644 --- a/OpenSim/Services/Interfaces/IFriendsService.cs +++ b/OpenSim/Services/Interfaces/IFriendsService.cs | |||
@@ -35,15 +35,14 @@ namespace OpenSim.Region.Framework.Interfaces | |||
35 | { | 35 | { |
36 | public UUID PrincipalID; | 36 | public UUID PrincipalID; |
37 | public string Friend; | 37 | public string Friend; |
38 | int MyRights; | 38 | int MyFlags; |
39 | int TheirRights; | 39 | int TheirFlags; |
40 | } | 40 | } |
41 | 41 | ||
42 | public interface IFriendsService | 42 | public interface IFriendsService |
43 | { | 43 | { |
44 | FriendInfo[] GetFriends(UUID PrincipalID); | 44 | FriendInfo[] GetFriends(UUID PrincipalID); |
45 | bool StoreFriend(UUID PrincipalID, string Friend, int flags); | 45 | bool StoreFriend(UUID PrincipalID, string Friend, int flags); |
46 | bool SetFlags(UUID PrincipalID, int flags); | ||
47 | bool Delete(UUID PrincipalID, string Friend); | 46 | bool Delete(UUID PrincipalID, string Friend); |
48 | } | 47 | } |
49 | } | 48 | } |