1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-12 01:53:07 +03:00

should at least respond to discovery

This commit is contained in:
Wyatt Neal
2016-01-05 22:04:21 -05:00
parent 430331a4f8
commit 2e71a536cb

View File

@ -321,6 +321,10 @@ void SSDPClass::_update(){
DEBUG_SSDP.printf("REJECT: %s\n", (char *)buffer);
#endif
}
if(strcmp(buffer, "ssdp:discovery")){
_send(NONE);
state = ABORT;
}
break;
case MX:
_delay = random(0, atoi(buffer)) * 1000L;