Names.proto 705 B

12345678910111213141516171819202122232425
  1. syntax = "proto3";
  2. package sys;
  3. import "customoptions.proto";
  4. import "nanopb.proto";
  5. // Main system configuration definition. This gets loaded in a pointer
  6. // named platform-> which is available across the build
  7. message Names {
  8. option (cust_msg).init_from_mac = true;
  9. option (cust_msg).const_prefix = "squeezelite-";
  10. option (nanopb_msgopt).max_length= 128;
  11. // Network device name
  12. string device = 1 ;
  13. // AirPlay device name
  14. string airplay = 2;
  15. // Spotify device name
  16. string spotify = 3;
  17. // Bluetooth player name advertized
  18. string bluetooth = 4;
  19. // Player name reported to the Logitech Media Server
  20. string squeezelite = 5;
  21. // Wifi Access Point name
  22. string wifi_ap_name = 6;
  23. }