aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/IRegionData.cs
diff options
context:
space:
mode:
authorMelanie2010-01-10 04:23:23 +0000
committerMelanie2010-01-10 04:23:23 +0000
commit78e9dc7c2c71a2d1cfda7b39dfbc12ddbb64233b (patch)
tree3476e277e98d3b5e652f0a36718a6b3b44790f7e /OpenSim/Data/IRegionData.cs
parentAdd "Persistent" flag to regions table flags values (diff)
downloadopensim-SC_OLD-78e9dc7c2c71a2d1cfda7b39dfbc12ddbb64233b.zip
opensim-SC_OLD-78e9dc7c2c71a2d1cfda7b39dfbc12ddbb64233b.tar.gz
opensim-SC_OLD-78e9dc7c2c71a2d1cfda7b39dfbc12ddbb64233b.tar.bz2
opensim-SC_OLD-78e9dc7c2c71a2d1cfda7b39dfbc12ddbb64233b.tar.xz
Add a "LockedOut" flag to allow locking a region out via the grid server.
This flag prevents registration of a known region
Diffstat (limited to 'OpenSim/Data/IRegionData.cs')
-rw-r--r--OpenSim/Data/IRegionData.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/IRegionData.cs b/OpenSim/Data/IRegionData.cs
index 41c74f2..140bc96 100644
--- a/OpenSim/Data/IRegionData.cs
+++ b/OpenSim/Data/IRegionData.cs
@@ -71,6 +71,7 @@ namespace OpenSim.Data
71 FallbackRegion = 2, // Regions we redirect to when the destination is down 71 FallbackRegion = 2, // Regions we redirect to when the destination is down
72 RegionOnline = 4, // Set when a region comes online, unset when it unregisters and DeleteOnUnregister is false 72 RegionOnline = 4, // Set when a region comes online, unset when it unregisters and DeleteOnUnregister is false
73 NoDirectLogin = 8, // Region unavailable for direct logins (by name) 73 NoDirectLogin = 8, // Region unavailable for direct logins (by name)
74 Persistent = 16 // Don't remove on unregister 74 Persistent = 16, // Don't remove on unregister
75 LockedOut = 32 // Don't allow registration
75 } 76 }
76} 77}