X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=lib%2Fsilcclient%2Fcommand_reply.h;h=3696f748226e23a1f0d21c874ce3cc290360a7e1;hb=48df45ce74e38c47a8a05a5dcb3b57a61eeb0b5d;hp=f950447d35f8944fd3c28eeff6e71e47e339c300;hpb=0e035ff559c5c5c748b2fda72a1cd1935afec33a;p=silc.git diff --git a/lib/silcclient/command_reply.h b/lib/silcclient/command_reply.h index f950447d..3696f748 100644 --- a/lib/silcclient/command_reply.h +++ b/lib/silcclient/command_reply.h @@ -37,8 +37,8 @@ struct SilcClientCommandReplyContextStruct { SilcClient client; SilcSocketConnection sock; SilcCommandPayload payload; - SilcCommandStatus status; - SilcCommandStatus error; + SilcStatus status; + SilcStatus error; SilcArgumentPayload args; SilcPacketContext *packet; @@ -67,20 +67,20 @@ void silc_client_command_reply_##func(void *context, void *context2) /* Status message structure. Messages are defined below. */ typedef struct { - SilcCommandStatus status; + SilcStatus status; char *message; -} SilcCommandStatusMessage; +} SilcStatusMessage; /* Status messages returned by the server */ #define STAT(x) SILC_STATUS_ERR_##x -DLLAPI extern const SilcCommandStatusMessage silc_command_status_messages[]; +DLLAPI extern const SilcStatusMessage silc_command_status_messages[]; /* Prototypes */ +char *silc_client_status_message(SilcStatus status); void silc_client_command_reply_process(SilcClient client, SilcSocketConnection sock, SilcPacketContext *packet); -char *silc_client_command_status_message(SilcCommandStatus status); void silc_client_command_reply_free(SilcClientCommandReplyContext cmd); SILC_CLIENT_CMD_REPLY_FUNC(whois); SILC_CLIENT_CMD_REPLY_FUNC(whowas);