From e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 22:34:10 +0200 Subject: Adding upstream version 4.2.2. Signed-off-by: Daniel Baumann --- ui/qt/sctp_assoc_analyse_dialog.h | 77 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 ui/qt/sctp_assoc_analyse_dialog.h (limited to 'ui/qt/sctp_assoc_analyse_dialog.h') diff --git a/ui/qt/sctp_assoc_analyse_dialog.h b/ui/qt/sctp_assoc_analyse_dialog.h new file mode 100644 index 00000000..ec361f4c --- /dev/null +++ b/ui/qt/sctp_assoc_analyse_dialog.h @@ -0,0 +1,77 @@ +/** @file + * + * Wireshark - Network traffic analyzer + * By Gerald Combs + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef SCTP_ASSOC_ANALYSE_DIALOG_H +#define SCTP_ASSOC_ANALYSE_DIALOG_H + +#include + +#include + +#include + +#include + +#include "sctp_all_assocs_dialog.h" + +#include +#include +#include +#include +#include + + +namespace Ui { +class SCTPAssocAnalyseDialog; +} + +struct _sctp_assoc_info; + +class SCTPAssocAnalyseDialog : public QDialog +{ + Q_OBJECT + +public: + explicit SCTPAssocAnalyseDialog(QWidget *parent = 0, const _sctp_assoc_info *assoc = NULL, + capture_file *cf = NULL); + ~SCTPAssocAnalyseDialog(); + + void fillTabs(const _sctp_assoc_info* selected_assoc); + static const _sctp_assoc_info* findAssocForPacket(capture_file* cf); + static const _sctp_assoc_info* findAssoc(QWidget *parent, guint16 assoc_id); + +public slots: + void setCaptureFile(capture_file *cf) { cap_file_ = cf; } + +private slots: + void on_GraphTSN_2_clicked(); + void on_GraphTSN_1_clicked(); + void on_chunkStatisticsButton_clicked(); + void on_setFilterButton_clicked(); + + void on_GraphBytes_1_clicked(); + void on_GraphBytes_2_clicked(); + + void on_GraphArwnd_1_clicked(); + void on_GraphArwnd_2_clicked(); + +private: + Ui::SCTPAssocAnalyseDialog *ui; + guint16 selected_assoc_id; + capture_file *cap_file_; + void openGraphDialog(int direction); + void openGraphByteDialog(int direction); + void openGraphArwndDialog(int direction); + + +signals: + void filterPackets(QString new_filter, bool force); +}; + +#endif // SCTP_ASSOC_ANALYSE_DIALOG_H -- cgit v1.2.3