blob: cae5532dc191c1836f24a4003f3985b25f2454fb (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/*
* Copyright (c) 2010 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#pragma once
#include <vector>
#include <string>
#include <boost/shared_ptr.hpp>
#include <Swiften/Elements/Element.h>
namespace Swift {
class StreamFeatures : public Element {
public:
typedef boost::shared_ptr<StreamFeatures> ref;
StreamFeatures() : hasStartTLS_(false), hasResourceBind_(false), hasSession_(false), hasStreamManagement_(false), hasRosterVersioning_(false) {}
void setHasStartTLS() {
hasStartTLS_ = true;
}
bool hasStartTLS() const {
return hasStartTLS_;
}
void setHasSession() {
hasSession_ = true;
}
bool hasSession() const {
return hasSession_;
}
void setHasResourceBind() {
hasResourceBind_ = true;
}
bool hasResourceBind() const {
return hasResourceBind_;
}
const std::vector<std::string>& getCompressionMethods() const {
return compressionMethods_;
}
void addCompressionMethod(const std::string& mechanism) {
compressionMethods_.push_back(mechanism);
}
bool hasCompressionMethod(const std::string& mechanism) const;
const std::vector<std::string>& getAuthenticationMechanisms() const {
return authenticationMechanisms_;
}
void addAuthenticationMechanism(const std::string& mechanism) {
authenticationMechanisms_.push_back(mechanism);
}
bool hasAuthenticationMechanism(const std::string& mechanism) const;
bool hasAuthenticationMechanisms() const {
return !authenticationMechanisms_.empty();
}
bool hasStreamManagement() const {
return hasStreamManagement_;
}
void setHasStreamManagement() {
hasStreamManagement_ = true;
}
bool hasRosterVersioning() const {
return hasRosterVersioning_;
}
void setHasRosterVersioning() {
hasRosterVersioning_ = true;
}
private:
bool hasStartTLS_;
std::vector<std::string> compressionMethods_;
std::vector<std::string> authenticationMechanisms_;
bool hasResourceBind_;
bool hasSession_;
bool hasStreamManagement_;
bool hasRosterVersioning_;
};
}
|