1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

Fix compilation with LWIP v2 (#3822)

This commit is contained in:
Luc 2017-11-17 04:33:19 +01:00 committed by Develo
parent 9f2dcd6892
commit d1e8fe99a2

View File

@ -201,7 +201,7 @@ bool SSDPClass::begin(){
void SSDPClass::_send(ssdp_method_t method){
char buffer[1460];
uint32_t ip = WiFi.localIP();
IPAddress ip = WiFi.localIP();
char valueBuffer[strlen_P(_ssdp_notify_template)+1];
strcpy_P(valueBuffer, (method == NONE)?_ssdp_response_template:_ssdp_notify_template);
@ -214,7 +214,7 @@ void SSDPClass::_send(ssdp_method_t method){
_uuid,
(method == NONE)?"ST":"NT",
_deviceType,
IP2STR(&ip), _port, _schemaURL
ip[0], ip[1], ip[2], ip[3], _port, _schemaURL
);
_server->append(buffer, len);
@ -244,11 +244,11 @@ void SSDPClass::_send(ssdp_method_t method){
}
void SSDPClass::schema(WiFiClient client){
uint32_t ip = WiFi.localIP();
IPAddress ip = WiFi.localIP();
char buffer[strlen_P(_ssdp_schema_template)+1];
strcpy_P(buffer, _ssdp_schema_template);
client.printf(buffer,
IP2STR(&ip), _port,
ip[0], ip[1], ip[2], ip[3], _port,
_deviceType,
_friendlyName,
_presentationURL,