]> code.citadel.org Git - citadel.git/blobdiff - webcit/webcit.h
* Began laying the groundwork for http-authenticated GroupDAV sessions.
[citadel.git] / webcit / webcit.h
index 82301a26dabd0f21a1940d1204e0554c15a47274..c131e9b815b577682a138ffc2d010a2f335ab270 100644 (file)
@@ -228,6 +228,8 @@ struct wcsession {
        char ImportantMessage[SIZ];
        char last_chat_user[SIZ];
        int ctdl_pid;                   /* Session ID on the Citadel server */
+       char httpauth_user[SIZ];        /* only for GroupDAV sessions */
+       char httpauth_pass[SIZ];        /* only for GroupDAV sessions */
 };
 
 #define extract(dest,source,parmnum)   extract_token(dest,source,parmnum,'|')
@@ -494,3 +496,5 @@ extern char *ascmonths[];
 #define VIEW_CALENDAR          3       /* Calendar view */
 #define VIEW_TASKS             4       /* Tasks view */
 #define VIEW_NOTES             5       /* Notes view */
+
+void groupdav_main(char *);