diff options
| author | Tom Rini <[email protected]> | 2025-05-21 08:58:51 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-05-21 09:00:06 -0600 |
| commit | 0a87352281ade2b822ce0360e1f105f6e43a96e1 (patch) | |
| tree | b610dba1acd1a9e6be82506a55eace35ff01ba40 /include | |
| parent | a3e09b24ffd4429909604f1b28455b44306edbaa (diff) | |
| parent | 722e41ad9931bf6f327a66b5f8ec0dadfb32e0f3 (diff) | |
Merge tag 'net-20250520' of https://source.denx.de/u-boot/custodians/u-boot-net
Pull request net-20250520.
CI: https://source.denx.de/u-boot/custodians/u-boot-net/-/pipelines/26247
net, net-lwip:
- Remove wget console output when called by EFI
net-lwip:
- Add 10 s timeout to TFTP
- Add LMB buffer checks
Diffstat (limited to 'include')
| -rw-r--r-- | include/net-common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net-common.h b/include/net-common.h index e536968a92b..7853612b237 100644 --- a/include/net-common.h +++ b/include/net-common.h @@ -570,6 +570,7 @@ enum wget_http_method { * Filled by client. * @hdr_cont_len: content length according to headers. Filled by wget * @headers: buffer for headers. Filled by wget. + * @silent: do not print anything to the console. Filled by client. */ struct wget_http_info { enum wget_http_method method; @@ -580,6 +581,7 @@ struct wget_http_info { bool check_buffer_size; u32 hdr_cont_len; char *headers; + bool silent; }; extern struct wget_http_info default_wget_info; |
