You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when omcproxy build a source specific query in ipv4 doesn't set the correct number of sources.
See igmp_send_query
query.q.srcs[cnt] = querier_unmap(&s->addr);
...
query.q.nsrcs = htons(cnt);
It should increase cnt, like in IPv6 mld_send_query
The text was updated successfully, but these errors were encountered:
when omcproxy build a source specific query in ipv4 doesn't set the correct number of sources.
See igmp_send_query
query.q.srcs[cnt] = querier_unmap(&s->addr);
...
query.q.nsrcs = htons(cnt);
It should increase cnt, like in IPv6 mld_send_query
The text was updated successfully, but these errors were encountered: