13 Dec
2010
13 Dec
'10
11:59 p.m.
Hi, I want to know what would be the correct approach for map C style flags #define IFF_UP 0x1 /* interface is up */ #define IFF_BROADCAST 0x2 /* broadcast address valid */ and how to use then later: struct ifaddrs* curr = ... if(curr->ifa_flags & IFF_UP){...} /*Especially what will be the equivalent lisp*/ Regards, Jose