aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorUbitUmarov2017-04-28 20:03:44 +0100
committerUbitUmarov2017-04-28 20:03:44 +0100
commitba4e13ef55c378db13b6aa97316e99d651762a02 (patch)
tree42aa4a07f6447cb02f7205f6b3bfd86878037d75 /OpenSim/Framework
parentadd a usefull taint and update (diff)
downloadopensim-SC_OLD-ba4e13ef55c378db13b6aa97316e99d651762a02.zip
opensim-SC_OLD-ba4e13ef55c378db13b6aa97316e99d651762a02.tar.gz
opensim-SC_OLD-ba4e13ef55c378db13b6aa97316e99d651762a02.tar.bz2
opensim-SC_OLD-ba4e13ef55c378db13b6aa97316e99d651762a02.tar.xz
a few changes to permissions folding... we are testing. at this point only use master for TESTING also
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Util.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs
index 0ec24e6..4d025a9 100644
--- a/OpenSim/Framework/Util.cs
+++ b/OpenSim/Framework/Util.cs
@@ -79,7 +79,9 @@ namespace OpenSim.Framework
79 79
80 FoldedMask = 0x0f, 80 FoldedMask = 0x0f,
81 81
82 // 82 FoldingShift = 13 , // number of bit shifts from normal perm to folded or back (same as Transfer shift below)
83 // when doing as a block
84
83 Transfer = 1 << 13, // 0x02000 85 Transfer = 1 << 13, // 0x02000
84 Modify = 1 << 14, // 0x04000 86 Modify = 1 << 14, // 0x04000
85 Copy = 1 << 15, // 0x08000 87 Copy = 1 << 15, // 0x08000
@@ -91,6 +93,7 @@ namespace OpenSim.Framework
91 All = 0x8e000, 93 All = 0x8e000,
92 AllAndExport = 0x9e000, 94 AllAndExport = 0x9e000,
93 AllEffective = 0x9e000 95 AllEffective = 0x9e000
96
94 } 97 }
95 98
96 /// <summary> 99 /// <summary>