blob: 9f7e4b1f4e274e1e263b35608c6f29011d07e132 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef JINGLE_NOTIFIER_COMMUNICATOR_CONNECTION_SETTINGS_H_
#define JINGLE_NOTIFIER_COMMUNICATOR_CONNECTION_SETTINGS_H_
#include <deque>
#include <string>
#include <vector>
#include "talk/xmpp/xmppclientsettings.h"
namespace notifier {
class ConnectionSettings {
public:
ConnectionSettings() : protocol_(cricket::PROTO_TCP) {}
cricket::ProtocolType protocol() { return protocol_; }
const talk_base::SocketAddress& server() const { return server_; }
void set_protocol(cricket::ProtocolType protocol) { protocol_ = protocol; }
talk_base::SocketAddress* mutable_server() { return &server_; }
void FillXmppClientSettings(buzz::XmppClientSettings* xcs) const;
private:
cricket::ProtocolType protocol_; // PROTO_TCP, PROTO_SSLTCP, etc.
talk_base::SocketAddress server_; // Server.
// Need copy constructor due to use in stl deque.
};
class ConnectionSettingsList {
public:
ConnectionSettingsList() {}
int GetCount() { return list_.size(); }
ConnectionSettings* GetSettings(size_t index) { return &list_[index]; }
void ClearPermutations() {
list_.clear();
iplist_seen_.clear();
}
void AddPermutations(const std::string& hostname,
const std::vector<uint32>& iplist,
int16 port,
bool special_port_magic,
bool try_ssltcp_first);
private:
void PermuteForAddress(const talk_base::SocketAddress& server,
bool special_port_magic,
bool try_ssltcp_first,
std::deque<ConnectionSettings>* list_temp);
ConnectionSettings template_;
std::deque<ConnectionSettings> list_;
std::vector<uint32> iplist_seen_;
DISALLOW_COPY_AND_ASSIGN(ConnectionSettingsList);
};
} // namespace notifier
#endif // JINGLE_NOTIFIER_COMMUNICATOR_CONNECTION_SETTINGS_H_
|