Re: [PATCH v17 1/2] net: Add TCP protocol

2022-10-20 Thread Duncan Hare
I used a server on Linux for testing. Sent from Yahoo Mail on Android On Tue, Oct 18, 2022 at 9:59, Simon Glass wrote: Hi PaulLiu, On Mon, 17 Oct 2022 at 01:03, PaulLiu wrote: > > Hi Simon, > > I think it is a bit hard for me to test it right now. It seems that we need > to setup a fake

Re: [PATCH v17 1/2] net: Add TCP protocol

2022-10-18 Thread Simon Glass
Hi PaulLiu, On Mon, 17 Oct 2022 at 01:03, PaulLiu wrote: > > Hi Simon, > > I think it is a bit hard for me to test it right now. It seems that we need > to setup a fake HTTP server? > It can be easily done by some python scripts but I'm not sure how to start. > Is there some example on testing

Re: [PATCH v17 1/2] net: Add TCP protocol

2022-10-17 Thread PaulLiu
Hi Simon, I think it is a bit hard for me to test it right now. It seems that we need to setup a fake HTTP server? It can be easily done by some python scripts but I'm not sure how to start. Is there some example on testing the network commands? Like tftp or nfs? Yours, Paul On Tue, Jul 12,

Re: [PATCH v17 1/2] net: Add TCP protocol

2022-07-12 Thread Simon Glass
Hi Ying-Chun, On Fri, 8 Jul 2022 at 12:02, Ying-Chun Liu (PaulLiu) wrote: > > From: "Ying-Chun Liu (PaulLiu)" > > Currently file transfers are done using tftp or NFS both > over udp. This requires a request to be sent from client > (u-boot) to the boot server. > > The current standard is TCP

[PATCH v17 1/2] net: Add TCP protocol

2022-07-08 Thread Ying-Chun Liu (PaulLiu)
From: "Ying-Chun Liu (PaulLiu)" Currently file transfers are done using tftp or NFS both over udp. This requires a request to be sent from client (u-boot) to the boot server. The current standard is TCP with selective acknowledgment. Signed-off-by: Duncan Hare Signed-off-by: Duncan Hare