mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
a49892c7e7
* Feat: Add MtProxy (Telegram) * add path files * Feat: Add Telemt (MtProxy) * fixed secret & enum * remove old path * refactor: move logic from ui to core --------- Co-authored-by: vkamn <vk@amnezia.org>
21 lines
393 B
C++
21 lines
393 B
C++
#ifndef TELEMTDIAGNOSTICS_H
|
|
#define TELEMTDIAGNOSTICS_H
|
|
|
|
#include "containerDiagnostics.h"
|
|
|
|
#include <QString>
|
|
|
|
namespace amnezia
|
|
{
|
|
struct TelemtDiagnostics : ContainerDiagnostics
|
|
{
|
|
bool upstreamReachable = false;
|
|
int clientsConnected = -1;
|
|
QString lastConfigRefresh;
|
|
QString statsEndpoint;
|
|
};
|
|
|
|
} // namespace amnezia
|
|
|
|
#endif // TELEMTDIAGNOSTICS_H
|