aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
diff options
context:
space:
mode:
authormeta72010-08-07 20:14:58 -0700
committermeta72010-08-07 20:14:58 -0700
commit12dd97c9f8f0d2d0570a46a403b0755b6903a40a (patch)
tree74da3f5d3bf1ee78ac056a72602ebc86f9413d20 /OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
parentImplement parcel group access control. This addresses mantis #158. (diff)
parentMerge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/ca... (diff)
downloadopensim-SC-12dd97c9f8f0d2d0570a46a403b0755b6903a40a.zip
opensim-SC-12dd97c9f8f0d2d0570a46a403b0755b6903a40a.tar.gz
opensim-SC-12dd97c9f8f0d2d0570a46a403b0755b6903a40a.tar.bz2
opensim-SC-12dd97c9f8f0d2d0570a46a403b0755b6903a40a.tar.xz
Merge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/careminster into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
index 3b63bcd..bbbf0be 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
@@ -153,6 +153,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
153 private int m_defaultRTO = 0; 153 private int m_defaultRTO = 0;
154 private int m_maxRTO = 0; 154 private int m_maxRTO = 0;
155 155
156 private bool m_disableFacelights = false;
157
156 public Socket Server { get { return null; } } 158 public Socket Server { get { return null; } }
157 159
158 public LLUDPServer(IPAddress listenIP, ref uint port, int proxyPortOffsetParm, bool allow_alternate_port, IConfigSource configSource, AgentCircuitManager circuitManager) 160 public LLUDPServer(IPAddress listenIP, ref uint port, int proxyPortOffsetParm, bool allow_alternate_port, IConfigSource configSource, AgentCircuitManager circuitManager)
@@ -190,6 +192,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
190 192
191 m_defaultRTO = config.GetInt("DefaultRTO", 0); 193 m_defaultRTO = config.GetInt("DefaultRTO", 0);
192 m_maxRTO = config.GetInt("MaxRTO", 0); 194 m_maxRTO = config.GetInt("MaxRTO", 0);
195 m_disableFacelights = config.GetBoolean("DisableFacelights", false);
193 } 196 }
194 else 197 else
195 { 198 {
@@ -907,6 +910,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
907 //this will prevent us from missing important messages 910 //this will prevent us from missing important messages
908 //before the modules are bound 911 //before the modules are bound
909 client.DeliverPackets = false; 912 client.DeliverPackets = false;
913 client.DisableFacelights = m_disableFacelights;
910 914
911 Util.FireAndForget( 915 Util.FireAndForget(
912 delegate 916 delegate