Fix SSDP example for second and subsequent responses

This commit is contained in:
Andrew Griffiths 2022-09-24 14:14:26 +10:00
parent 161d44ee04
commit 25d42ad345

View File

@ -33,6 +33,9 @@ static void fn(struct mg_connection *c, int ev, void *ev_data, void *fn_data) {
// But in our case, we should restore the multicast address in order
// to have next search to go to the multicast address
memcpy(&c->rem, c->label, sizeof(c->rem));
// Discard the content of this response as we expect each SSDP response
// to generate at most one MG_EV_READ event.
c->recv.len = 0UL;
}
}