mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-03 20:54:32 +02:00
Merge branch 'contrib/github_pr_14909' into 'master'
fix(esp-tls): Remove useless const from size paramter (GitHub PR) Closes IDFGH-14099 See merge request espressif/esp-idf!36828
This commit is contained in:
@@ -49,7 +49,7 @@ typedef enum esp_tls_role {
|
|||||||
*/
|
*/
|
||||||
typedef struct psk_key_hint {
|
typedef struct psk_key_hint {
|
||||||
const uint8_t* key; /*!< key in PSK authentication mode in binary format */
|
const uint8_t* key; /*!< key in PSK authentication mode in binary format */
|
||||||
const size_t key_size; /*!< length of the key */
|
size_t key_size; /*!< length of the key */
|
||||||
const char* hint; /*!< hint in PSK authentication mode in string format */
|
const char* hint; /*!< hint in PSK authentication mode in string format */
|
||||||
} psk_hint_key_t;
|
} psk_hint_key_t;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user