Network.proto 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. syntax = "proto3";
  2. import "google/protobuf/timestamp.proto";
  3. package sys.net;
  4. import "customoptions.proto";
  5. import "nanopb.proto";
  6. option (nanopb_fileopt).enum_to_string = true;
  7. enum auth_types{
  8. AUTH_UNKNOWN = 0;
  9. OPEN = 1;
  10. WEP = 2;
  11. WPA_PSK = 3;
  12. WPA2_PSK = 4;
  13. WPA_WPA2_PSK = 5;
  14. WPA2_ENTERPRISE = 6;
  15. WPA3_PSK = 7;
  16. WPA2_WPA3_PSK = 8;
  17. WAPI_PSK = 9;
  18. }
  19. enum radio_types {
  20. UNKNOWN = 0;
  21. PHY_11B = 1;
  22. PHY_11G = 2;
  23. PHY_11N = 3;
  24. LR = 4;
  25. WPS = 5;
  26. FTM_RESPONDER = 6;
  27. FTM_INITIATOR = 7;
  28. }
  29. message wifi_entry {
  30. option (nanopb_msgopt).packed_struct = true;
  31. string ssid = 1 [(nanopb).max_length = 32];
  32. string bssid = 2 [(nanopb).max_length = 32];
  33. uint32 channel = 3 [(nanopb).int_size = IS_8]; /**< channel of target AP. Set to 1~13 to scan starting from the specified channel before connecting to AP. If the channel of AP is unknown, set it to 0.*/
  34. auth_types auth_type = 4;
  35. repeated radio_types radio_type = 5 [(nanopb).type = FT_POINTER];
  36. google.protobuf.Timestamp last_try = 6;
  37. google.protobuf.Timestamp last_seen = 7;
  38. bool connected = 8;
  39. string password = 9 [(nanopb).max_length = 64];
  40. uint32 rssi = 10 [(nanopb).max_length = 8];
  41. }
  42. message ip {
  43. option (nanopb_msgopt).packed_struct = true;
  44. option (nanopb_msgopt).msgid = 10051;
  45. string ip = 14 [(nanopb).max_length = 15];
  46. string netmask = 15 [(nanopb).max_length = 15];
  47. string gw = 16 [(nanopb).max_length = 15];
  48. }
  49. message ap {
  50. option (nanopb_msgopt).packed_struct = true;
  51. option (nanopb_msgopt).msgid = 10059;
  52. /** @brief Defines the access point's IP, NETMASK and GATEWAY. The gateway
  53. * should be set to the same value as the access point IP address.
  54. * Defaults to IP="192.168.4.1", NETMASK="255.255.255.0", GATEWAY= "192.168.4.1"
  55. **/
  56. ip ip = 1 [(cust_field).v_msg = '{"ip":"192.168.4.1","netmask":"255.255.255.0","gw":"192.168.4.1"}'];
  57. string password = 2 [(nanopb).max_length = 64,(cust_field).v_string = "squeezelite"];
  58. /** @brief Defines access point's channel.
  59. * Channel selection is only effective when not connected to another AP.
  60. * Good practice for minimal channel interference to use
  61. * For 20 MHz: 1, 6 or 11 in USA and 1, 5, 9 or 13 in most parts of the world
  62. * For 40 MHz: 3 in USA and 3 or 11 in most parts of the world
  63. */
  64. uint32 channel = 3 [(nanopb).int_size = IS_8,(cust_field).v_uint32 = 1];
  65. auth_types auth_mode = 4 [(cust_field).v_enum = "WPA2_PSK"];
  66. bool hidden = 5 [(cust_field).v_bool=false ];
  67. // Max allowed connections. 4 is recommended
  68. uint32 max_connection = 6 [(nanopb).int_size = IS_8,(cust_field).v_uint32 = 4];
  69. // Recommended value: 100
  70. uint32 beacon_interval = 7 [(nanopb).int_size = IS_16, (cust_field).v_uint32 = 100];
  71. }
  72. message server {
  73. option (nanopb_msgopt).packed_struct = true;
  74. option (nanopb_msgopt).msgid = 10050;
  75. int32 cport = 1;
  76. int32 port = 2;
  77. string ip = 3 [(nanopb).max_length = 15];
  78. }
  79. message config {
  80. enum ps_types {
  81. NONE = 0; /**< No power save */
  82. MIN_MODEM = 1; /**< Minimum modem power saving. In this mode, station wakes up to receive beacon every DTIM period */
  83. MAX_MODEM = 2; /**< Maximum modem power saving. In this mode, interval to receive beacons is determined by the listen_interval parameter in wifi_sta_config_t */
  84. }
  85. option (nanopb_msgopt).packed_struct = true;
  86. bool disable_dhcp = 1;
  87. ip manual_ip = 2;
  88. // Wifi Credentials
  89. repeated wifi_entry credentials = 3 [(nanopb).type = FT_CALLBACK, (nanopb).callback_datatype = "sys_net_wifi_entry*"];
  90. ap ap = 4;
  91. uint32 sta_polling_max_s = 5 [(nanopb).int_size = IS_16, (cust_field).v_uint32 = 600];
  92. // access point teardown timer delay (s)
  93. uint32 ap_duration_s = 6 [(nanopb).int_size = IS_16, (cust_field).v_uint32 = 20];
  94. // background STA polling (s) used, amongst others, when an attempt to connect
  95. // to a known AP was made
  96. uint32 sta_polling_min_s = 7 [(nanopb).int_size = IS_16, (cust_field).v_uint32 = 15];
  97. uint32 dhcp_tmout_s = 8 [(nanopb).int_size = IS_16, (cust_field).v_uint32 = 30];
  98. bool eth_boot = 9 [(cust_field).v_bool = false];
  99. // number of times to try to connect to wifi when the connection is
  100. // dropped
  101. uint32 max_wifi_retry = 10 [(cust_field).v_uint32 = 3];
  102. // As input param, it stores max AP number ap_records can hold. As output param, it receives the
  103. // actual AP number this API returns. As a consequence, ap_num MUST be reset to MAX_AP_NUM at
  104. // every scan
  105. uint32 max_ap_num = 11 [(cust_field).v_uint32 = 15];
  106. /**
  107. * @brief Defines the maximum size of a SSID name. 32 is IEEE standard.
  108. * @warning limit is also hard coded in wifi_config_t. Never extend this value.
  109. */
  110. uint32 max_ssid_size = 12 [(cust_field).v_uint32 = 32];
  111. /**
  112. * @brief Defines the maximum size of a WPA2 passkey. 64 is IEEE standard.
  113. * @warning limit is also hard coded in wifi_config_t. Never extend this value.
  114. */
  115. uint32 max_password_size = 13 [(cust_field).v_uint32 = 64];
  116. /** @brief Defines if wifi power save shall be enabled.
  117. * Value: WIFI_PS_NONE for full power (wifi modem always on)
  118. * Value: WIFI_PS_MODEM for power save (wifi modem sleep periodically)
  119. * Note: Power save is only effective when in STA only mode
  120. */
  121. ps_types power_save_mode = 14 [(cust_field).v_enum = "MIN_MODEM"];
  122. // max number of times that a the system will try to connect to a
  123. // known access point if it wasn't already connected before
  124. uint32 max_initial_wifi_attempt = 15 [(cust_field).v_uint32 = 3];
  125. // Connect to the first found access point matching the given SSID
  126. // Although this will reduce the boot-to-playback time, use with care
  127. // in an environment where several access points are configured with the same
  128. // SSID, as this does not guarantee that the AP with the best signal will
  129. // be connected to and result in instabilities.
  130. bool wifi_connect_fast_scan = 16;
  131. }