mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
17 lines
306 B
C++
17 lines
306 B
C++
|
|
#ifndef CONTAINERDIAGNOSTICS_H
|
||
|
|
#define CONTAINERDIAGNOSTICS_H
|
||
|
|
|
||
|
|
namespace amnezia
|
||
|
|
{
|
||
|
|
struct ContainerDiagnostics
|
||
|
|
{
|
||
|
|
bool available = false;
|
||
|
|
bool portReachable = false;
|
||
|
|
|
||
|
|
virtual ~ContainerDiagnostics() = default;
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace amnezia
|
||
|
|
|
||
|
|
#endif // CONTAINERDIAGNOSTICS_H
|