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 20:54:33 +0000

changed bug 11777


What Removed Added
Status INCOMPLETE CONFIRMED
CC   [email protected]

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


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