]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/sasl.h
Allow SASL messages to be targeted at the services server
[user/henk/code/inspircd.git] / src / modules / sasl.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __SASL_H__
15 #define __SASL_H__
16
17 class SASLFallback : public Event
18 {
19  public:
20         const parameterlist& params;
21         SASLFallback(Module* me, const parameterlist& p)
22                 : Event(me, "sasl_fallback"), params(p)
23         {
24                 Send();
25         }
26 };
27
28 #endif