1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-27 18:02:17 +03:00

adaptations for lwIP-v1.4 (#5682)

* adaptations for lwIP-v1.4
* add lwIP-v1.4 in CI
This commit is contained in:
david gauchard
2019-01-28 22:31:59 +01:00
committed by GitHub
parent 013d01d743
commit f42bfdfc0d
9 changed files with 83 additions and 21 deletions

View File

@ -280,7 +280,7 @@ bool wifi_station_get_config_default (struct station_config *config)
}
char wifi_station_get_hostname_str [128];
char* wifi_station_get_hostname (void)
const char* wifi_station_get_hostname (void)
{
return strcpy(wifi_station_get_hostname_str, "esposix");
}
@ -312,7 +312,7 @@ bool wifi_station_set_config_current (struct station_config *config)
return true;
}
bool wifi_station_set_hostname (char *name)
bool wifi_station_set_hostname (const char *name)
{
(void)name;
return true;