net: wget: Add interface to issue wget_requests using wget_http_info

Declare and define a global default struct wget_http_info
and an interface to issue wget requests providing a custom
struct wget_http_info. This code is common to legacy wget
and lwip wget. The idea is that the command wget should use
the default wget_http_info and other internal u-boot code
can call wget_request with their own wget_http_info struct.

Signed-off-by: Adriano Cordova <adrianox@gmail.com>
This commit is contained in:
Adriano Cordova
2024-11-11 18:08:57 -03:00
committed by Heinrich Schuchardt
parent 408af97674
commit 1de93fda99
2 changed files with 18 additions and 0 deletions

View File

@@ -554,4 +554,8 @@ struct wget_http_info {
char *headers;
};
extern struct wget_http_info default_wget_info;
extern struct wget_http_info *wget_info;
int wget_request(ulong dst_addr, char *uri, struct wget_http_info *info);
#endif /* __NET_COMMON_H__ */