applied changes from 27695ac2f31dd7a184a57d2aa3ababff0faca25a release-2.9.0

Mon, 20 Jun 2011 05:30:52 +0000

author
Mark Doliner <markdoliner@pidgin.im>
date
Mon, 20 Jun 2011 05:30:52 +0000
branch
release-2.9.0
changeset 31913
859a36ec990d
parent 31912
144e3c9f7f2a
child 31914
93fa77b469f4

applied changes from 27695ac2f31dd7a184a57d2aa3ababff0faca25a
through 0f36ebd8631b76ac37ca3d7b4ee0c6b8b01c7b64

Original commit message:
Actually set the relay info for TCP

ChangeLog file | annotate | diff | comparison | revisions
libpurple/media/backend-fs2.c file | annotate | diff | comparison | revisions
--- a/ChangeLog	Mon Jun 20 05:29:40 2011 +0000
+++ b/ChangeLog	Mon Jun 20 05:30:52 2011 +0000
@@ -1,5 +1,10 @@
 Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul
 
+version 2.8.1 (MM/DD/YYYY):
+  libpurple:
+  * media: Actually use the specified TCP port from the TURN configuration to
+    create a TCP relay candidate.
+
 version 2.8.0 (06/07/2011):
 	General:
 	* Implement simple silence suppression for voice calls, preventing
--- a/libpurple/media/backend-fs2.c	Mon Jun 20 05:29:40 2011 +0000
+++ b/libpurple/media/backend-fs2.c	Mon Jun 20 05:30:52 2011 +0000
@@ -1823,7 +1823,7 @@
 		port = purple_prefs_get_int("/purple/network/turn_port_tcp");
 		if (port > 0) {
 			relay_info = append_relay_info(relay_info, turn_ip, port, username,
-				password, "udp");
+				password, "tcp");
 		}
 
 		/* TURN over SSL is only supported by libnice for Google's "psuedo" SSL mode

mercurial