Searched refs:nw_bits (Results 1 – 1 of 1) sorted by relevance
/external/tcpdump/ |
D | print-openflow-1.0.c | 1347 u_char nw_bits; in of10_match_print() local 1409 nw_bits = (wildcards & OFPFW_NW_SRC_MASK) >> OFPFW_NW_SRC_SHIFT; in of10_match_print() 1410 if (nw_bits < 32) in of10_match_print() 1411 ND_PRINT((ndo, "%smatch nw_src %s/%u", pfx, ipaddr_string(ndo, cp), 32 - nw_bits)); in of10_match_print() 1415 nw_bits = (wildcards & OFPFW_NW_DST_MASK) >> OFPFW_NW_DST_SHIFT; in of10_match_print() 1416 if (nw_bits < 32) in of10_match_print() 1417 ND_PRINT((ndo, "%smatch nw_dst %s/%u", pfx, ipaddr_string(ndo, cp), 32 - nw_bits)); in of10_match_print()
|