AirPlay.proto 308 B

123456789101112
  1. syntax = "proto3";
  2. import "nanopb.proto";
  3. import "customoptions.proto";
  4. package sys.airplay;
  5. message config {
  6. option (nanopb_msgopt).packed_struct = true;
  7. option (nanopb_msgopt).msgid = 1001;
  8. bool enabled = 1 [(cust_field).v_bool = true];
  9. uint32 port = 2 [(nanopb).int_size = IS_8];
  10. }