mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
removed some duplicate hard-coded port numbers. changed ports to uint.
This commit is contained in:
@@ -90,7 +90,7 @@ namespace SimpleApp
|
||||
m_log.Notice(m_log.LineInfo);
|
||||
|
||||
IPEndPoint internalEndPoint =
|
||||
new IPEndPoint(IPAddress.Parse("127.0.0.1"), m_networkServersInfo.HttpListenerPort);
|
||||
new IPEndPoint(IPAddress.Parse("127.0.0.1"), (int) m_networkServersInfo.HttpListenerPort);
|
||||
|
||||
RegionInfo regionInfo = new RegionInfo(1000, 1000, internalEndPoint, "localhost");
|
||||
regionInfo.DataStore = "simpleapp_datastore.yap";
|
||||
|
||||
Reference in New Issue
Block a user