29 lines
624 B
C
Raw Normal View History

/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd: (C) 2002-2010 InspIRCd Development Team
* See: http://wiki.inspircd.org/Credits
*
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
2012-04-14 18:03:25 -07:00
#ifndef SASL_H
#define SASL_H
class SASLFallback : public Event
{
public:
const parameterlist& params;
SASLFallback(Module* me, const parameterlist& p)
: Event(me, "sasl_fallback"), params(p)
{
Send();
}
};
#endif