| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "remoting/signaling/xmpp_signal_strategy.h" | 5 #include "remoting/signaling/xmpp_signal_strategy.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/location.h" | 8 #include "base/location.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
| 11 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
| 12 #include "base/thread_task_runner_handle.h" | 12 #include "base/thread_task_runner_handle.h" |
| 13 #include "jingle/glue/chrome_async_socket.h" | 13 #include "jingle/glue/chrome_async_socket.h" |
| 14 #include "jingle/glue/task_pump.h" | 14 #include "jingle/glue/task_pump.h" |
| 15 #include "jingle/glue/xmpp_client_socket_factory.h" | 15 #include "jingle/glue/xmpp_client_socket_factory.h" |
| 16 #include "jingle/notifier/base/gaia_constants.h" | 16 #include "jingle/notifier/base/gaia_constants.h" |
| 17 #include "jingle/notifier/base/gaia_token_pre_xmpp_auth.h" | 17 #include "jingle/notifier/base/gaia_token_pre_xmpp_auth.h" |
| 18 #include "net/socket/client_socket_factory.h" | 18 #include "net/socket/client_socket_factory.h" |
| 19 #include "net/url_request/url_request_context_getter.h" | 19 #include "net/url_request/url_request_context_getter.h" |
| 20 #include "third_party/libjingle/source/talk/xmpp/prexmppauth.h" | 20 #include "third_party/libjingle/source/talk/xmpp/prexmppauth.h" |
| 21 #include "third_party/libjingle/source/talk/xmpp/saslcookiemechanism.h" | 21 #include "third_party/libjingle/source/talk/xmpp/saslcookiemechanism.h" |
| 22 #include "third_party/webrtc/base/thread.h" | 22 #include "third_party/webrtc/base/thread.h" |
| 23 | 23 |
| 24 const char kDefaultResourceName[] = "chromoting"; | 24 const char kDefaultResourceName[] = "chromoting"; |
| 25 | 25 |
| 26 // Use 58 seconds keep-alive interval, in case routers terminate | 26 // Use 58 seconds keep-alive interval, in case routers terminate |
| 27 // connections that are idle for more than a minute. | 27 // connections that are idle for more than a minute. |
| 28 const int kKeepAliveIntervalSeconds = 50; | 28 const int kKeepAliveIntervalSeconds = 50; |
| 29 | 29 |
| 30 // Read buffer size used by ChromeAsyncSocket for read and write buffers. Most | 30 // Read buffer size used by ChromeAsyncSocket for read and write buffers. |
| 31 // of XMPP messages are smaller than 4kB. | 31 // |
| 32 const size_t kReadBufferSize = 4096; | 32 // TODO(sergeyu): Currently jingle::ChromeAsyncSocket fails Write() when the |
| 33 const size_t kWriteBufferSize = 4096; | 33 // write buffer is full and talk::XmppClient just ignores the error. As result |
| 34 // chunks of data sent to the server are dropped (and they may not be full XMPP |
| 35 // stanzas). The problem needs to be fixed either in XmppClient on |
| 36 // ChromeAsyncSocket (e.g. ChromeAsyncSocket could close the connection when |
| 37 // buffer is full). |
| 38 const size_t kReadBufferSize = 64 * 1024; |
| 39 const size_t kWriteBufferSize = 64 * 1024; |
| 34 | 40 |
| 35 namespace remoting { | 41 namespace remoting { |
| 36 | 42 |
| 37 XmppSignalStrategy::XmppServerConfig::XmppServerConfig() {} | 43 XmppSignalStrategy::XmppServerConfig::XmppServerConfig() {} |
| 38 XmppSignalStrategy::XmppServerConfig::~XmppServerConfig() {} | 44 XmppSignalStrategy::XmppServerConfig::~XmppServerConfig() {} |
| 39 | 45 |
| 40 XmppSignalStrategy::XmppSignalStrategy( | 46 XmppSignalStrategy::XmppSignalStrategy( |
| 41 net::ClientSocketFactory* socket_factory, | 47 net::ClientSocketFactory* socket_factory, |
| 42 scoped_refptr<net::URLRequestContextGetter> request_context_getter, | 48 scoped_refptr<net::URLRequestContextGetter> request_context_getter, |
| 43 const XmppSignalStrategy::XmppServerConfig& xmpp_server_config) | 49 const XmppSignalStrategy::XmppServerConfig& xmpp_server_config) |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 std::string mechanism = notifier::kDefaultGaiaAuthMechanism; | 248 std::string mechanism = notifier::kDefaultGaiaAuthMechanism; |
| 243 if (settings.token_service() == "oauth2") { | 249 if (settings.token_service() == "oauth2") { |
| 244 mechanism = "X-OAUTH2"; | 250 mechanism = "X-OAUTH2"; |
| 245 } | 251 } |
| 246 | 252 |
| 247 return new notifier::GaiaTokenPreXmppAuth( | 253 return new notifier::GaiaTokenPreXmppAuth( |
| 248 jid.Str(), settings.auth_token(), settings.token_service(), mechanism); | 254 jid.Str(), settings.auth_token(), settings.token_service(), mechanism); |
| 249 } | 255 } |
| 250 | 256 |
| 251 } // namespace remoting | 257 } // namespace remoting |
| OLD | NEW |