Integer type name change.
[silc.git] / apps / silcd / command_reply.h
index eb5b53d48553b81a5a6718387e3469aa0c9941bb..37dc113879e9992521296e3337539d010608a006 100644 (file)
@@ -34,7 +34,6 @@ extern SilcServerCommandReply silc_command_reply_list[];
 
 /* Context holding pending command callbacks. */
 typedef struct {
-  SilcServerPendingDestructor destructor;
   SilcCommandCb callback;
   void *context;
 } *SilcServerCommandPendingCallbacks;
@@ -48,8 +47,8 @@ typedef struct {
 
   /* If defined this executes the pending command. */
   SilcServerCommandPendingCallbacks callbacks;
-  uint32 callbacks_count;
-  uint16 ident;
+  SilcUInt32 callbacks_count;
+  SilcUInt16 ident;
 } *SilcServerCommandReplyContext;
 
 /* Macros */
@@ -75,5 +74,6 @@ SILC_SERVER_CMD_REPLY_FUNC(motd);
 SILC_SERVER_CMD_REPLY_FUNC(join);
 SILC_SERVER_CMD_REPLY_FUNC(users);
 SILC_SERVER_CMD_REPLY_FUNC(getkey);
+SILC_SERVER_CMD_REPLY_FUNC(list);
 
 #endif