mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-19 11:24:42 +00:00

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>
27 lines
570 B
C
27 lines
570 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <net-common.h>
|
|
|
|
void copy_filename(char *dst, const char *src, int size)
|
|
{
|
|
if (src && *src && (*src == '"')) {
|
|
++src;
|
|
--size;
|
|
}
|
|
|
|
while ((--size > 0) && src && *src && (*src != '"'))
|
|
*dst++ = *src++;
|
|
*dst = '\0';
|
|
}
|
|
|
|
struct wget_http_info default_wget_info = {
|
|
.method = WGET_HTTP_METHOD_GET,
|
|
.set_bootdev = true,
|
|
};
|
|
|
|
struct wget_http_info *wget_info;
|
|
|
|
int wget_request(ulong dst_addr, char *uri, struct wget_http_info *info)
|
|
{
|
|
wget_info = info ? info : &default_wget_info;
|
|
return wget_with_dns(dst_addr, uri);
|
|
}
|