Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
stratoshark_follow_stream_dialog.h
Go to the documentation of this file.
1
10#ifndef STRATOSHARK_FOLLOW_STREAM_DIALOG_H
11#define STRATOSHARK_FOLLOW_STREAM_DIALOG_H
12
13#include <config.h>
14
16
17namespace Ui {
19}
20
25{
26 Q_OBJECT
27
28public:
35 explicit StratosharkFollowStreamDialog(QWidget &parent, CaptureFile &cf, int proto_id);
36
41
42protected:
48 virtual QString labelHint(int pkt = 0) override;
49
54 virtual QString serverToClientString() const override;
55
60 virtual QString clientToServerString() const override;
61
66 virtual QString bothDirectionsString() const override;
67
68};
69
70#endif // STRATOSHARK_FOLLOW_STREAM_DIALOG_H
Manages a capture file and its associated state and operations.
Definition capture_file.h:27
A dialog window for viewing the contents of a network stream.
Definition follow_stream_dialog.h:40
Dialog specifically for following streams in Stratoshark.
Definition stratoshark_follow_stream_dialog.h:25
virtual QString clientToServerString() const override
Retrieves the string representing the client-to-server direction.
Definition stratoshark_follow_stream_dialog.cpp:56
virtual QString bothDirectionsString() const override
Retrieves the string representing both directions combined.
Definition stratoshark_follow_stream_dialog.cpp:65
virtual QString serverToClientString() const override
Retrieves the string representing the server-to-client direction.
Definition stratoshark_follow_stream_dialog.cpp:47
virtual QString labelHint(int pkt=0) override
Generates a hint label for the stream.
Definition stratoshark_follow_stream_dialog.cpp:24
virtual ~StratosharkFollowStreamDialog()
Destroys the StratosharkFollowStreamDialog object.
Definition stratoshark_follow_stream_dialog.cpp:20