X-Git-Url: http://git.pk910.de/?p=NextIRCd.git;a=blobdiff_plain;f=src%2Fircd_auth.h;fp=src%2Fircd_auth.h;h=fde02c429a03a10ee206558776b4898ca3fd690a;hp=0000000000000000000000000000000000000000;hb=fc3df376babe61fd8b725fb8c48c189eaebeec50;hpb=59ddec51d649f0af9b91d2aab710258d5b97a596 diff --git a/src/ircd_auth.h b/src/ircd_auth.h new file mode 100644 index 0000000..fde02c4 --- /dev/null +++ b/src/ircd_auth.h @@ -0,0 +1,25 @@ +/* ircd_auth.h - NextIRCd + * Copyright (C) 2012-2013 Philipp Kreil (pk910) + * + * This program 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef _ircd_auth_h +#define _ircd_auth_h + +struct Auth *auth_new(struct Connection *conn); +void auth_start_dnsreverse(struct Auth *auth); +void auth_try_finish(struct Auth *auth); + +#endif