diff options
author | Teravus Ovares (Dan Olivares) | 2009-08-29 23:50:24 -0400 |
---|---|---|
committer | Teravus Ovares (Dan Olivares) | 2009-08-29 23:50:24 -0400 |
commit | 2f40161f38967e3362ac7be43b74d5cbc75564fa (patch) | |
tree | db14920568864a932a064a4530d006fc67c60a5f /OpenSim/Framework/Communications | |
parent | Ok, merging the RegionCombinerModule with master. (diff) | |
parent | Remove another IAuthentificationInterface user (diff) | |
download | opensim-SC_OLD-2f40161f38967e3362ac7be43b74d5cbc75564fa.zip opensim-SC_OLD-2f40161f38967e3362ac7be43b74d5cbc75564fa.tar.gz opensim-SC_OLD-2f40161f38967e3362ac7be43b74d5cbc75564fa.tar.bz2 opensim-SC_OLD-2f40161f38967e3362ac7be43b74d5cbc75564fa.tar.xz |
Merge branch 'master' of ssh://MyConnection/var/git/opensim
Diffstat (limited to 'OpenSim/Framework/Communications')
-rw-r--r-- | OpenSim/Framework/Communications/Services/LoginService.cs | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Services/LoginService.cs b/OpenSim/Framework/Communications/Services/LoginService.cs index cac6616..bf59f8e 100644 --- a/OpenSim/Framework/Communications/Services/LoginService.cs +++ b/OpenSim/Framework/Communications/Services/LoginService.cs | |||
@@ -1063,7 +1063,18 @@ namespace OpenSim.Framework.Communications.Services | |||
1063 | protected abstract RegionInfo RequestClosestRegion(string region); | 1063 | protected abstract RegionInfo RequestClosestRegion(string region); |
1064 | protected abstract RegionInfo GetRegionInfo(ulong homeRegionHandle); | 1064 | protected abstract RegionInfo GetRegionInfo(ulong homeRegionHandle); |
1065 | protected abstract RegionInfo GetRegionInfo(UUID homeRegionId); | 1065 | protected abstract RegionInfo GetRegionInfo(UUID homeRegionId); |
1066 | protected abstract bool PrepareLoginToRegion(RegionInfo regionInfo, UserProfileData user, LoginResponse response, IPEndPoint client); | 1066 | |
1067 | /// <summary> | ||
1068 | /// Prepare a login to the given region. This involves both telling the region to expect a connection | ||
1069 | /// and appropriately customising the response to the user. | ||
1070 | /// </summary> | ||
1071 | /// <param name="sim"></param> | ||
1072 | /// <param name="user"></param> | ||
1073 | /// <param name="response"></param> | ||
1074 | /// <param name="remoteClient"></param> | ||
1075 | /// <returns>true if the region was successfully contacted, false otherwise</returns> | ||
1076 | protected abstract bool PrepareLoginToRegion( | ||
1077 | RegionInfo regionInfo, UserProfileData user, LoginResponse response, IPEndPoint client); | ||
1067 | 1078 | ||
1068 | /// <summary> | 1079 | /// <summary> |
1069 | /// Add active gestures of the user to the login response. | 1080 | /// Add active gestures of the user to the login response. |