MCPcopy Create free account
hub / github.com/apache/nifi-minifi-cpp / FlowControlRespCodeToStr

Function FlowControlRespCodeToStr

libminifi/test/Server.cpp:125–130  ·  view source on GitHub ↗

Flow Control Resp Code to String

Source from the content-addressed store, hash-verified

123
124// Flow Control Resp Code to String
125inline 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
133typedef struct {

Callers 3

mainFunction · 0.70
sendRegisterReqMethod · 0.50
sendReportReqMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected