Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-bugs: [Wireshark-bugs] [Bug 11777] Follow tcp stream data is truncated

Date: Wed, 25 Nov 2015 22:39:46 +0000

Comment # 7 on bug 11777 from
(In reply to Pascal Quantin from comment #4)
> No need for a pcap.
> This is currently done on purpose, probably due to memory / Qt constraints.
> In FollowStream::addtext():
> 
>     int char_count = ui->teStreamContent->document()->characterCount();
>     if (char_count + text.length() > max_document_length_) {
>         text.truncate(max_document_length_ - char_count);
>         truncated_ = true;
>     }
> 
> where
> const int FollowStreamDialog::max_document_length_ = 2 * 1000 * 1000; //
> Just a guess

It looks like I did a mistake in my first attempt and did not select the right
steam. 100MB is definitely too much for Qt...
Even 50MB was still the window (did not test lower values).


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