Re: [Wireshark-dev] Multiple-line parsing of packets dissected over HTTP

2021-01-21 Thread Joey Salazar via Wireshark-dev
Hi all, Jonathan, On Tuesday, January 19, 2021 6:09 PM, Jonathan Nieder wrote: > Hi, > > Pascal Quantin wrote: > > > Le mar. 19 janv. 2021 à 17:45, Joey Salazar via Wireshark-dev < > > wireshark-dev@wireshark.org> a écrit : > > > > In commit 33af2649 [1] we can keep dissecting the contents of t

Re: [Wireshark-dev] Multiple-line parsing of packets dissected over HTTP

2021-01-20 Thread Joey Salazar via Wireshark-dev
Hi Pascal, On Tuesday, January 19, 2021 11:19 AM, Pascal Quantin wrote: > Hi Joey, > > Le mar. 19 janv. 2021 à 17:45, Joey Salazar via Wireshark-dev > a écrit : > >> Hi all, >> >> In commit 33af2649 [1] we can keep dissecting the contents of the req, adv, >> and res packets by setting >> while

Re: [Wireshark-dev] Multiple-line parsing of packets dissected over HTTP

2021-01-20 Thread Pascal Quantin
Hi Joey, Le mar. 19 janv. 2021 à 23:35, Joey Salazar a écrit : > On Tuesday, January 19, 2021 4:20 PM, Pascal Quantin wrote: > > Le mar. 19 janv. 2021 à 23:09, Joey Salazar a > écrit : > >> Hi Pascal, >> On Tuesday, January 19, 2021 11:19 AM, Pascal Quantin wrote: >> >> Hi Joey, >> >> Le mar. 1

Re: [Wireshark-dev] Multiple-line parsing of packets dissected over HTTP

2021-01-19 Thread Jonathan Nieder
Hi, Pascal Quantin wrote: > Le mar. 19 janv. 2021 à 17:45, Joey Salazar via Wireshark-dev < > wireshark-dev@wireshark.org> a écrit : >> In commit 33af2649 [1] we can keep dissecting the contents of the req, >> adv, and res packets by setting >> while (plen > 0) { } >> either in `dissect_git_pdu(

Re: [Wireshark-dev] Multiple-line parsing of packets dissected over HTTP

2021-01-19 Thread Pascal Quantin
Le mar. 19 janv. 2021 à 23:09, Joey Salazar a écrit : > Hi Pascal, > On Tuesday, January 19, 2021 11:19 AM, Pascal Quantin wrote: > > Hi Joey, > > Le mar. 19 janv. 2021 à 17:45, Joey Salazar via Wireshark-dev < > wireshark-dev@wireshark.org> a écrit : > >> Hi all, >> >> In commit 33af2649 [1] we

Re: [Wireshark-dev] Multiple-line parsing of packets dissected over HTTP

2021-01-19 Thread Pascal Quantin
Hi Joey, Le mar. 19 janv. 2021 à 17:45, Joey Salazar via Wireshark-dev < wireshark-dev@wireshark.org> a écrit : > Hi all, > > In commit 33af2649 [1] we can keep dissecting the contents of the req, > adv, and res packets by setting > while (plen > 0) { } > either in `dissect_git_pdu()` or in `dis

[Wireshark-dev] Multiple-line parsing of packets dissected over HTTP

2021-01-19 Thread Joey Salazar via Wireshark-dev
Hi all, In commit 33af2649 [1] we can keep dissecting the contents of the req, adv, and res packets by setting while (plen > 0) { } either in `dissect_git_pdu()` or in `dissect_one_pkt_line()`, but for now in `dissect_git_pdu()` it'd be a bit messy, so wanted to ask for your feedback for getti