Re: [RTnet-developers] Multicast patch
Brought to you by:
bet-frogger,
kiszka
|
From: Gilles C. <gil...@gm...> - 2008-04-22 17:00:43
|
On Tue, Apr 22, 2008 at 6:06 PM, Bruno Carlus <b.c...@ip...> wrote: > Hi all, > > i'm sending you an up to date multicast patch, but not the final one (i'm > not still happy with everything yet ...!) > I've tested it but it could remain bugs ... I see many: if (!(rtdev->flags & IFF_LOOPBACK) && (rtdev->flags & IFF_MULTICAST)) why not: if (rtdev->flags & (IFF_LOOPBACK | IFF_MULTICAST) == IFF_MULTICAST) ? -- Gilles |