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