]> code.citadel.org Git - citadel.git/blobdiff - webcit-ng/server/webcit.h
webcit-ng: fixed the way HTTP uploads are fed into the MIME Parser.
[citadel.git] / webcit-ng / server / webcit.h
index 64368b0e5c6169bb206a77d0f8b2e53c6c26522b..8af98ec26cf4ebd1cf21f5d991845e589ff9ab12 100644 (file)
@@ -64,7 +64,8 @@ struct http_transaction {                     // The lifetime of an HTTP request goes through this
        char *http_version;                     // stack and sent back down to the web server, which transmits it to
        char *site_prefix;                      // the client.
        Array *request_headers;
-       char *request_body;
+       char *request_body_with_synth_headers;  // This is the request body with some synthetic headers prepended into it.
+       char *request_body;                     // this is just going to be a pointer into request_body_with_synth_headers
        long request_body_length;
        Array *request_parms;                   // anything after the "?" in the URL
        int response_code;
@@ -96,7 +97,7 @@ struct ctdlsession {
 };
 
 struct uploaded_file {                         // things that have been uploaded to the server (such as email attachments)
-       char id[64];
+       char id[10];
        char filename[256];
        char content_type[256];
        long length;
@@ -179,3 +180,4 @@ int webcit_tcp_server(const char *ip_addr, int port_number, int queue_len);
 void UrlizeText(StrBuf* Target, StrBuf *Source, StrBuf *WrkBuf);
 void json_render_one_message(struct http_transaction *h, struct ctdlsession *c, long msgnum);
 void upload_files(struct http_transaction *h, struct ctdlsession *c);
+struct uploaded_file pop_upload(char *id);