Skip to content

Commit 03dc813

Browse files
committed
fix(wifi_remote): Regenerate all files
1 parent 9bba7ec commit 03dc813

27 files changed

+207
-207
lines changed

components/esp_wifi_remote/idf_tag_v5.3.1/esp_eap_client_remote_weak.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66
// This file is auto-generated
7-
#include "esp_eap_client_remote.h"
7+
#include "esp_eap_client_remote_api.h"
88
#include "esp_log.h"
99

1010
#define WEAK __attribute__((weak))
@@ -22,7 +22,7 @@ WEAK esp_err_t esp_wifi_remote_sta_enterprise_disable(void)
2222
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
2323
}
2424

25-
WEAK esp_err_t esp_eap_client_remote_set_identity(const unsigned *identity, int len)
25+
WEAK esp_err_t esp_eap_client_remote_set_identity(const unsigned char *identity, int len)
2626
{
2727
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
2828
}
@@ -32,7 +32,7 @@ WEAK void esp_eap_client_remote_clear_identity(void)
3232
LOG_UNSUPPORTED_VOID();
3333
}
3434

35-
WEAK esp_err_t esp_eap_client_remote_set_username(const unsigned *username, int len)
35+
WEAK esp_err_t esp_eap_client_remote_set_username(const unsigned char *username, int len)
3636
{
3737
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
3838
}
@@ -42,7 +42,7 @@ WEAK void esp_eap_client_remote_clear_username(void)
4242
LOG_UNSUPPORTED_VOID();
4343
}
4444

45-
WEAK esp_err_t esp_eap_client_remote_set_password(const unsigned *password, int len)
45+
WEAK esp_err_t esp_eap_client_remote_set_password(const unsigned char *password, int len)
4646
{
4747
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
4848
}
@@ -52,7 +52,7 @@ WEAK void esp_eap_client_remote_clear_password(void)
5252
LOG_UNSUPPORTED_VOID();
5353
}
5454

55-
WEAK esp_err_t esp_eap_client_remote_set_new_password(const unsigned *new_password, int len)
55+
WEAK esp_err_t esp_eap_client_remote_set_new_password(const unsigned char *new_password, int len)
5656
{
5757
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
5858
}
@@ -62,7 +62,7 @@ WEAK void esp_eap_client_remote_clear_new_password(void)
6262
LOG_UNSUPPORTED_VOID();
6363
}
6464

65-
WEAK esp_err_t esp_eap_client_remote_set_ca_cert(const unsigned *ca_cert, int ca_cert_len)
65+
WEAK esp_err_t esp_eap_client_remote_set_ca_cert(const unsigned char *ca_cert, int ca_cert_len)
6666
{
6767
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
6868
}
@@ -72,7 +72,7 @@ WEAK void esp_eap_client_remote_clear_ca_cert(void)
7272
LOG_UNSUPPORTED_VOID();
7373
}
7474

75-
WEAK esp_err_t esp_eap_client_remote_set_certificate_and_key(const unsigned *client_cert, int client_cert_len, const unsigned *private_key, int private_key_len, const unsigned *private_key_password, int private_key_passwd_len)
75+
WEAK esp_err_t esp_eap_client_remote_set_certificate_and_key(const unsigned char *client_cert, int client_cert_len, const unsigned char *private_key, int private_key_len, const unsigned char *private_key_password, int private_key_passwd_len)
7676
{
7777
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
7878
}
@@ -102,7 +102,7 @@ WEAK esp_err_t esp_eap_client_remote_set_suiteb_192bit_certification(_Bool enabl
102102
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
103103
}
104104

105-
WEAK esp_err_t esp_eap_client_remote_set_pac_file(const unsigned *pac_file, int pac_file_len)
105+
WEAK esp_err_t esp_eap_client_remote_set_pac_file(const unsigned char *pac_file, int pac_file_len)
106106
{
107107
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
108108
}

components/esp_wifi_remote/idf_tag_v5.3.1/esp_eap_client_with_remote.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
// This file is auto-generated
77
#include "esp_eap_client.h"
8-
#include "esp_eap_client_remote.h"
8+
#include "esp_eap_client_remote_api.h"
99

1010
esp_err_t esp_wifi_sta_enterprise_enable(void)
1111
{
@@ -17,7 +17,7 @@ esp_err_t esp_wifi_sta_enterprise_disable(void)
1717
return esp_wifi_remote_sta_enterprise_disable();
1818
}
1919

