File indexing completed on 2024-06-23 04:03:33

0001 /*
0002  * Copyright (C) 2008  Remko Troncon
0003  * See COPYING for license details.
0004  */
0005 
0006 #include "xmpp/sasl/plainmessage.h"
0007 
0008 namespace XMPP {
0009 
0010 PLAINMessage::PLAINMessage(const QString& authzid, const QString& authcid, const QByteArray& password)
0011 {
0012     value_ = authzid.toUtf8() + '\0' + authcid.toUtf8() + '\0' + password;
0013 }
0014 
0015 }