Home
last modified time | relevance | path

Searched refs:nw_bits (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/tcpdump/
H A Dprint-openflow-1.0.c1191 u_int nw_bits; in of10_match_print() local
1242 nw_bits = (wildcards & OFPFW_NW_SRC_MASK) >> OFPFW_NW_SRC_SHIFT; in of10_match_print()
1243 if (nw_bits < 32) in of10_match_print()
1244 ND_PRINT("%smatch nw_src %s/%u", pfx, GET_IPADDR_STRING(cp), 32 - nw_bits); in of10_match_print()
1247 nw_bits = (wildcards & OFPFW_NW_DST_MASK) >> OFPFW_NW_DST_SHIFT; in of10_match_print()
1248 if (nw_bits < 32) in of10_match_print()
1249 ND_PRINT("%smatch nw_dst %s/%u", pfx, GET_IPADDR_STRING(cp), 32 - nw_bits); in of10_match_print()