blob: 14a51f21b74bcababbe0536724d9117c32ff6695 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef SASL_PLAINMESSAGE_H
#define SASL_PLAINMESSAGE_H
#include "Swiften/Base/String.h"
#include "Swiften/Base/ByteArray.h"
namespace Swift {
class PLAINMessage
{
public:
PLAINMessage(const String& authcid, const String& password, const String& authzid = "");
const ByteArray& getValue() {
return value_;
}
private:
ByteArray value_;
};
}
#endif
|