[dovecot-cvs] dovecot/src/imap client.h, 1.26, 1.27 commands-util.h, 1.19, 1.20 commands.h, 1.15, 1.16

cras at dovecot.org cras at dovecot.org
Sat Feb 5 16:45:50 EET 2005


Update of /var/lib/cvs/dovecot/src/imap
In directory talvi:/tmp/cvs-serv23939

Modified Files:
	client.h commands-util.h commands.h 
Log Message:
cleanups



Index: client.h
===================================================================
RCS file: /var/lib/cvs/dovecot/src/imap/client.h,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- client.h	11 Nov 2004 22:10:56 -0000	1.26
+++ client.h	5 Feb 2005 14:45:48 -0000	1.27
@@ -1,13 +1,13 @@
 #ifndef __CLIENT_H
 #define __CLIENT_H
 
+#include "commands.h"
+
 struct client;
 struct mail_storage;
 struct imap_parser;
 struct imap_arg;
 
-typedef int command_func_t(struct client *client);
-
 struct mailbox_keywords {
 	pool_t pool; /* will be p_clear()ed when changed */
 

Index: commands-util.h
===================================================================
RCS file: /var/lib/cvs/dovecot/src/imap/commands-util.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- commands-util.h	26 Dec 2004 09:18:20 -0000	1.19
+++ commands-util.h	5 Feb 2005 14:45:48 -0000	1.20
@@ -7,6 +7,7 @@
 };
 
 struct mail_full_flags;
+struct mailbox_keywords;
 
 /* Finds mail storage for given mailbox from namespaces. If not found,
    sends "Unknown namespace" error message to client. */

Index: commands.h
===================================================================
RCS file: /var/lib/cvs/dovecot/src/imap/commands.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- commands.h	18 Aug 2004 23:53:39 -0000	1.15
+++ commands.h	5 Feb 2005 14:45:48 -0000	1.16
@@ -1,11 +1,15 @@
 #ifndef __COMMANDS_H
 #define __COMMANDS_H
 
+struct client;
+
 #include "mail-storage.h"
 #include "imap-parser.h"
 #include "imap-sync.h"
 #include "commands-util.h"
 
+typedef int command_func_t(struct client *client);
+
 struct command {
 	const char *name;
 	command_func_t *func;



More information about the dovecot-cvs mailing list