Closed GoogleCodeExporter closed 9 years ago
Just a quick follow-up:
Here are my settings and the mongoose response:
mg_set_option(ctx, "cache", "no-cache");
mg_set_option(ctx, "Cache-Control", "no-cache");
mg_set_option(ctx, "Pragma", "no-cache");
mg_set_option(ctx, "expires", "Tue, 1 Jan 2002 05:00:00 GMT");
/*
[1326782705] [error] [client 0.0.0.0] mg_set_option: No such option: [cache]
[1326782151] [error] [client 0.0.0.0] mg_set_option: No such option: [Cache-Control]
[1326782151] [error] [client 0.0.0.0] mg_set_option: No such option: [Pragma]
[1326782151] [error] [client 0.0.0.0] mg_set_option: No such option: [expires]
*/
Original comment by zs...@vprex.com
on 17 Jan 2012 at 12:50
Is there an option list for mg_set_option? how can I force mongoose not to
cache anything?
Thanks for taking a look.
Original comment by zs...@vprex.com
on 17 Jan 2012 at 12:51
Please let me know if you have any suggestions.. I am still trying to look for
it but no luck yet still.
Original comment by zs...@vprex.com
on 19 Jan 2012 at 7:18
I think there is some misunderstanding going on here.
Mongoose options control server behavior, for example number of threads,
etcetera.
Your code example clearly shows that you're trying to set HTTP headers in the
response.
There is no way to configure custom headers appended to every response.
But if you're using callbacks, it could be done easily by mg_printf() -- just
print the respective header/value.
Original comment by valenok
on 19 Jan 2012 at 1:30
Original comment by valenok
on 22 Sep 2012 at 2:51
Original issue reported on code.google.com by
zs...@vprex.com
on 16 Jan 2012 at 9:52