mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-29 10:17:30 +02:00
mDNS: Fix of text length calculation when detecting a collision
* Original commit: espressif/esp-idf@be0ae1ebbb
This commit is contained in:
committed by
suren-gabrielyan-espressif
parent
487287157d
commit
2ffd22382d
@ -2147,7 +2147,7 @@ static int _mdns_check_srv_collision(mdns_service_t * service, uint16_t priority
|
||||
*/
|
||||
static int _mdns_check_txt_collision(mdns_service_t * service, const uint8_t * data, size_t len)
|
||||
{
|
||||
size_t data_len = 1;
|
||||
size_t data_len = 0;
|
||||
if (len == 1 && service->txt) {
|
||||
return -1;//we win
|
||||
} else if (len > 1 && !service->txt) {
|
||||
|
Reference in New Issue
Block a user