aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-01-06 18:26:27 +0000
committerJustin Clarke Casey2009-01-06 18:26:27 +0000
commit31b0f07085eafd63039681b6c57aca289b9fe532 (patch)
tree5b0c08992715c98efdfd9bfe6cf54ea43aaa3321 /OpenSim/Framework/Communications
parent* Fix build break - forgot that I had renamed an argument (diff)
downloadopensim-SC_OLD-31b0f07085eafd63039681b6c57aca289b9fe532.zip
opensim-SC_OLD-31b0f07085eafd63039681b6c57aca289b9fe532.tar.gz
opensim-SC_OLD-31b0f07085eafd63039681b6c57aca289b9fe532.tar.bz2
opensim-SC_OLD-31b0f07085eafd63039681b6c57aca289b9fe532.tar.xz
* Rename GetRandomCapsPath() to GetRandomCapsObjectPath() to fit in with terminology used elsewhere
* Last build break was probably a Bamboo failure - hopefully this should succeed
Diffstat (limited to 'OpenSim/Framework/Communications')
-rw-r--r--OpenSim/Framework/Communications/Capabilities/CapsUtil.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs b/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs
index fe9780d..829b4e5 100644
--- a/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs
+++ b/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs
@@ -45,7 +45,11 @@ namespace OpenSim.Framework.Communications.Capabilities
45 return "/CAPS/" + capsObjectPath + "0000/"; 45 return "/CAPS/" + capsObjectPath + "0000/";
46 } 46 }
47 47
48 public static string GetRandomCapsPath() 48 /// <summary>
49 /// Get a random CAPS object path component that will be used as the identifying part of all future CAPS requests
50 /// </summary>
51 /// <returns></returns>
52 public static string GetRandomCapsObjectPath()
49 { 53 {
50 UUID caps = UUID.Random(); 54 UUID caps = UUID.Random();
51 string capsPath = caps.ToString(); 55 string capsPath = caps.ToString();