Flow Control Msg Id to String
| 102 | |
| 103 | // Flow Control Msg Id to String |
| 104 | inline const char *FlowControlMsgIdToStr(FlowControlMsgID id) { |
| 105 | if (id < MAX_FLOW_MSG_ID) |
| 106 | return FlowControlMsgIDStr[id]; |
| 107 | else |
| 108 | return NULL; |
| 109 | } |
| 110 | |
| 111 | // Flow Control Respond status code |
| 112 | typedef enum { |
nothing calls this directly
no outgoing calls
no test coverage detected