Home | History | Annotate | Download | only in strace

Lines Matching refs:mreq

1385 	struct packet_mreq mreq;
1387 if (len != sizeof(mreq) ||
1388 umove(tcp, addr, &mreq) < 0) {
1393 tprintf("{mr_ifindex=%u, mr_type=", mreq.mr_ifindex);
1394 printxval(packet_mreq_type, mreq.mr_type, "PACKET_MR_???");
1395 tprintf(", mr_alen=%u, mr_address=", mreq.mr_alen);
1396 if (mreq.mr_alen > ARRAY_SIZE(mreq.mr_address))
1397 mreq.mr_alen = ARRAY_SIZE(mreq.mr_address);
1398 for (i = 0; i < mreq.mr_alen; ++i)
1399 tprintf("%02x", mreq.mr_address[i]);