X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/73d4cc91d7e6df980ab421c7b3b44dc94f0b396a..cbfd323c3191336a3c07c24725019cdaf87f0dd6:/src/nickserv.h diff --git a/src/nickserv.h b/src/nickserv.h index 69e1f2a..aca3b21 100644 --- a/src/nickserv.h +++ b/src/nickserv.h @@ -5,7 +5,7 @@ * * x3 is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, @@ -182,10 +182,10 @@ struct nickserv_config { const char *auto_admin; char default_style; struct string_list *denied_fakehost_words; + unsigned int force_handles_lowercase; unsigned int ldap_enable; #ifdef WITH_LDAP - const char *ldap_host; - unsigned int ldap_port; + const char *ldap_uri; const char *ldap_base; const char *ldap_dn_fmt; unsigned int ldap_version; @@ -197,6 +197,10 @@ struct nickserv_config { const char *ldap_field_password; const char *ldap_field_email; struct string_list *ldap_object_classes; + const char *ldap_oper_group_dn; + unsigned int ldap_oper_group_level; + const char *ldap_field_group_member; + unsigned int ldap_timeout; #endif }; @@ -212,7 +216,7 @@ int oper_has_access(struct userNode *user, struct userNode *bot, unsigned int mi void nickserv_show_oper_accounts(struct userNode *user, struct svccmd *cmd); struct handle_info *get_victim_oper(struct svccmd *cmd, struct userNode *user, const char *target); -struct handle_info *loc_auth(char *handle, char *password); +struct handle_info *loc_auth(char *handle, char *password, char *userhost); typedef void (*user_mode_func_t)(struct userNode *user, const char *mode_change); void reg_user_mode_func(user_mode_func_t func);