aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IUserService.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/IUserService.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Framework/IUserService.cs b/OpenSim/Framework/IUserService.cs
index 2b59c25..f1f3c81 100644
--- a/OpenSim/Framework/IUserService.cs
+++ b/OpenSim/Framework/IUserService.cs
@@ -73,6 +73,16 @@ namespace OpenSim.Framework
73 void UpdateUserFriendPerms(LLUUID friendlistowner, LLUUID friend, uint perms); 73 void UpdateUserFriendPerms(LLUUID friendlistowner, LLUUID friend, uint perms);
74 74
75 /// <summary> 75 /// <summary>
76 /// Logs off a user on the user server
77 /// </summary>
78 /// <param name="UserID">UUID of the user</param>
79 /// <param name="regionData">UUID of the Region</param>
80 /// <param name="posx">final position x</param>
81 /// <param name="posy">final position y</param>
82 /// <param name="posz">final position z</param>
83 void LogOffUser(LLUUID userid, LLUUID regionid, ulong regionhandle, float posx, float posy, float posz);
84
85 /// <summary>
76 /// Returns a list of FriendsListItems that describe the friends and permissions in the friend relationship for LLUUID friendslistowner 86 /// Returns a list of FriendsListItems that describe the friends and permissions in the friend relationship for LLUUID friendslistowner
77 /// </summary> 87 /// </summary>
78 /// <param name="friendlistowner">The agent that we're retreiving the friends Data.</param> 88 /// <param name="friendlistowner">The agent that we're retreiving the friends Data.</param>