diff --git a/protocol/proto/connectivity.proto b/protocol/proto/connectivity.proto index 83440463..f1623b41 100644 --- a/protocol/proto/connectivity.proto +++ b/protocol/proto/connectivity.proto @@ -16,6 +16,7 @@ message PlatformSpecificData { NativeAndroidData android = 1; NativeIOSData ios = 2; NativeWindowsData windows = 4; + NativeDesktopLinuxData desktop_linux = 5; } } @@ -52,6 +53,13 @@ message NativeWindowsData { bool unknown_value_10 = 10; } +message NativeDesktopLinuxData { + string system_name = 1; // uname -s + string system_release = 2; // -r + string system_version = 3; // -v + string hardware = 4; // -i +} + message Screen { int32 width = 1; int32 height = 2;