Added linux fields to connectivity.proto

This commit is contained in:
SuisChan 2022-01-25 11:56:19 +01:00
parent a447bb5be9
commit 2c63ef111a

View file

@ -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;