aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.RegionServer/RegionInfo.cs
diff options
context:
space:
mode:
authorMW2007-05-16 12:44:58 +0000
committerMW2007-05-16 12:44:58 +0000
commit3d93d390485075345442b9b5ea35eed88a9cab49 (patch)
treea51cdb72cd310ae3f579650886836ddc0211d986 /OpenSim.RegionServer/RegionInfo.cs
parentmade QueItem a nested class in SimClient. (diff)
downloadopensim-SC_OLD-3d93d390485075345442b9b5ea35eed88a9cab49.zip
opensim-SC_OLD-3d93d390485075345442b9b5ea35eed88a9cab49.tar.gz
opensim-SC_OLD-3d93d390485075345442b9b5ea35eed88a9cab49.tar.bz2
opensim-SC_OLD-3d93d390485075345442b9b5ea35eed88a9cab49.tar.xz
started to refactor startup code and to move udp server code out to its own class (currently not being used though) so that a single instance can handle multiple regions (each will need to be listening on a separate udp port)
Diffstat (limited to 'OpenSim.RegionServer/RegionInfo.cs')
-rw-r--r--OpenSim.RegionServer/RegionInfo.cs13
1 files changed, 1 insertions, 12 deletions
diff --git a/OpenSim.RegionServer/RegionInfo.cs b/OpenSim.RegionServer/RegionInfo.cs
index 2707257..f82495a 100644
--- a/OpenSim.RegionServer/RegionInfo.cs
+++ b/OpenSim.RegionServer/RegionInfo.cs
@@ -10,19 +10,8 @@ using libsecondlife;
10 10
11namespace OpenSim 11namespace OpenSim
12{ 12{
13 public class RegionInfo // could inherit from SimProfileBase 13 public class RegionInfo : RegionInfoBase
14 { 14 {
15 public LLUUID SimUUID;
16 public string RegionName;
17 public uint RegionLocX;
18 public uint RegionLocY;
19 public ulong RegionHandle;
20 public ushort RegionWaterHeight = 20;
21 public bool RegionTerraform = true;
22
23 public int IPListenPort;
24 public string IPListenAddr;
25
26 //following should be removed and the GenericConfig object passed around, 15 //following should be removed and the GenericConfig object passed around,
27 //so each class (AssetServer, GridServer etc) can access what config data they want 16 //so each class (AssetServer, GridServer etc) can access what config data they want
28 public string AssetURL = "http://127.0.0.1:8003/"; 17 public string AssetURL = "http://127.0.0.1:8003/";