ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
July 17th, 2024 | 10:00am-11:55am SGT (UTC+8) | Online

Wireshark-bugs: [Wireshark-bugs] [Bug 8462] Manual name resolution not working

Date: Tue, 10 Sep 2013 15:58:46 +0000

Comment # 4 on bug 8462 from
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.