Names.proto 760 B

1234567891011121314151617181920212223242526
  1. syntax = "proto3";
  2. package sys.names;
  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 config {
  8. option (nanopb_msgopt).packed_struct = true;
  9. option (cust_msg).init_from_mac = true;
  10. option (cust_msg).const_prefix = "squeezelite-";
  11. option (nanopb_msgopt).max_length= 128;
  12. // Network device name
  13. string device = 1 ;
  14. // AirPlay device name
  15. string airplay = 2;
  16. // Spotify device name
  17. string spotify = 3;
  18. // Bluetooth player name advertized
  19. string bluetooth = 4;
  20. // Player name reported to the Logitech Media Server
  21. string squeezelite = 5;
  22. // Wifi Access Point name
  23. string wifi_ap_name = 6;
  24. }