]> code.citadel.org Git - citadel.git/blobdiff - citadel/server.h
Began implementation of Journaling and Envelope Journaling.
[citadel.git] / citadel / server.h
index 06b48fc20edc5a63c3dc4ae645f4bf6157d75322..2b60be19372c40d96a2253db6f05a85c65d11771 100644 (file)
@@ -219,6 +219,7 @@ enum {
        S_FLOORCACHE,
        S_DEBUGMEMLEAKS,
        S_ATBF,
+       S_JOURNAL_QUEUE,
        MAX_SEMAPHORES
 };
 
@@ -289,6 +290,12 @@ struct CleanupFunctionHook {
 };
 extern struct CleanupFunctionHook *CleanupHookTable;
 
+struct FixedOutputHook {
+       struct FixedOutputHook *next;
+       char content_type[64];
+       void (*h_function_pointer) (char *, int);
+};
+extern struct FixedOutputHook *FixedOutputTable;
 
 
 
@@ -460,6 +467,6 @@ struct ser_ret {
 /*               **********                    Important fields */
 /*                         ***************     Semi-important fields */
 /*                                        *    Message text (MUST be last) */
-#define FORDER "IPTAFONHRDBCEGJKLQSVWXZYUM"
+#define FORDER "IPTAFONHRDBCEJGKLQSVWXZYUM"
 
 #endif /* SERVER_H */