diff options
Diffstat (limited to 'OpenSim/Framework/Communications/IGridServices.cs')
-rw-r--r-- | OpenSim/Framework/Communications/IGridServices.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/IGridServices.cs b/OpenSim/Framework/Communications/IGridServices.cs index 6c5d2e2..f6a2885 100644 --- a/OpenSim/Framework/Communications/IGridServices.cs +++ b/OpenSim/Framework/Communications/IGridServices.cs | |||
@@ -33,6 +33,11 @@ namespace OpenSim.Framework.Communications | |||
33 | public interface IGridServices | 33 | public interface IGridServices |
34 | { | 34 | { |
35 | string gdebugRegionName { get; set; } | 35 | string gdebugRegionName { get; set; } |
36 | |||
37 | /// <summary> | ||
38 | /// If true, then regions will accept logins from the user service. If false, then they will not. | ||
39 | /// </summary> | ||
40 | bool RegionLoginsEnabled { get; set; } | ||
36 | 41 | ||
37 | /// <summary> | 42 | /// <summary> |
38 | /// Register a region with the grid service. | 43 | /// Register a region with the grid service. |
@@ -42,7 +47,7 @@ namespace OpenSim.Framework.Communications | |||
42 | /// <exception cref="System.Exception">Thrown if region registration failed</exception> | 47 | /// <exception cref="System.Exception">Thrown if region registration failed</exception> |
43 | RegionCommsListener RegisterRegion(RegionInfo regionInfos); | 48 | RegionCommsListener RegisterRegion(RegionInfo regionInfos); |
44 | 49 | ||
45 | bool DeregisterRegion(RegionInfo regionInfo); | 50 | bool DeregisterRegion(RegionInfo regionInfo); |
46 | 51 | ||
47 | /// <summary> | 52 | /// <summary> |
48 | /// Get information about the regions neighbouring the given co-ordinates. | 53 | /// Get information about the regions neighbouring the given co-ordinates. |