Telnet.proto 513 B

1234567891011121314151617181920
  1. syntax = "proto3";
  2. package sys.telnet;
  3. import "nanopb.proto";
  4. import "customoptions.proto";
  5. option (nanopb_fileopt).enum_to_string = true;
  6. enum output {
  7. SERIAL_ONLY = 0;
  8. TELNET = 1;
  9. TELNET_SERIAL = 2;
  10. }
  11. message config {
  12. option (nanopb_msgopt).packed_struct = true;
  13. output enable = 1 [(cust_field).v_enum = "TELNET_SERIAL"];
  14. uint32 block = 2 [(nanopb).int_size = IS_16, (cust_field).v_uint32=500];
  15. uint32 buffer = 3 [(nanopb).int_size = IS_16, (cust_field).v_uint32=40000];
  16. }