Re: [dpdk-dev] [PATCH v3 1/4] ip_frag: ensure minimum v4 fragmentation length

2020-04-08 Thread Aaron Conole
"Ananyev, Konstantin" writes: >> >> >> The IPv4 specification says that each fragment must at least the size >> >> >> of >> >> >> an IP header plus 8 octets. When attempting to run ipfrag using a >> >> >> smaller size, the fragment library will return successful completion, >> >> >> even though

Re: [dpdk-dev] [PATCH v3 1/4] ip_frag: ensure minimum v4 fragmentation length

2020-04-08 Thread Ananyev, Konstantin
> >> >> The IPv4 specification says that each fragment must at least the size of > >> >> an IP header plus 8 octets. When attempting to run ipfrag using a > >> >> smaller size, the fragment library will return successful completion, > >> >> even though it is a violation of RFC791 (and updates).

Re: [dpdk-dev] [PATCH v3 1/4] ip_frag: ensure minimum v4 fragmentation length

2020-04-07 Thread Aaron Conole
"Ananyev, Konstantin" writes: >> >> "Ananyev, Konstantin" writes: >> >> >> >> >> The IPv4 specification says that each fragment must at least the size of >> >> an IP header plus 8 octets. When attempting to run ipfrag using a >> >> smaller size, the fragment library will return successful com

Re: [dpdk-dev] [PATCH v3 1/4] ip_frag: ensure minimum v4 fragmentation length

2020-04-07 Thread Ananyev, Konstantin
> > "Ananyev, Konstantin" writes: > > >> > >> The IPv4 specification says that each fragment must at least the size of > >> an IP header plus 8 octets. When attempting to run ipfrag using a > >> smaller size, the fragment library will return successful completion, > >> even though it is a viola

Re: [dpdk-dev] [PATCH v3 1/4] ip_frag: ensure minimum v4 fragmentation length

2020-04-07 Thread Aaron Conole
"Ananyev, Konstantin" writes: >> >> The IPv4 specification says that each fragment must at least the size of >> an IP header plus 8 octets. When attempting to run ipfrag using a >> smaller size, the fragment library will return successful completion, >> even though it is a violation of RFC791 (

Re: [dpdk-dev] [PATCH v3 1/4] ip_frag: ensure minimum v4 fragmentation length

2020-04-07 Thread Ananyev, Konstantin
> > The IPv4 specification says that each fragment must at least the size of > an IP header plus 8 octets. When attempting to run ipfrag using a > smaller size, the fragment library will return successful completion, > even though it is a violation of RFC791 (and updates). > > Signed-off-by: A

[dpdk-dev] [PATCH v3 1/4] ip_frag: ensure minimum v4 fragmentation length

2020-04-01 Thread Aaron Conole
The IPv4 specification says that each fragment must at least the size of an IP header plus 8 octets. When attempting to run ipfrag using a smaller size, the fragment library will return successful completion, even though it is a violation of RFC791 (and updates). Signed-off-by: Aaron Conole ---