20-
esp_err_t esp_eap_client_set_identity(const unsigned *identity, int len)
20+
esp_err_t esp_eap_client_set_identity(const unsigned char *identity, int len)
2121
{
2222
return esp_eap_client_remote_set_identity(identity, len);
2323
}
@@ -27,7 +27,7 @@ void esp_eap_client_clear_identity(void)
2727
esp_eap_client_remote_clear_identity();
2828
}
2929

30-
esp_err_t esp_eap_client_set_username(const unsigned *username, int len)
30+
esp_err_t esp_eap_client_set_username(const unsigned char *username, int len)
3131
{
3232
return esp_eap_client_remote_set_username(username, len);
3333
}
@@ -37,7 +37,7 @@ void esp_eap_client_clear_username(void)
3737
esp_eap_client_remote_clear_username();
3838
}
3939

40-
esp_err_t esp_eap_client_set_password(const unsigned *password, int len)
40+
esp_err_t esp_eap_client_set_password(const unsigned char *password, int len)
4141
{
4242
return esp_eap_client_remote_set_password(password, len);
4343
}
@@ -47,7 +47,7 @@ void esp_eap_client_clear_password(void)
4747
esp_eap_client_remote_clear_password();
4848
}
4949

50-
esp_err_t esp_eap_client_set_new_password(const unsigned *new_password, int len)
50+
esp_err_t esp_eap_client_set_new_password(const unsigned char *new_password, int len)
5151
{
5252
return esp_eap_client_remote_set_new_password(new_password, len);
5353
}
@@ -57,7 +57,7 @@ void esp_eap_client_clear_new_password(void)
5757
esp_eap_client_remote_clear_new_password();
5858
}
5959

60-
esp_err_t esp_eap_client_set_ca_cert(const unsigned *ca_cert, int ca_cert_len)
60+
esp_err_t esp_eap_client_set_ca_cert(const unsigned char *ca_cert, int ca_cert_len)
6161
{
6262
return esp_eap_client_remote_set_ca_cert(ca_cert, ca_cert_len);
6363
}
@@ -67,7 +67,7 @@ void esp_eap_client_clear_ca_cert(void)
6767
esp_eap_client_remote_clear_ca_cert();
6868
}
6969

70-
esp_err_t esp_eap_client_set_certificate_and_key(const unsigned *client_cert, int client_cert_len, const unsigned *private_key, int private_key_len, const unsigned *private_key_password, int private_key_passwd_len)
70+
esp_err_t esp_eap_client_set_certificate_and_key(const unsigned char *client_cert, int client_cert_len, const unsigned char *private_key, int private_key_len, const unsigned char *private_key_password, int private_key_passwd_len)
7171
{
7272
return esp_eap_client_remote_set_certificate_and_key(client_cert, client_cert_len, private_key, private_key_len, private_key_password, private_key_passwd_len);
7373
}
@@ -97,7 +97,7 @@ esp_err_t esp_eap_client_set_suiteb_192bit_certification(_Bool enable)
9797
return esp_eap_client_remote_set_suiteb_192bit_certification(enable);
9898
}
9999

100-
esp_err_t esp_eap_client_set_pac_file(const unsigned *pac_file, int pac_file_len)
100+
esp_err_t esp_eap_client_set_pac_file(const unsigned char *pac_file, int pac_file_len)
101101
{
102102
return esp_eap_client_remote_set_pac_file(pac_file, pac_file_len);
103103
}

