Hi,
i made a simple AVB audio listener derived from the aaf-listener.c example.
This small tool is working on some machines (e.g. my RPI3).
static int new_packet(int sk_fd, int timer_fd)
{
...
n = recv(sk_fd, pdu, PDU_SIZE, 0);
...
On some other machines (e.g. my RPI3+), it simply doesn't receive any packets.
I can solve this issue by starting a "tcpdump -i vlan.201" on a second terminal.
Any idea about the reason or how i can solve that?