Flow Control Resp Code to String
| 131 | |
| 132 | // Flow Control Resp Code to String |
| 133 | inline const char *FlowControlRespCodeToStr(FlowControlRespCode code) { |
| 134 | if (code < MAX_RESP_CODE) |
| 135 | return FlowControlRespCodeStr[code]; |
| 136 | else |
| 137 | return nullptr; |
| 138 | } |
| 139 | |
| 140 | // Common FlowControlProtocol Header |
| 141 | typedef struct { |
nothing calls this directly
no outgoing calls
no test coverage detected