OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // XmppConnectionGenerator does the following algorithm: | 5 // XmppConnectionGenerator does the following algorithm: |
6 // proxy = ResolveProxyInformation(connection_options) | 6 // proxy = ResolveProxyInformation(connection_options) |
7 // for server in server_list | 7 // for server in server_list |
8 // get dns_addresses for server | 8 // get dns_addresses for server |
9 // connection_list = (dns_addresses X connection methods X proxy).shuffle() | 9 // connection_list = (dns_addresses X connection methods X proxy).shuffle() |
10 // for connection in connection_list | 10 // for connection in connection_list |
11 // yield connection | 11 // yield connection |
12 | 12 |
13 #include "chrome/common/net/notifier/communicator/xmpp_connection_generator.h" | 13 #include "jingle/notifier/communicator/xmpp_connection_generator.h" |
14 | 14 |
15 #if defined(OS_WIN) | 15 #if defined(OS_WIN) |
16 #include <winsock2.h> | 16 #include <winsock2.h> |
17 #elif defined(OS_POSIX) | 17 #elif defined(OS_POSIX) |
18 #include <arpa/inet.h> | 18 #include <arpa/inet.h> |
19 #endif | 19 #endif |
20 | 20 |
21 #include <vector> | 21 #include <vector> |
22 | 22 |
23 #include "base/callback.h" | 23 #include "base/callback.h" |
24 #include "base/compiler_specific.h" | 24 #include "base/compiler_specific.h" |
25 #include "base/logging.h" | 25 #include "base/logging.h" |
26 #include "chrome/common/net/notifier/base/signal_thread_task.h" | 26 #include "jingle/notifier/base/signal_thread_task.h" |
27 #include "chrome/common/net/notifier/communicator/connection_options.h" | 27 #include "jingle/notifier/communicator/connection_options.h" |
28 #include "chrome/common/net/notifier/communicator/connection_settings.h" | 28 #include "jingle/notifier/communicator/connection_settings.h" |
29 #include "chrome/common/net/notifier/communicator/product_info.h" | 29 #include "jingle/notifier/communicator/product_info.h" |
30 #include "net/base/net_errors.h" | 30 #include "net/base/net_errors.h" |
31 #include "net/base/sys_addrinfo.h" | 31 #include "net/base/sys_addrinfo.h" |
32 #include "talk/base/httpcommon-inl.h" | 32 #include "talk/base/httpcommon-inl.h" |
33 #include "talk/base/task.h" | 33 #include "talk/base/task.h" |
34 #include "talk/base/thread.h" | 34 #include "talk/base/thread.h" |
35 #include "talk/xmpp/prexmppauth.h" | 35 #include "talk/xmpp/prexmppauth.h" |
36 #include "talk/xmpp/xmppclientsettings.h" | 36 #include "talk/xmpp/xmppclientsettings.h" |
37 #include "talk/xmpp/xmppengine.h" | 37 #include "talk/xmpp/xmppengine.h" |
38 | 38 |
39 namespace notifier { | 39 namespace notifier { |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 SignalNewSettings(*settings); | 205 SignalNewSettings(*settings); |
206 } | 206 } |
207 | 207 |
208 void XmppConnectionGenerator::HandleExhaustedConnections() { | 208 void XmppConnectionGenerator::HandleExhaustedConnections() { |
209 LOG(INFO) << "(" << buzz::XmppEngine::ERROR_SOCKET | 209 LOG(INFO) << "(" << buzz::XmppEngine::ERROR_SOCKET |
210 << ", " << first_dns_error_ << ")"; | 210 << ", " << first_dns_error_ << ")"; |
211 SignalExhaustedSettings(successfully_resolved_dns_, first_dns_error_); | 211 SignalExhaustedSettings(successfully_resolved_dns_, first_dns_error_); |
212 } | 212 } |
213 | 213 |
214 } // namespace notifier | 214 } // namespace notifier |
OLD | NEW |