components/esp_wifi_remote/idf_tag_v5.3.1/include/esp_eap_client_remote_api.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@
88
#include "esp_eap_client.h"
99
esp_err_t esp_wifi_remote_sta_enterprise_enable(void);
1010
esp_err_t esp_wifi_remote_sta_enterprise_disable(void);
11-
esp_err_t esp_eap_client_remote_set_identity(const unsigned *identity, int len);
11+
esp_err_t esp_eap_client_remote_set_identity(const unsigned char *identity, int len);
1212
void esp_eap_client_remote_clear_identity(void);
13-
esp_err_t esp_eap_client_remote_set_username(const unsigned *username, int len);
13+
esp_err_t esp_eap_client_remote_set_username(const unsigned char *username, int len);
1414
void esp_eap_client_remote_clear_username(void);
15-
esp_err_t esp_eap_client_remote_set_password(const unsigned *password, int len);
15+
esp_err_t esp_eap_client_remote_set_password(const unsigned char *password, int len);
1616
void esp_eap_client_remote_clear_password(void);
17-
esp_err_t esp_eap_client_remote_set_new_password(const unsigned *new_password, int len);
17+
esp_err_t esp_eap_client_remote_set_new_password(const unsigned char *new_password, int len);
1818
void esp_eap_client_remote_clear_new_password(void);
19-
esp_err_t esp_eap_client_remote_set_ca_cert(const unsigned *ca_cert, int ca_cert_len);
19+
esp_err_t esp_eap_client_remote_set_ca_cert(const unsigned char *ca_cert, int ca_cert_len);
2020
void esp_eap_client_remote_clear_ca_cert(void);
21-
esp_err_t esp_eap_client_remote_set_certificate_and_key(const unsigned *client_cert, int client_cert_len, const unsigned *private_key, int private_key_len, const unsigned *private_key_password, int private_key_passwd_len);
21+
esp_err_t esp_eap_client_remote_set_certificate_and_key(const unsigned char *client_cert, int client_cert_len, const unsigned char *private_key, int private_key_len, const unsigned char *private_key_password, int private_key_passwd_len);
2222
void esp_eap_client_remote_clear_certificate_and_key(void);
2323
esp_err_t esp_eap_client_remote_set_disable_time_check(_Bool disable);
2424
esp_err_t esp_eap_client_remote_get_disable_time_check(_Bool *disable);
2525
esp_err_t esp_eap_client_remote_set_ttls_phase2_method(esp_eap_ttls_phase2_types type);
2626
esp_err_t esp_eap_client_remote_set_suiteb_192bit_certification(_Bool enable);
27-
esp_err_t esp_eap_client_remote_set_pac_file(const unsigned *pac_file, int pac_file_len);
27+
esp_err_t esp_eap_client_remote_set_pac_file(const unsigned char *pac_file, int pac_file_len);
2828
esp_err_t esp_eap_client_remote_set_fast_params(esp_eap_fast_config config);
2929
esp_err_t esp_eap_client_remote_use_default_cert_bundle(_Bool use_default_bundle);

components/esp_wifi_remote/idf_tag_v5.3.2/esp_eap_client_remote_weak.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66
// This file is auto-generated
7-
#include "esp_eap_client_remote.h"
7+
#include "esp_eap_client_remote_api.h"
88
#include "esp_log.h"
99

1010
#define WEAK __attribute__((weak))
@@ -22,7 +22,7 @@ WEAK esp_err_t esp_wifi_remote_sta_enterprise_disable(void)
2222
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
2323
}
2424

25-
WEAK esp_err_t esp_eap_client_remote_set_identity(const unsigned *identity, int len)
25+
WEAK esp_err_t esp_eap_client_remote_set_identity(const unsigned char *identity, int len)
2626
{
2727
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
2828
}
@@ -32,7 +32,7 @@ WEAK void esp_eap_client_remote_clear_identity(void)
3232
LOG_UNSUPPORTED_VOID();
3333
}
3434

35-
WEAK esp_err_t esp_eap_client_remote_set_username(const unsigned *username, int len)
35+
WEAK esp_err_t esp_eap_client_remote_set_username(const unsigned char *username, int len)
3636
{
3737
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
3838
}
@@ -42,7 +42,7 @@ WEAK void esp_eap_client_remote_clear_username(void)
4242
LOG_UNSUPPORTED_VOID();
4343
}
4444

45-
WEAK esp_err_t esp_eap_client_remote_set_password(const unsigned *password, int len)
45+
WEAK esp_err_t esp_eap_client_remote_set_password(const unsigned char *password, int len)
4646
{
4747
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
4848
}
@@ -52,7 +52,7 @@ WEAK void esp_eap_client_remote_clear_password(void)
5252
LOG_UNSUPPORTED_VOID();
5353
}
5454

55-
WEAK esp_err_t esp_eap_client_remote_set_new_password(const unsigned *new_password, int len)
55+
WEAK esp_err_t esp_eap_client_remote_set_new_password(const unsigned char *new_password, int len)
5656
{
5757
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
5858
}
@@ -62,7 +62,7 @@ WEAK void esp_eap_client_remote_clear_new_password(void)
6262
LOG_UNSUPPORTED_VOID();
6363
}
6464

