aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authordiva2009-04-14 17:32:05 +0000
committerdiva2009-04-14 17:32:05 +0000
commit2a49272b6286f65bc0389a4e1a1795d50a104f3b (patch)
treed4dc08aea83c22632183c252fa36ef18a6d28eeb /OpenSim/Framework
parent* Explicitly start the asset server thread so that unit tests can run single ... (diff)
downloadopensim-SC_OLD-2a49272b6286f65bc0389a4e1a1795d50a104f3b.zip
opensim-SC_OLD-2a49272b6286f65bc0389a4e1a1795d50a104f3b.tar.gz
opensim-SC_OLD-2a49272b6286f65bc0389a4e1a1795d50a104f3b.tar.bz2
opensim-SC_OLD-2a49272b6286f65bc0389a4e1a1795d50a104f3b.tar.xz
Changing the CAP seed to be the string representation of a full UUID, instead of a trunkated UUID.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Communications/Capabilities/CapsUtil.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs b/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs
index 874a27f..f804abb 100644
--- a/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs
+++ b/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs
@@ -52,7 +52,10 @@ namespace OpenSim.Framework.Communications.Capabilities
52 { 52 {
53 UUID caps = UUID.Random(); 53 UUID caps = UUID.Random();
54 string capsPath = caps.ToString(); 54 string capsPath = caps.ToString();
55 capsPath = capsPath.Remove(capsPath.Length - 4, 4); 55 // I'm commenting this, rather than delete, to keep as historical record.
56 // The caps seed is now a full UUID string that gets added four more digits
57 // for producing certain CAPs URLs in OpenSim
58 //capsPath = capsPath.Remove(capsPath.Length - 4, 4);
56 return capsPath; 59 return capsPath;
57 } 60 }
58 } 61 }