Added list of AllowedIPs for WireGuard/AWG connections on Share -> Users ->ExpandedContent page (#1055)

Added list of AllowedIPs for WireGuard/AWG connections on Share -> Users ->ExpandedContent page
This commit is contained in:
Vitaly 2024-09-17 08:28:44 +02:00 committed by GitHub
parent 87cb5f620a
commit 253ae75795
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 22 additions and 4 deletions

View file

@ -17,7 +17,8 @@ public:
CreationDateRole,
LatestHandshakeRole,
DataReceivedRole,
DataSentRole
DataSentRole,
AllowedIpsRole
};
struct WgShowData
@ -26,6 +27,7 @@ public:
QString latestHandshake;
QString dataReceived;
QString dataSent;
QString allowedIps;
};
ClientManagementModel(std::shared_ptr<Settings> settings, QObject *parent = nullptr);