Comment # 9
on bug 8505
from Guy Harris
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.