65-
WEAK esp_err_t esp_eap_client_remote_set_ca_cert(const unsigned *ca_cert, int ca_cert_len)
65+
WEAK esp_err_t esp_eap_client_remote_set_ca_cert(const unsigned char *ca_cert, int ca_cert_len)
6666
{
6767
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
6868
}
@@ -72,7 +72,7 @@ WEAK void esp_eap_client_remote_clear_ca_cert(void)
7272
LOG_UNSUPPORTED_VOID();
7373
}
7474

75-
WEAK esp_err_t esp_eap_client_remote_set_certificate_and_key(const unsigned *client_cert, int client_cert_len, const unsigned *private_key, int private_key_len, const unsigned *private_key_password, int private_key_passwd_len)
75+
WEAK esp_err_t esp_eap_client_remote_set_certificate_and_key(const unsigned char *client_cert, int client_cert_len, const unsigned char *private_key, int private_key_len, const unsigned char *private_key_password, int private_key_passwd_len)
7676
{
7777
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
7878
}
@@ -102,7 +102,7 @@ WEAK esp_err_t esp_eap_client_remote_set_suiteb_192bit_certification(_Bool enabl
102102
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
103103
}
104104

105-
WEAK esp_err_t esp_eap_client_remote_set_pac_file(const unsigned *pac_file, int pac_file_len)
105+
WEAK esp_err_t esp_eap_client_remote_set_pac_file(const unsigned char *pac_file, int pac_file_len)
106106
{
107107
LOG_UNSUPPORTED_AND_RETURN(ESP_ERR_NOT_SUPPORTED);
108108
}

components/esp_wifi_remote/idf_tag_v5.3.2/esp_eap_client_with_remote.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
// This file is auto-generated
77
#include "esp_eap_client.h"
8-
#include "esp_eap_client_remote.h"
8+
#include "esp_eap_client_remote_api.h"
99

1010
esp_err_t esp_wifi_sta_enterprise_enable(void)
1111
{
@@ -17,7 +17,7 @@ esp_err_t esp_wifi_sta_enterprise_disable(void)
1717
return esp_wifi_remote_sta_enterprise_disable();
1818
}
1919

20-
esp_err_t esp_eap_client_set_identity(const unsigned *identity, int len)
20+
esp_err_t esp_eap_client_set_identity(const unsigned char *identity, int len)
2121
{
2222
return esp_eap_client_remote_set_identity(identity, len);
2323
}
@@ -27,7 +27,7 @@ void esp_eap_client_clear_identity(void)
2727
esp_eap_client_remote_clear_identity();
2828
}
2929

30-
esp_err_t esp_eap_client_set_username(const unsigned *username, int len)
30+
esp_err_t esp_eap_client_set_username(const unsigned char *username, int len)
3131
{
3232
return esp_eap_client_remote_set_username(username, len);
3333
}
@@ -37,7 +37,7 @@ void esp_eap_client_clear_username(void)
3737
esp_eap_client_remote_clear_username();
3838
}
3939

40-
esp_err_t esp_eap_client_set_password(const unsigned *password, int len)
40+
esp_err_t esp_eap_client_set_password(const unsigned char *password, int len)
4141
{
4242
return esp_eap_client_remote_set_password(password, len);
4343
}
@@ -47,7 +47,7 @@ void esp_eap_client_clear_password(void)
4747
esp_eap_client_remote_clear_password();
4848
}
4949

50-
esp_err_t esp_eap_client_set_new_password(const unsigned *new_password, int len)
50+
esp_err_t esp_eap_client_set_new_password(const unsigned char *new_password, int len)
5151
{
5252
return esp_eap_client_remote_set_new_password(new_password, len);
5353
}
@@ -57,7 +57,7 @@ void esp_eap_client_clear_new_password(void)
5757
esp_eap_client_remote_clear_new_password();
5858
}
5959

60-
esp_err_t esp_eap_client_set_ca_cert(const unsigned *ca_cert, int ca_cert_len)
60+
esp_err_t esp_eap_client_set_ca_cert(const unsigned char *ca_cert, int ca_cert_len)
6161
{
6262
return esp_eap_client_remote_set_ca_cert(ca_cert, ca_cert_len);
6363
}
@@ -67,7 +67,7 @@ void esp_eap_client_clear_ca_cert(void)
6767
esp_eap_client_remote_clear_ca_cert();
6868
}
6969

