Lines Matching refs:mti
107 const struct of_msgtypeinfo *mti) in of_message_print() argument
120 if (!mti) in of_message_print()
123 if ((mti->req_what == REQ_FIXLEN && len != mti->req_value) || in of_message_print()
124 (mti->req_what == REQ_MINLEN && len < mti->req_value)) in of_message_print()
127 if (!ndo->ndo_vflag || !mti->decoder) in of_message_print()
130 mti->decoder(ndo, cp, len); in of_message_print()
150 const struct of_msgtypeinfo *mti; in openflow_print() local
162 mti = in openflow_print()
166 if (mti && mti->name) in openflow_print()
167 ND_PRINT(", type %s", mti->name); in openflow_print()
212 of_message_print(ndo, cp, length - OF_HEADER_FIXLEN, mti); in openflow_print()