mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-12 01:53:07 +03:00
dynamic WiFi.hostname("newname") (#5652)
* dynamic WiFi.hostname("newname") * WiFi.hostname() back to String return type * no silent hostname fix but proceed with debug message and returning false
This commit is contained in:
@ -328,8 +328,8 @@ bool wifi_station_dhcpc_stop(void);
|
||||
enum dhcp_status wifi_station_dhcpc_status(void);
|
||||
bool wifi_station_dhcpc_set_maxtry(uint8 num);
|
||||
|
||||
char* wifi_station_get_hostname(void);
|
||||
bool wifi_station_set_hostname(char *name);
|
||||
const char* wifi_station_get_hostname(void);
|
||||
bool wifi_station_set_hostname(const char *name);
|
||||
|
||||
int wifi_station_set_cert_key(uint8 *client_cert, int client_cert_len,
|
||||
uint8 *private_key, int private_key_len,
|
||||
|
Reference in New Issue
Block a user