diff options
author | Melanie | 2011-03-22 09:23:46 +0100 |
---|---|---|
committer | Melanie | 2011-03-22 09:23:46 +0100 |
commit | a073ca57dab55c1b143935f7622e8443e41f71d1 (patch) | |
tree | 550846e0c432a35e915a0c0076a069499a53ac6b /OpenSim | |
parent | Merge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/ca... (diff) | |
download | opensim-SC_OLD-a073ca57dab55c1b143935f7622e8443e41f71d1.zip opensim-SC_OLD-a073ca57dab55c1b143935f7622e8443e41f71d1.tar.gz opensim-SC_OLD-a073ca57dab55c1b143935f7622e8443e41f71d1.tar.bz2 opensim-SC_OLD-a073ca57dab55c1b143935f7622e8443e41f71d1.tar.xz |
Add a definition for a region flag to omit a region from traffic counting
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Data/IRegionData.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/IRegionData.cs b/OpenSim/Data/IRegionData.cs index 46dc4fb..d21a312 100644 --- a/OpenSim/Data/IRegionData.cs +++ b/OpenSim/Data/IRegionData.cs | |||
@@ -77,7 +77,8 @@ namespace OpenSim.Data | |||
77 | NoMove = 64, // Don't allow moving this region | 77 | NoMove = 64, // Don't allow moving this region |
78 | Reservation = 128, // This is an inactive reservation | 78 | Reservation = 128, // This is an inactive reservation |
79 | Authenticate = 256, // Require authentication | 79 | Authenticate = 256, // Require authentication |
80 | Hyperlink = 512 // Record represents a HG link | 80 | Hyperlink = 512, // Record represents a HG link |
81 | NoTraffic = 512 // Exclude this sim from traffic reporting | ||
81 | } | 82 | } |
82 | 83 | ||
83 | public class RegionDataDistanceCompare : IComparer<RegionData> | 84 | public class RegionDataDistanceCompare : IComparer<RegionData> |