aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data
diff options
context:
space:
mode:
authorSean Dague2007-07-31 14:42:50 +0000
committerSean Dague2007-07-31 14:42:50 +0000
commit55b569069dfd6eb7c87d4fbd66d68083878f6c65 (patch)
tree55863a76a9c4797ee8d9fa954868e1d650e0d7be /OpenSim/Framework/Data
parent* Fixed a bug where the simulator could crash if the userserver was particula... (diff)
downloadopensim-SC_OLD-55b569069dfd6eb7c87d4fbd66d68083878f6c65.zip
opensim-SC_OLD-55b569069dfd6eb7c87d4fbd66d68083878f6c65.tar.gz
opensim-SC_OLD-55b569069dfd6eb7c87d4fbd66d68083878f6c65.tar.bz2
opensim-SC_OLD-55b569069dfd6eb7c87d4fbd66d68083878f6c65.tar.xz
clear userAgent state on client shutdown, which fixes the issue
where you could only login once with a given id in standalone mode.
Diffstat (limited to 'OpenSim/Framework/Data')
-rw-r--r--OpenSim/Framework/Data/UserData.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/Data/UserData.cs b/OpenSim/Framework/Data/UserData.cs
index d849e12..cf8ec7b 100644
--- a/OpenSim/Framework/Data/UserData.cs
+++ b/OpenSim/Framework/Data/UserData.cs
@@ -85,6 +85,12 @@ namespace OpenSim.Framework.Data
85 void addNewUserProfile(UserProfileData user); 85 void addNewUserProfile(UserProfileData user);
86 86
87 /// <summary> 87 /// <summary>
88 /// Updates an existing user profile
89 /// </summary>
90 /// <param name="user">UserProfile to update</param>
91 bool updateUserProfile(UserProfileData user);
92
93 /// <summary>
88 /// Adds a new agent to the database 94 /// Adds a new agent to the database
89 /// </summary> 95 /// </summary>
90 /// <param name="agent">The agent to add</param> 96 /// <param name="agent">The agent to add</param>