Files
@ d06d6f74149a
Branch filter:
Location: libtransport.git/include/Swiften/Server/UserRegistry.h - annotation
d06d6f74149a
613 B
text/plain
Better help messages for Slack bot, ability to rejoin the room automatically after spectrum2 restart
828ae9d2cb88 828ae9d2cb88 828ae9d2cb88 828ae9d2cb88 828ae9d2cb88 828ae9d2cb88 828ae9d2cb88 828ae9d2cb88 828ae9d2cb88 828ae9d2cb88 828ae9d2cb88 c7f2b6298073 828ae9d2cb88 828ae9d2cb88 828ae9d2cb88 828ae9d2cb88 828ae9d2cb88 828ae9d2cb88 828ae9d2cb88 828ae9d2cb88 c7f2b6298073 828ae9d2cb88 c7f2b6298073 828ae9d2cb88 828ae9d2cb88 | /*
* 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 <string>
#include <Swiften/Base/SafeByteArray.h>
#include <boost/signal.hpp>
#include "Swiften/Server/ServerFromClientSession.h"
namespace Swift {
class JID;
class UserRegistry {
public:
virtual ~UserRegistry();
virtual void isValidUserPassword(const JID& user, ServerFromClientSession *session, const SafeByteArray& password) = 0;
virtual void stopLogin(const JID &/*user*/, ServerFromClientSession *) {};
};
}
|