X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit-ng%2Fserver%2Fwebcit.h;h=8af98ec26cf4ebd1cf21f5d991845e589ff9ab12;hb=a054aa798b13cbc18e86b744357ec7a13932708c;hp=a8c1275a88858ec809fedec59554baa94c5fb4e0;hpb=c74f0c5ea9e707dbf02f00cd00a708c77cfa02a7;p=citadel.git diff --git a/webcit-ng/server/webcit.h b/webcit-ng/server/webcit.h index a8c1275a8..8af98ec26 100644 --- a/webcit-ng/server/webcit.h +++ b/webcit-ng/server/webcit.h @@ -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;