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 11187] abnormal behavior for display filter auto-completio

Date: Thu, 14 May 2015 20:37:37 +0000

Comment # 11 on bug 11187 from
(In reply to Xiaochuan Sun from comment #9)
>   I resolved the auto-completion issue of "qct" protocol. The abbrev of
> hfinfo should be consistent with filter_name of protocol_t for wireshark QT.
> It seems only wireshark QT has this restriction.

You can remove the restriction by changing line 472 of
ui/qt/display_filter_edit.cpp from

        if (field_dots > pfname.count('.') && field_word.startsWith(pfname)) {

to

        if (field_dots > pfname.count('.') /* && field_word.startsWith(pfname)
*/) {

As the preceding comment says, this slows things down considerably, at least on
my Windows VM.


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