HEAD method does not request response body, so it is suitable for spider mode. This also matches wget's behavior.
Signed-off-by: Sungbo Eo <[email protected]> --- v2: rebased --- uclient-fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uclient-fetch.c b/uclient-fetch.c index 95334b0..2d201ef 100644 --- a/uclient-fetch.c +++ b/uclient-fetch.c @@ -337,7 +337,7 @@ static int init_request(struct uclient *cl) msg_connecting(cl); - rc = uclient_http_set_request_type(cl, post_data || post_file ? "POST" : "GET"); + rc = uclient_http_set_request_type(cl, post_data || post_file ? "POST" : no_output ? "HEAD" : "GET"); if (rc) return rc; -- 2.27.0 _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
