Re: [PATCH v3 2/7] net: wget: add wget with dns utility function

2023-09-22 Thread Masahisa Kojima
On Thu, 21 Sept 2023 at 10:02, Simon Glass wrote: > > Hi Masahisa, > > On Fri, 15 Sept 2023 at 04:17, Masahisa Kojima > wrote: > > > > Current wget takes the target uri in this format: > > ":" e.g.) 192.168.1.1:/bar > > The http server ip address must be resolved before > > calling wget. > > >

Re: [PATCH v3 2/7] net: wget: add wget with dns utility function

2023-09-20 Thread Simon Glass
Hi Masahisa, On Fri, 15 Sept 2023 at 04:17, Masahisa Kojima wrote: > > Current wget takes the target uri in this format: > ":" e.g.) 192.168.1.1:/bar > The http server ip address must be resolved before > calling wget. > > This commit adds the utility function runs wget with dhs. > User can

[PATCH v3 2/7] net: wget: add wget with dns utility function

2023-09-15 Thread Masahisa Kojima
Current wget takes the target uri in this format: ":" e.g.) 192.168.1.1:/bar The http server ip address must be resolved before calling wget. This commit adds the utility function runs wget with dhs. User can call wget with the uri like "http://foo/bar;. Signed-off-by: Masahisa Kojima ---