Comment # 11
on bug 11187
from Gerald Combs
(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.