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