mirror of https://github.com/aria2/aria2
Made --http-no-cache false by default
parent
eacbd50e75
commit
d4e7b51eb9
|
@ -379,10 +379,10 @@ HTTP Specific Options
|
||||||
|
|
||||||
.. option:: --http-no-cache[=true|false]
|
.. option:: --http-no-cache[=true|false]
|
||||||
|
|
||||||
Send Cache-Control: no-cache and Pragma: no-cache header to avoid
|
Send ``Cache-Control: no-cache`` and ``Pragma: no-cache`` header to avoid
|
||||||
cached content. If ``false`` is given, these headers are not sent
|
cached content. If ``false`` is given, these headers are not sent
|
||||||
and you can add Cache-Control header with a directive you like
|
and you can add Cache-Control header with a directive you like
|
||||||
using :option:`--header` option. Default: ``true``
|
using :option:`--header` option. Default: ``false``
|
||||||
|
|
||||||
.. option:: --http-user=<USER>
|
.. option:: --http-user=<USER>
|
||||||
|
|
||||||
|
|
|
@ -1188,7 +1188,7 @@ std::vector<OptionHandler*> OptionHandlerFactory::createOptionHandlers()
|
||||||
OptionHandler* op(new BooleanOptionHandler
|
OptionHandler* op(new BooleanOptionHandler
|
||||||
(PREF_HTTP_NO_CACHE,
|
(PREF_HTTP_NO_CACHE,
|
||||||
TEXT_HTTP_NO_CACHE,
|
TEXT_HTTP_NO_CACHE,
|
||||||
A2_V_TRUE,
|
A2_V_FALSE,
|
||||||
OptionHandler::OPT_ARG));
|
OptionHandler::OPT_ARG));
|
||||||
op->addTag(TAG_HTTP);
|
op->addTag(TAG_HTTP);
|
||||||
op->setInitialOption(true);
|
op->setInitialOption(true);
|
||||||
|
|
Loading…
Reference in New Issue