1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:07:35 +00:00

SystemMonitor: Show UDP sockets

Creates a new TableView in the socket list for UDP information.

Resolves #6980.
This commit is contained in:
brapru 2021-05-17 21:56:09 -04:00 committed by Andreas Kling
parent 63e8477a6b
commit c2ae6c189e
2 changed files with 19 additions and 6 deletions

View file

@ -19,8 +19,10 @@ private:
void update_models();
RefPtr<GUI::TableView> m_adapter_table_view;
RefPtr<GUI::TableView> m_socket_table_view;
RefPtr<GUI::TableView> m_tcp_socket_table_view;
RefPtr<GUI::TableView> m_udp_socket_table_view;
RefPtr<GUI::JsonArrayModel> m_adapter_model;
RefPtr<GUI::JsonArrayModel> m_socket_model;
RefPtr<GUI::JsonArrayModel> m_tcp_socket_model;
RefPtr<GUI::JsonArrayModel> m_udp_socket_model;
RefPtr<Core::Timer> m_update_timer;
};