70-
esp_err_t esp_eap_client_set_certificate_and_key(const unsigned *client_cert, int client_cert_len, const unsigned *private_key, int private_key_len, const unsigned *private_key_password, int private_key_passwd_len)
70+
esp_err_t esp_eap_client_set_certificate_and_key(const unsigned char *client_cert, int client_cert_len, const unsigned char *private_key, int private_key_len, const unsigned char *private_key_password, int private_key_passwd_len)
7171
{
7272
return esp_eap_client_remote_set_certificate_and_key(client_cert, client_cert_len, private_key, private_key_len, private_key_password, private_key_passwd_len);
7373
}
@@ -97,7 +97,7 @@ esp_err_t esp_eap_client_set_suiteb_192bit_certification(_Bool enable)
9797
return esp_eap_client_remote_set_suiteb_192bit_certification(enable);
9898
}
9999

100-
esp_err_t esp_eap_client_set_pac_file(const unsigned *pac_file, int pac_file_len)
100+
esp_err_t esp_eap_client_set_pac_file(const unsigned char *pac_file, int pac_file_len)
101101
{
102102
return esp_eap_client_remote_set_pac_file(pac_file, pac_file_len);
103103
}

components/esp_wifi_remote/idf_tag_v5.3.2/include/esp_eap_client_remote_api.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@
88
#include "esp_eap_client.h"
99
esp_err_t esp_wifi_remote_sta_enterprise_enable(void);
1010
esp_err_t esp_wifi_remote_sta_enterprise_disable(void);
11-
esp_err_t esp_eap_client_remote_set_identity(const unsigned *identity, int len);
11+
esp_err_t esp_eap_client_remote_set_identity(const unsigned char *identity, int len);
1212
void esp_eap_client_remote_clear_identity(void);
13-
esp_err_t esp_eap_client_remote_set_username(const unsigned *username, int len);
13+
esp_err_t esp_eap_client_remote_set_username(const unsigned char *username, int len);
1414
void esp_eap_client_remote_clear_username(void);
15-
esp_err_t esp_eap_client_remote_set_password(const unsigned *password, int len);
15+
esp_err_t esp_eap_client_remote_set_password(const unsigned char *password, int len);
1616
void esp_eap_client_remote_clear_password(void);
17-
esp_err_t esp_eap_client_remote_set_new_password(const unsigned *new_password, int len);
17+
esp_err_t esp_eap_client_remote_set_new_password(const unsigned char *new_password, int len);
1818
void esp_eap_client_remote_clear_new_password(void);
19-
esp_err_t esp_eap_client_remote_set_ca_cert(const unsigned *ca_cert, int ca_cert_len);
19+
esp_err_t esp_eap_client_remote_set_ca_cert(const unsigned char *ca_cert, int ca_cert_len);
2020
void esp_eap_client_remote_clear_ca_cert(void);
21-
esp_err_t esp_eap_client_remote_set_certificate_and_key(const unsigned *client_cert, int client_cert_len, const unsigned *private_key, int private_key_len, const unsigned *private_key_password, int private_key_passwd_len);
21+
esp_err_t esp_eap_client_remote_set_certificate_and_key(const unsigned char *client_cert, int client_cert_len, const unsigned char *private_key, int private_key_len, const unsigned char *private_key_password, int private_key_passwd_len);
2222
void esp_eap_client_remote_clear_certificate_and_key(void);
2323
esp_err_t esp_eap_client_remote_set_disable_time_check(_Bool disable);
2424
esp_err_t esp_eap_client_remote_get_disable_time_check(_Bool *disable);
2525
esp_err_t esp_eap_client_remote_set_ttls_phase2_method(esp_eap_ttls_phase2_types type);
2626
esp_err_t esp_eap_client_remote_set_suiteb_192bit_certification(_Bool enable);
27-
esp_err_t esp_eap_client_remote_set_pac_file(const unsigned *pac_file, int pac_file_len);
27+
esp_err_t esp_eap_client_remote_set_pac_file(const unsigned char *pac_file, int pac_file_len);
2828
esp_err_t esp_eap_client_remote_set_fast_params(esp_eap_fast_config config);
2929
esp_err_t esp_eap_client_remote_use_default_cert_bundle(_Bool use_default_bundle);

0 commit comments

Comments
 (0)