1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 19:03:13 +02:00

Fixed bug #1107. We now have support for IRCds that send auth after the initial NICK/UID command, and automatically reidentifying users from their account name on InspIRCd1.2

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2513 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Adam-
2009-09-26 04:53:59 +00:00
parent 927d2717a9
commit d8bd3afd76
8 changed files with 87 additions and 33 deletions
+1
View File
@@ -525,6 +525,7 @@ struct ircdvars_ {
* 0 for no support, 1 for strict cidr support, anything else
* for ircd specific support (nefarious only cares about first /mask) */
const char *globaltldprefix; /* TLD prefix used for Global */
bool b_delay_auth; /* Auth for users is sent after the initial NICK/UID command */
};
struct ircdcapab_ {
+5
View File
@@ -145,5 +145,10 @@ public: // XXX: exposing a tiny bit too much
* @param svid Services id
*/
void CheckAuthenticationToken(const char *svid);
/** Auto identify the user to the given accountname.
* @param account Display nick of account
*/
void AutoID(const char *acc);
};