ekiga r7582 - in branches/gnome-2-24: . src/endpoints



Author: dsandras
Date: Wed Jan 21 21:07:24 2009
New Revision: 7582
URL: http://svn.gnome.org/viewvc/ekiga?rev=7582&view=rev

Log:
Do not force the listen port to be in the UDP port range.
Could fix potential problems with STUN.


Modified:
   branches/gnome-2-24/ChangeLog
   branches/gnome-2-24/src/endpoints/sip-endpoint.cpp

Modified: branches/gnome-2-24/src/endpoints/sip-endpoint.cpp
==============================================================================
--- branches/gnome-2-24/src/endpoints/sip-endpoint.cpp	(original)
+++ branches/gnome-2-24/src/endpoints/sip-endpoint.cpp	Wed Jan 21 21:07:24 2009
@@ -478,7 +478,7 @@
 
   manager.get_udp_ports (udp_min, udp_max);
 
-  if (port > 0 && port >= udp_min && port <= udp_max) {
+  if (port > 0) {
 
     std::stringstream str;
     RemoveListener (NULL);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]