/* command_reply.h Author: Pekka Riikonen Copyright (C) 1997 - 2001 Pekka Riikonen 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 2 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. */ #ifndef COMMAND_REPLY_H #define COMMAND_REPLY_H #include "command.h" /* Structure holding one command reply and pointer to its function. */ typedef struct { SilcCommandCb cb; SilcCommand cmd; } SilcServerCommandReply; /* All server command replys */ extern SilcServerCommandReply silc_command_reply_list[]; /* Context sent as argument to all command reply functions */ typedef struct { SilcServer server; SilcSocketConnection sock; SilcCommandPayload payload; SilcArgumentPayload args; /* If defined this executes the pending command. */ SilcServerPendingDestructor destructor; SilcCommandCb callback; void *context; unsigned short ident; } *SilcServerCommandReplyContext; /* Macros */ /* Macro used for command declaration in command reply list structure */ #define SILC_SERVER_CMD_REPLY(func, cmd ) \ { silc_server_command_reply_##func, SILC_COMMAND_##cmd } /* Macro used to declare command reply functions */ #define SILC_SERVER_CMD_REPLY_FUNC(func) \ void silc_server_command_reply_##func(void *context) /* Prototypes */ void silc_server_command_reply_free(SilcServerCommandReplyContext cmd); void silc_server_command_reply_process(SilcServer server, SilcSocketConnection sock, SilcBuffer buffer); SILC_SERVER_CMD_REPLY_FUNC(join); SILC_SERVER_CMD_REPLY_FUNC(whois); SILC_SERVER_CMD_REPLY_FUNC(identify); SILC_SERVER_CMD_REPLY_FUNC(users); #endif