summaryrefslogtreecommitdiff
path: root/net/ekiga/files/patch-endpoint
diff options
context:
space:
mode:
authorAlexander Leidinger <netchild@FreeBSD.org>2006-04-05 19:20:06 +0000
committerAlexander Leidinger <netchild@FreeBSD.org>2006-04-05 19:20:06 +0000
commit6734070660acc734562994db23995dd2686068e6 (patch)
treed2a616e3872f84156e4c96082291739cbefde424 /net/ekiga/files/patch-endpoint
parent- Update to 2.4.0 (diff)
Update to 1.2.1.
This is based upon work from kwm and includes patches for vfakeio to make it work with recent pwlib and openh323 versions from Joerg Pulz. You need a recent pwlib and openh323 port for this. Temporary aquire maintainership (ekiga is around the corner). Thanks to: kwm, Joerg Pulz <Joerg.Pulz@frm2.tum.de> Approved by: maintainer timeout (>3 months)
Notes
Notes: svn path=/head/; revision=158885
Diffstat (limited to 'net/ekiga/files/patch-endpoint')
-rw-r--r--net/ekiga/files/patch-endpoint61
1 files changed, 24 insertions, 37 deletions
diff --git a/net/ekiga/files/patch-endpoint b/net/ekiga/files/patch-endpoint
index c906400224db..f0aeb3c62898 100644
--- a/net/ekiga/files/patch-endpoint
+++ b/net/ekiga/files/patch-endpoint
@@ -1,37 +1,24 @@
-*** src/endpoint.cpp.orig Thu Jul 31 17:26:36 2003
---- src/endpoint.cpp Fri Sep 5 11:40:58 2003
-*************** GMH323EndPoint::GMH323EndPoint ()
-*** 176,183 ****
-
- /* Use IPv6 address family by default if available. */
- #ifdef P_HAS_IPV6
-! if (PIPSocket::IsIpAddressFamilyV6Supported())
-! PIPSocket::SetDefaultIpAddressFamilyV6();
- #endif
-
- rtp_port_range =
---- 176,185 ----
-
- /* Use IPv6 address family by default if available. */
- #ifdef P_HAS_IPV6
-! // ENABLING THIS CAUSES PWLIB TO GIVE AN ASSERTION WHEN THERE IS AN
-! // INCOMING CALL
-! // if (PIPSocket::IsIpAddressFamilyV6Supported())
-! // PIPSocket::SetDefaultIpAddressFamilyV6();
- #endif
-
- rtp_port_range =
-*************** GMH323EndPoint::TranslateTCPAddress(PIPS
-*** 682,687 ****
---- 684,694 ----
-
- && !((remoteAddr.Byte1() == 172)
- && ((remoteAddr.Byte2() >= 16)&&(remoteAddr.Byte2()<=31)))
-+
-+ && !((remoteAddr.Byte1() == 127)
-+ &&(remoteAddr.Byte2()== 0)
-+ &&(remoteAddr.Byte3()==0)
-+ &&(remoteAddr.Byte4()==1))
-
- && !(remoteAddr.Byte1() == 10)) {
-
+--- src/endpoint.cpp.orig Thu Nov 25 20:12:40 2004
++++ src/endpoint.cpp Mon Dec 13 21:33:19 2004
+@@ -59,6 +59,8 @@
+ #include "gm_conf.h"
+ #include "gm_events.h"
+
++#include <libintl.h>
++
+ #include <h261codec.h>
+
+ #include <ptclib/http.h>
+@@ -89,8 +91,10 @@
+
+ /* Use IPv6 address family by default if available. */
+ #ifdef P_HAS_IPV6
+- if (PIPSocket::IsIpAddressFamilyV6Supported())
+- PIPSocket::SetDefaultIpAddressFamilyV6();
++// ENABLING THIS CAUSES PWLIB TO GIVE AN ASSERTION WHEN THERE IS AN
++// INCOMING CALL
++// if (PIPSocket::IsIpAddressFamilyV6Supported())
++// PIPSocket::SetDefaultIpAddressFamilyV6();
+ #endif
+
+ audio_tester = NULL;