Wireshark-bugs: [Wireshark-bugs] [Bug 8505] openSAFETY: New reassemble functionality, as well as
Date: Sat, 23 Mar 2013 00:04:31 +0000

Comment # 9 on bug 8505 from
I've just checked in some API changes to the reassembly code.  You'll need to
update the reassembly code to reflect that; you must:

  replace msg_fragment_table and msg_reassembled_table with

    static reassembly_table msg_reassembly_table;

  replace the fragment_table_init() and reassembled_table_init() calls with a
call to initialize msg_reassembly_table, using the
addresses_reassembly_table_functions set of functions;

  change all calls that are passed msg_fragment_table and/or
msg_reassembled_table to pass, as the first argument, a pointer to
msg_reassembly_table.

The code should still work the same after those changes.


You are receiving this mail because:
  • You are watching all bug changes.