aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2021-07-23 09:43:05 +0100
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2021-08-06 09:31:15 +0000
commitaaf79b62d7c89aa940af42ef7d0a9c7c9eb855f9 (patch)
tree7d66632baeb630839ac1f4fd078ab3384c603d42 /ui/qt
parent272ed7a05a3d102d075423d07cf338046e4eb765 (diff)
F1AP stats
Diffstat (limited to 'ui/qt')
-rw-r--r--ui/qt/main_window.h1
-rw-r--r--ui/qt/main_window.ui9
-rw-r--r--ui/qt/main_window_slots.cpp6
3 files changed, 16 insertions, 0 deletions
diff --git a/ui/qt/main_window.h b/ui/qt/main_window.h
index e67a52e486..698557f152 100644
--- a/ui/qt/main_window.h
+++ b/ui/qt/main_window.h
@@ -706,6 +706,7 @@ private slots:
void on_actionTelephonyRTSPPacketCounter_triggered();
void on_actionTelephonySMPPOperations_triggered();
void on_actionTelephonyUCPMessages_triggered();
+ void on_actionTelephonyF1APMessages_triggered();
void on_actionTelephonySipFlows_triggered();
void on_actionBluetoothATT_Server_Attributes_triggered();
diff --git a/ui/qt/main_window.ui b/ui/qt/main_window.ui
index 662f77296c..235aae0490 100644
--- a/ui/qt/main_window.ui
+++ b/ui/qt/main_window.ui
@@ -622,6 +622,7 @@
<addaction name="menuTelephonySCTP"/>
<addaction name="actionTelephonySMPPOperations"/>
<addaction name="actionTelephonyUCPMessages"/>
+ <addaction name="actionTelephonyF1APMessages"/>
</widget>
<widget class="QMenu" name="menuEdit">
<property name="title">
@@ -1966,6 +1967,14 @@
<string>UCP message statistics</string>
</property>
</action>
+ <action name="actionTelephonyF1APMessages">
+ <property name="text">
+ <string>F1AP</string>
+ </property>
+ <property name="toolTip">
+ <string>F1AP Messages</string>
+ </property>
+ </action>
<action name="actionAnalyzeDecodeAs">
<property name="text">
<string>Decode &amp;As…</string>
diff --git a/ui/qt/main_window_slots.cpp b/ui/qt/main_window_slots.cpp
index 0c18aece0d..aa08bf3d9e 100644
--- a/ui/qt/main_window_slots.cpp
+++ b/ui/qt/main_window_slots.cpp
@@ -3213,6 +3213,7 @@ void MainWindow::on_actionStatisticsANCP_triggered()
openStatisticsTreeDialog("ancp");
}
+
void MainWindow::on_actionStatisticsBACappInstanceId_triggered()
{
openStatisticsTreeDialog("bacapp_instanceid");
@@ -3555,6 +3556,11 @@ void MainWindow::on_actionTelephonyUCPMessages_triggered()
openStatisticsTreeDialog("ucp_messages");
}
+void MainWindow::on_actionTelephonyF1APMessages_triggered()
+{
+ openStatisticsTreeDialog("f1ap");
+}
+
void MainWindow::on_actionTelephonySipFlows_triggered()
{
openTelephonyVoipCallsDialogSip();