Flow Control Resp Code to String
| 123 | |
| 124 | // Flow Control Resp Code to String |
| 125 | inline const char *FlowControlRespCodeToStr(FlowControlRespCode code) { |
| 126 | if (code < MAX_RESP_CODE) |
| 127 | return FlowControlRespCodeStr[code]; |
| 128 | else |
| 129 | return NULL; |
| 130 | } |
| 131 | |
| 132 | // Common FlowControlProtocol Header |
| 133 | typedef struct { |
no outgoing calls
no test coverage detected