Re: [PATCH 1/3] net: support being a TCP server to unblock TCP fastboot

2023-04-01 Thread Ramon Fried
On Sat, Apr 1, 2023 at 9:36 AM Simon Glass wrote: > > On Wed, 29 Mar 2023 at 09:31, Dmitrii Merkurev wrote: > > > > Make following changes to unblock TCP fastboot support: > > > > 1. Implement being a TCP server support > > 2. Introduce dedicated TCP traffic handler (get rid of UDP signature) > >

Re: [PATCH 1/3] net: support being a TCP server to unblock TCP fastboot

2023-03-31 Thread Simon Glass
On Wed, 29 Mar 2023 at 09:31, Dmitrii Merkurev wrote: > > Make following changes to unblock TCP fastboot support: > > 1. Implement being a TCP server support > 2. Introduce dedicated TCP traffic handler (get rid of UDP signature) > 3. Ensure seq_num and ack_num are respected in net_send_tcp_packet

Re: [PATCH 1/3] net: support being a TCP server to unblock TCP fastboot

2023-03-29 Thread Paul Liu
On Wed, 29 Mar 2023 at 04:31, Dmitrii Merkurev wrote: > Make following changes to unblock TCP fastboot support: > > 1. Implement being a TCP server support > 2. Introduce dedicated TCP traffic handler (get rid of UDP signature) > 3. Ensure seq_num and ack_num are respected in net_send_tcp_packet

[PATCH 1/3] net: support being a TCP server to unblock TCP fastboot

2023-03-28 Thread Dmitrii Merkurev
Make following changes to unblock TCP fastboot support: 1. Implement being a TCP server support 2. Introduce dedicated TCP traffic handler (get rid of UDP signature) 3. Ensure seq_num and ack_num are respected in net_send_tcp_packet function (make sure existing wget_cmd code is reflected with the