diff options
author | Justin Clarke Casey | 2008-03-23 21:21:39 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-03-23 21:21:39 +0000 |
commit | da531fa9e124394228a7c7597bd50e548af81efb (patch) | |
tree | f522f4f115b8bf5db07b45ddcc1c60261dcde680 /OpenSim/Framework/SerializableRegionInfo.cs | |
parent | Implements llGetParcelPrimOwners() (diff) | |
download | opensim-SC_OLD-da531fa9e124394228a7c7597bd50e548af81efb.zip opensim-SC_OLD-da531fa9e124394228a7c7597bd50e548af81efb.tar.gz opensim-SC_OLD-da531fa9e124394228a7c7597bd50e548af81efb.tar.bz2 opensim-SC_OLD-da531fa9e124394228a7c7597bd50e548af81efb.tar.xz |
* Start passing around a region server's http port in RegionInfo.
* This means that caps methods (editing scripts, poss map functions, etc) on non-home regions should now work with servers which are listening for http ports on a non default
(9000) port.
* If you are running a region server, this may only work properly once your grid server upgrades to this revision
* PLEASE NOTE: This shouldn't cause inter-region problems if one end of the connection hasn't upgraded to this revision. However if it does, the instability will persist until
the grid and region (and possibly all the region's neighbours) have upgraded to this revision.
* This revision also adds extra login related messages, both for success and failure conditions
Diffstat (limited to 'OpenSim/Framework/SerializableRegionInfo.cs')
-rw-r--r-- | OpenSim/Framework/SerializableRegionInfo.cs | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/OpenSim/Framework/SerializableRegionInfo.cs b/OpenSim/Framework/SerializableRegionInfo.cs index 39a5993..2c73da8 100644 --- a/OpenSim/Framework/SerializableRegionInfo.cs +++ b/OpenSim/Framework/SerializableRegionInfo.cs | |||
@@ -49,6 +49,7 @@ namespace OpenSim.Framework | |||
49 | m_internalEndPoint = ConvertFrom.InternalEndPoint; | 49 | m_internalEndPoint = ConvertFrom.InternalEndPoint; |
50 | m_externalHostName = ConvertFrom.ExternalHostName; | 50 | m_externalHostName = ConvertFrom.ExternalHostName; |
51 | m_remotingPort = ConvertFrom.RemotingPort; | 51 | m_remotingPort = ConvertFrom.RemotingPort; |
52 | m_httpPort = ConvertFrom.HttpPort; | ||
52 | m_allow_alternate_ports = ConvertFrom.m_allow_alternate_ports; | 53 | m_allow_alternate_ports = ConvertFrom.m_allow_alternate_ports; |
53 | RemotingAddress = ConvertFrom.RemotingAddress; | 54 | RemotingAddress = ConvertFrom.RemotingAddress; |
54 | m_proxyUrl = ConvertFrom.proxyUrl; | 55 | m_proxyUrl = ConvertFrom.proxyUrl; |
@@ -79,17 +80,29 @@ namespace OpenSim.Framework | |||
79 | public Guid RegionID = LLUUID.Zero.UUID; | 80 | public Guid RegionID = LLUUID.Zero.UUID; |
80 | 81 | ||
81 | public uint m_remotingPort; | 82 | public uint m_remotingPort; |
82 | |||
83 | public uint RemotingPort | 83 | public uint RemotingPort |
84 | { | 84 | { |
85 | get { return m_remotingPort; } | 85 | get { return m_remotingPort; } |
86 | set { m_remotingPort = value; } | 86 | set { m_remotingPort = value; } |
87 | } | 87 | } |
88 | |||
89 | /// <value> | ||
90 | /// The port by which http communication occurs with the region (most noticeably, CAPS communication) | ||
91 | /// | ||
92 | /// FIXME: Defaulting to 9000 temporarily (on the basis that this is the http port most region | ||
93 | /// servers are running) until the revision in which this change is made propogates around grids. | ||
94 | /// </value> | ||
95 | protected uint m_httpPort = 9000; | ||
96 | public uint HttpPort | ||
97 | { | ||
98 | get { return m_httpPort; } | ||
99 | set { m_httpPort = value; } | ||
100 | } | ||
101 | |||
88 | public bool m_allow_alternate_ports; | 102 | public bool m_allow_alternate_ports; |
89 | 103 | ||
90 | public string RemotingAddress; | 104 | public string RemotingAddress; |
91 | 105 | ||
92 | |||
93 | public IPEndPoint ExternalEndPoint | 106 | public IPEndPoint ExternalEndPoint |
94 | { | 107 | { |
95 | get | 108 | get |