summaryrefslogtreecommitdiff
path: root/include/net-common.h
diff options
context:
space:
mode:
authorAdriano Cordova <[email protected]>2024-12-04 00:05:16 -0300
committerHeinrich Schuchardt <[email protected]>2024-12-04 12:24:37 +0100
commit9bab7d2a7c37b486ed6c368cfdfb42575ab112e4 (patch)
tree0c0a7b87f9963d4cb93b15f6a2582ad33fbd4eef /include/net-common.h
parentdc7c8a2532925fa526ca6bd35b0519d5e3e97aed (diff)
net: wget: let wget_with_dns work with dns disabled
This was marked as TODO in the code: - Enable use of wget_with_dns even if CMD_DNS is disabled if the given uri has the ip address for the http server. - Move the check for CMD_DNS inside wget_with_dns. - Rename wget_with_dns to wget_do_request Signed-off-by: Adriano Cordova <[email protected]> Reviewed-by: Heinrich Schuchardt <[email protected]> Reviewed-by: Jerome Forissier <[email protected]>
Diffstat (limited to 'include/net-common.h')
-rw-r--r--include/net-common.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/net-common.h b/include/net-common.h
index c5e314b360d..8fc1bac47f5 100644
--- a/include/net-common.h
+++ b/include/net-common.h
@@ -501,13 +501,16 @@ int dhcp_run(ulong addr, const char *fname, bool autoload);
int do_tftpb(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
/**
- * wget_with_dns() - runs dns host IP address resulution before wget
+ * wget_do_request() - sends a wget request
+ *
+ * Sends a wget request, if DNS resolution is enabled it resolves the
+ * given uri.
*
* @dst_addr: destination address to download the file
* @uri: uri string of target file of wget
* Return: zero on success, negative if failed
*/
-int wget_with_dns(ulong dst_addr, char *uri);
+int wget_do_request(ulong dst_addr, char *uri);
/**
* wget_validate_uri() - varidate the uri
*