mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
Added linux fields to connectivity.proto
This commit is contained in:
parent
a447bb5be9
commit
2c63ef111a
1 changed files with 8 additions and 0 deletions
|
@ -16,6 +16,7 @@ message PlatformSpecificData {
|
||||||
NativeAndroidData android = 1;
|
NativeAndroidData android = 1;
|
||||||
NativeIOSData ios = 2;
|
NativeIOSData ios = 2;
|
||||||
NativeWindowsData windows = 4;
|
NativeWindowsData windows = 4;
|
||||||
|
NativeDesktopLinuxData desktop_linux = 5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,6 +53,13 @@ message NativeWindowsData {
|
||||||
bool unknown_value_10 = 10;
|
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 {
|
message Screen {
|
||||||
int32 width = 1;
|
int32 width = 1;
|
||||||
int32 height = 2;
|
int32 height = 2;
|
||||||
|
|
Loading…
Reference in a new issue