]> code.citadel.org Git - citadel.git/blobdiff - citadel/server.h
Remember the last version of Berkeley DB that touched the
[citadel.git] / citadel / server.h
index 8994f4199aeb1a3e3ec50cdfd8470ce9316305cb..bf3c71f3286c52ed325f9e2d9ea59de6ac3dc1f9 100644 (file)
@@ -144,7 +144,8 @@ struct CitContext {
        char *session_specific_data;            /* Used by individual protocol modules */
        struct cit_ical *CIT_ICAL;              /* calendaring data */
        struct ma_info *ma;                     /* multipart/alternative data */
-       const char* ServiceName;                /**< whats our actual purpose? */
+       const char *ServiceName;                /* readable purpose of this session */
+       void *openid_data;                      /* Data stored by the OpenID module */
 };
 
 typedef struct CitContext t_context;
@@ -184,6 +185,7 @@ struct CitControl {
        int version;                    /* Server-hosted upgrade level      */
        int fulltext_wordbreaker;       /* ID of wordbreaker in use         */
        long MMfulltext;                /* highest message number indexed   */
+       int MMdbversion;                /* Version of Berkeley DB used on previous server run */
 };
 
 extern struct CitContext *ContextList;