aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorDiva Canto2010-08-19 18:55:30 -0700
committerDiva Canto2010-08-19 21:27:07 -0700
commit05373de9df263dedccf500a02330e5d1469e5974 (patch)
treed03b0929a98f6b36258e4b91b521717d892b1e4b /OpenSim/Framework
parentremove ancient and unused OpenSim.GridLaunch GUI code. (diff)
downloadopensim-SC_OLD-05373de9df263dedccf500a02330e5d1469e5974.zip
opensim-SC_OLD-05373de9df263dedccf500a02330e5d1469e5974.tar.gz
opensim-SC_OLD-05373de9df263dedccf500a02330e5d1469e5974.tar.bz2
opensim-SC_OLD-05373de9df263dedccf500a02330e5d1469e5974.tar.xz
Partial rewrite of client IP verification. Not completely finished yet, and untested. Committing to move to my other computer.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Constants.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Framework/Constants.cs b/OpenSim/Framework/Constants.cs
index 5757061..1b1aaf2 100644
--- a/OpenSim/Framework/Constants.cs
+++ b/OpenSim/Framework/Constants.cs
@@ -83,7 +83,9 @@ namespace OpenSim.Framework
83 /// <summary>Finished, Sim Changed</summary> 83 /// <summary>Finished, Sim Changed</summary>
84 FinishedViaNewSim = 1 << 28, 84 FinishedViaNewSim = 1 << 28,
85 /// <summary>Finished, Same Sim</summary> 85 /// <summary>Finished, Same Sim</summary>
86 FinishedViaSameSim = 1 << 29 86 FinishedViaSameSim = 1 << 29,
87 /// <summary>Agent coming into the grid from another grid</summary>
88 ViaHGLogin = 1 << 30
87 } 89 }
88 90
89 } 91 }