aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-04-01 00:41:52 +0100
committerJustin Clark-Casey (justincc)2011-04-01 00:41:52 +0100
commit39c610c16554de05dae975cb9258881dce1d17ed (patch)
treedb1748ee3aca3d5b52d19cc2aefe283d04304847 /OpenSim
parentIf the prim count gets an object with invalid bounds, don't try to count it. (diff)
downloadopensim-SC_OLD-39c610c16554de05dae975cb9258881dce1d17ed.zip
opensim-SC_OLD-39c610c16554de05dae975cb9258881dce1d17ed.tar.gz
opensim-SC_OLD-39c610c16554de05dae975cb9258881dce1d17ed.tar.bz2
opensim-SC_OLD-39c610c16554de05dae975cb9258881dce1d17ed.tar.xz
Log which address and port the UDP listener is configured for. This will match that given for InternalAddress in the config (e.g. 0.0.0.0)
Can't obtain actually bound address until the UDP socket is used for the first time.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/OpenSimUDPBase.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/OpenSimUDPBase.cs b/OpenSim/Region/ClientStack/LindenUDP/OpenSimUDPBase.cs
index d2779ba..6eebd9d 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/OpenSimUDPBase.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/OpenSimUDPBase.cs
@@ -100,6 +100,10 @@ namespace OpenMetaverse
100 const int SIO_UDP_CONNRESET = -1744830452; 100 const int SIO_UDP_CONNRESET = -1744830452;
101 101
102 IPEndPoint ipep = new IPEndPoint(m_localBindAddress, m_udpPort); 102 IPEndPoint ipep = new IPEndPoint(m_localBindAddress, m_udpPort);
103
104 m_log.DebugFormat(
105 "[UDPBASE]: Binding UDP listener using internal IP address config {0}:{1}",
106 ipep.Address, ipep.Port);
103 107
104 m_udpSocket = new Socket( 108 m_udpSocket = new Socket(
105 AddressFamily.InterNetwork, 109 AddressFamily.InterNetwork,