Comment # 4
on bug 8462
from Anders Broman
Some findings:
manual resolv address will call
redissect_packets();
Which calls:
cf_redissect_packets(&cfile);
Which calls:
rescan_packets(cf, "Reprocessing", "all packets", TRUE);
which calls:
epan_free(cf->epan);
which calls:
cleanup_dissection();
which calls
se_free_all();
wmem_leave_file_scope();
host_name_lookup_cleanup();
Which frees all the address resolution information, BTW we loose
NRB address info here too.
So address resolution information needs to be retained until a new file is read
in I beleve.
/Anders
You are receiving this mail because:
- You are watching all bug changes.