changeset 25023:86946237b284

Use 'bos.oscar.aol.com' as the common name for the initial BOS connection. The redirect from the login server to first BOS server doesn't include the magic TLV with a name to use for comparison; I missed this because I cached all those certificates before I fixed the code for the other SNAC family servers.
author Paul Aurich <paul@darkrain42.org>
date Wed, 28 Jan 2009 03:40:55 +0000
parents f6ef3a9534db
children 29f953732186
files libpurple/protocols/oscar/oscar.c
diffstat 1 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/protocols/oscar/oscar.c	Tue Jan 27 10:00:32 2009 +0000
+++ b/libpurple/protocols/oscar/oscar.c	Wed Jan 28 03:40:55 2009 +0000
@@ -1691,9 +1691,13 @@
 
 	if (od->use_ssl)
 	{
-		newconn->gsc = purple_ssl_connect(account, host, port,
-				ssl_connection_established_cb, ssl_connection_error_cb,
-				newconn);
+		/*
+		 * This shouldn't be hardcoded except that the server isn't sending
+		 * us a name to use for comparing the certificate common name.
+		 */
+		newconn->ssl_cert_cn = g_strdup("bos.oscar.aol.com");
+		newconn->connect_data = purple_proxy_connect(NULL, account, host, port,
+				ssl_proxy_conn_established_cb, newconn);
 	}
 	else
 	{