diff options
author | Justin Clark-Casey (justincc) | 2012-07-12 23:48:42 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-07-12 23:48:42 +0100 |
commit | d6f54b25cd8e3d7a465e9875d2e00dd414a1b019 (patch) | |
tree | f8f00db32c2b56054fe29953b5ed2ff44c2b6a63 /OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | |
parent | Remove IClientIPEndpoint client interface for now. (diff) | |
download | opensim-SC_OLD-d6f54b25cd8e3d7a465e9875d2e00dd414a1b019.zip opensim-SC_OLD-d6f54b25cd8e3d7a465e9875d2e00dd414a1b019.tar.gz opensim-SC_OLD-d6f54b25cd8e3d7a465e9875d2e00dd414a1b019.tar.bz2 opensim-SC_OLD-d6f54b25cd8e3d7a465e9875d2e00dd414a1b019.tar.xz |
Stop redundantly passing in the endpoint to the LLClientView constructor.
This can always be retrieved via the LLUDPClient and is so done in various places already.
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs index 468d524..097f109 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | |||
@@ -1103,7 +1103,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1103 | { | 1103 | { |
1104 | LLUDPClient udpClient = new LLUDPClient(this, ThrottleRates, m_throttle, circuitCode, agentID, remoteEndPoint, m_defaultRTO, m_maxRTO); | 1104 | LLUDPClient udpClient = new LLUDPClient(this, ThrottleRates, m_throttle, circuitCode, agentID, remoteEndPoint, m_defaultRTO, m_maxRTO); |
1105 | 1105 | ||
1106 | client = new LLClientView(remoteEndPoint, m_scene, this, udpClient, sessionInfo, agentID, sessionID, circuitCode); | 1106 | client = new LLClientView(m_scene, this, udpClient, sessionInfo, agentID, sessionID, circuitCode); |
1107 | client.OnLogout += LogoutHandler; | 1107 | client.OnLogout += LogoutHandler; |
1108 | 1108 | ||
1109 | ((LLClientView)client).DisableFacelights = m_disableFacelights; | 1109 | ((LLClientView)client).DisableFacelights = m_disableFacelights; |