mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-25 20:02:37 +03:00
Switch SSDP send arguments around
They are in the wrong order - `_ssdp_packet_template` expects `_uuid` to be before the NT/ST header.
This commit is contained in:
parent
edaae2c194
commit
8b9f78eed3
@ -206,9 +206,9 @@ void SSDPClass::_send(ssdp_method_t method){
|
||||
(method == NONE)?_ssdp_response_template:_ssdp_notify_template,
|
||||
SSDP_INTERVAL,
|
||||
_modelName, _modelNumber,
|
||||
_uuid,
|
||||
(method == NONE)?"ST":"NT",
|
||||
_deviceType,
|
||||
_uuid,
|
||||
IP2STR(&ip), _port, _schemaURL
|
||||
);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user