Re: [PATCH v2 2/6] net: prepare existing TCP stack to be reused by IP6

2023-07-25 Thread Dmitrii Merkurev
> > While you are here, or in a follow-up patch, can you please add full > comments to net_set_ip_header(), e,g. what is the pkt param exactly? > The whole packet, before any headers? It's an IP header. Added comment and renamed the argument on this one and net_set_udp_header. On Sun, Jul 23,

Re: [PATCH v2 2/6] net: prepare existing TCP stack to be reused by IP6

2023-07-22 Thread Simon Glass
Hi Dmitrii, On Wed, 10 May 2023 at 11:00, Dmitrii Merkurev wrote: > > Changes: > 1. Separate reusable part from net_set_tcp_header to > net_set_tcp_header_common > 2. Make TCP signatures reusable by receiving particular > IP agnostic TCP headers > 3. Extract net_send_ip_packet6 from

Re: [PATCH v2 2/6] net: prepare existing TCP stack to be reused by IP6

2023-05-24 Thread Ying-Chun Liu (PaulLiu)
On 2023/5/11 00:59, Dmitrii Merkurev wrote: Changes: 1. Separate reusable part from net_set_tcp_header to net_set_tcp_header_common 2. Make TCP signatures reusable by receiving particular IP agnostic TCP headers 3. Extract net_send_ip_packet6 from net_send_udp_packet6 to reuse the code 4.

[PATCH v2 2/6] net: prepare existing TCP stack to be reused by IP6

2023-05-10 Thread Dmitrii Merkurev
Changes: 1. Separate reusable part from net_set_tcp_header to net_set_tcp_header_common 2. Make TCP signatures reusable by receiving particular IP agnostic TCP headers 3. Extract net_send_ip_packet6 from net_send_udp_packet6 to reuse the code 4. Expose TCP state machine related functions This