diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-16 19:37:57 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-16 19:37:57 +0000 |
commit | 16ce91fc01733f1056c514155b2110e1618ceb5c (patch) | |
tree | 40491edc1d7efa7d59f391e20203e0ab64166ec6 /remoting | |
parent | ddf1a607409691e9cadf367330619a665f240525 (diff) | |
download | chromium_src-16ce91fc01733f1056c514155b2110e1618ceb5c.zip chromium_src-16ce91fc01733f1056c514155b2110e1618ceb5c.tar.gz chromium_src-16ce91fc01733f1056c514155b2110e1618ceb5c.tar.bz2 |
Use xmpp.google.com instead of talk.google.com
Basically, xmpp.google.com is the new hostname for XMPP connections.
BUG=73067
TEST=
Review URL: http://codereview.chromium.org/6480089
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75161 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/jingle_glue/jingle_client.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/jingle_glue/jingle_client.cc b/remoting/jingle_glue/jingle_client.cc index 7b00d79..11be9fb 100644 --- a/remoting/jingle_glue/jingle_client.cc +++ b/remoting/jingle_glue/jingle_client.cc @@ -69,7 +69,7 @@ void JingleClient::DoInitialize(const std::string& username, settings.set_use_tls(true); settings.set_token_service(auth_token_service); settings.set_auth_cookie(auth_token); - settings.set_server(talk_base::SocketAddress("talk.google.com", 5222)); + settings.set_server(talk_base::SocketAddress("xmpp.google.com", 5222)); client_ = new buzz::XmppClient(thread_->task_pump()); client_->SignalStateChange.connect( |