diff options
author | MW | 2007-05-16 12:44:58 +0000 |
---|---|---|
committer | MW | 2007-05-16 12:44:58 +0000 |
commit | 3d93d390485075345442b9b5ea35eed88a9cab49 (patch) | |
tree | a51cdb72cd310ae3f579650886836ddc0211d986 /OpenSim.RegionServer/RegionInfoBase.cs | |
parent | made QueItem a nested class in SimClient. (diff) | |
download | opensim-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/RegionInfoBase.cs')
-rw-r--r-- | OpenSim.RegionServer/RegionInfoBase.cs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/OpenSim.RegionServer/RegionInfoBase.cs b/OpenSim.RegionServer/RegionInfoBase.cs new file mode 100644 index 0000000..42d3030 --- /dev/null +++ b/OpenSim.RegionServer/RegionInfoBase.cs | |||
@@ -0,0 +1,32 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using System.Net; | ||
5 | using System.Web; | ||
6 | using System.IO; | ||
7 | using OpenSim.Framework.Interfaces; | ||
8 | using OpenSim.Framework.Utilities; | ||
9 | using libsecondlife; | ||
10 | |||
11 | namespace OpenSim | ||
12 | { | ||
13 | public class RegionInfoBase | ||
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 | public RegionInfoBase() | ||
27 | { | ||
28 | |||
29 | } | ||
30 | } | ||
31 | |||
32 | } | ||