Re: [PATCH v1 1/4] dts: add layer 4 port field to verbose parser

2025-05-14 Thread Nicholas Pratte
Makes sense to me! Reviewed-by: Nicholas Pratte On Thu, Mar 6, 2025 at 4:47 PM Dean Marx wrote: > > Add a field to the TestPmdVerbosePacket text parser > that stores destination port values for TCP/UDP packets. > > Signed-off-by: Dean Marx > --- > dts/framework/remote_session/testpmd_shell.py

Re: [PATCH v1 1/4] dts: add layer 4 port field to verbose parser

2025-05-14 Thread Luca Vizzarro
Hi Dean, looks good to me. Just a minor optional nit. Reviewed-by: Luca Vizzarro On 06/03/2025 22:47, Dean Marx wrote: +#: +l4_dport: int | None = field( +default=None, +metadata=TextParser.find_int(r"(?:Destination TCP port=|Destination UDP port=)(\d+)"), +) th

[PATCH v1 1/4] dts: add layer 4 port field to verbose parser

2025-03-15 Thread Dean Marx
Add a field to the TestPmdVerbosePacket text parser that stores destination port values for TCP/UDP packets. Signed-off-by: Dean Marx --- dts/framework/remote_session/testpmd_shell.py | 5 + 1 file changed, 5 insertions(+) diff --git a/dts/framework/remote_session/testpmd_shell.py b/dts/fr