Re: [Wireshark-dev] Reassemble serial protocols payloads

2020-07-12 Thread Guy Harris
On Jul 5, 2020, at 8:05 AM, Tomasz Moń wrote: > I am trying to implement reassembly for FTDI MPSSE protocol. The > desegment API sounds like an excellent choice, because there can be > more serial protocols implemented in the future that share similar > characteristics to MPSSE (i.e. are designed

Re: [Wireshark-dev] Reassemble serial protocols payloads

2020-07-11 Thread Tomasz Moń
On Sun, Jul 5, 2020 at 5:05 PM Tomasz Moń wrote: > I am not sure if the approach I am pursuing is good or bad. The work > in progress I have produced so far is at [1]. I am stuck at the point > where, I need to either: > * pass the "partially reassembled" tvb to MPSSE to check if it is complete,

[Wireshark-dev] Reassemble serial protocols payloads

2020-07-05 Thread Tomasz Moń
Hello, I am trying to implement reassembly for FTDI MPSSE protocol. The desegment API sounds like an excellent choice, because there can be more serial protocols implemented in the future that share similar characteristics to MPSSE (i.e. are designed around asynchronous character transmission). E