Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(278)

Unified Diff: jingle/notifier/base/chrome_async_socket.cc

Issue 4339001: Correctly handle SSL Client Authentication requests when connecting... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: jingle/notifier/base/chrome_async_socket.cc
===================================================================
--- jingle/notifier/base/chrome_async_socket.cc (revision 65205)
+++ jingle/notifier/base/chrome_async_socket.cc (working copy)
@@ -435,8 +435,8 @@
DCHECK(transport_socket_.get());
transport_socket_.reset(
client_socket_factory_->CreateSSLClientSocket(
- transport_socket_.release(), domain_name, ssl_config_,
- NULL /* ssl_host_info */));
+ transport_socket_.release(), domain_name, /*TODO(rch)*/-1,
wtc 2010/11/11 01:11:35 Please pass 443 instead of -1 as the temporary por
Ryan Hamilton 2010/11/11 18:57:00 Done.
+ ssl_config_, NULL /* ssl_host_info */));
int status = transport_socket_->Connect(&ssl_connect_callback_);
if (status != net::ERR_IO_PENDING) {
MessageLoop* message_loop = MessageLoop::current();
« no previous file with comments | « no previous file | jingle/notifier/base/xmpp_client_socket_factory.h » ('j') | jingle/notifier/base/xmpp_client_socket_factory.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698