X-Git-Url: http://git.pk910.de/?p=NextIRCd.git;a=blobdiff_plain;f=src%2Fcmd_pong.c;fp=src%2Fcmd_pong.c;h=c1e960106c9e6dd95f93445e7bf314fa34a7804d;hp=0000000000000000000000000000000000000000;hb=b708125495aacd544ee33d252368814acae5adb9;hpb=878d4152c9e550c5c418832c305d99a305de330d diff --git a/src/cmd_pong.c b/src/cmd_pong.c new file mode 100644 index 0000000..c1e9601 --- /dev/null +++ b/src/cmd_pong.c @@ -0,0 +1,37 @@ +/* cmd_pong.c - 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 . + */ + +#include + +#include "cmd.h" +#include "struct_auth.h" +#include "ircd_users.h" +#include "ircd_auth.h" + +int cmd_pong_cli(struct Client *client, char *argv[], int argc) { + + return 0; +} + +int cmd_pong_auth(struct Auth *auth, char *argv[], int argc) { + if(!auth->have_pong) { + auth->have_pong = 1; + auth_try_finish(auth); + } + + return 0; +}