X-Git-Url: http://git.pk910.de/?p=NextIRCd.git;a=blobdiff_plain;f=src%2Fcmd_ping.c;fp=src%2Fcmd_ping.c;h=5e29ea7e8462288ec58faba2e999eac3443de2fb;hp=0000000000000000000000000000000000000000;hb=b708125495aacd544ee33d252368814acae5adb9;hpb=878d4152c9e550c5c418832c305d99a305de330d diff --git a/src/cmd_ping.c b/src/cmd_ping.c new file mode 100644 index 0000000..5e29ea7 --- /dev/null +++ b/src/cmd_ping.c @@ -0,0 +1,39 @@ +/* cmd_ping.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" +#include "ircd_sock.h" + +int cmd_ping_cli(struct Client *client, char *argv[], int argc) { + + return 0; +} + +int cmd_ping_auth(struct Auth *auth, char *argv[], int argc) { + char *parameter = argv[0]; + if(!parameter || !*parameter) + parameter = "PONG"; + + socket_printf(auth->conn, ":AUTH PONG :%s", parameter); + + return 0; +}