Searched refs:ouistype (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/lib/liblldp/common/
H A Dlldp.h119 #define LLDP_ORGTLV_OUI(ouistype) \
120 (ntohl(*(uint32_t *)(void *)(ouistype)) >> 8)
121 #define LLDP_ORGTLV_STYPE(ouistype) \
122 (ntohl(*(uint32_t *)(void *)(ouistype)) & 0x000000FF)
H A Dliblldp_tlv.c96 uint32_t ouistype = subtype; local
102 ouistype |= (oui << 8);
103 *(uint32_t *)(void *)lldpdu = htonl(ouistype);
754 uint32_t ouistype; local
757 ouistype = ntohl(*(uint32_t *)(void *)tlv->lt_value);
758 *oui = ((ouistype & 0xFFFFFF00) >> 8);
759 *subtype = (ouistype & 0x000000FF);

Completed in 26 milliseconds