Flow Control Msg Id to String
| 110 | |
| 111 | // Flow Control Msg Id to String |
| 112 | inline const char *FlowControlMsgIdToStr(FlowControlMsgID id) { |
| 113 | if (id < MAX_FLOW_MSG_ID) |
| 114 | return FlowControlMsgIDStr[id]; |
| 115 | else |
| 116 | return nullptr; |
| 117 | } |
| 118 | |
| 119 | // Flow Control Respond status code |
| 120 | typedef enum { |
nothing calls this directly
no outgoing calls
no test coverage detected