MCPcopy Create free account
hub / github.com/OpenPrinting/cups / httpStateString

Function httpStateString

cups/http-support.c:1473–1480  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1471 */
1472
1473const char * /* O - State string */
1474httpStateString(http_state_t state) /* I - HTTP state value */
1475{
1476 if (state < HTTP_STATE_ERROR || state > HTTP_STATE_UNKNOWN_VERSION)
1477 return ("HTTP_STATE_???");
1478 else
1479 return (http_states[state - HTTP_STATE_ERROR]);
1480}
1481
1482
1483/*

Callers 12

cupsdReadClientFunction · 0.85
cupsdWriteClientFunction · 0.85
httpFlushFunction · 0.85
httpGetLength2Function · 0.85
httpPeekFunction · 0.85
httpRead2Function · 0.85
httpReadRequestFunction · 0.85
_httpUpdateFunction · 0.85
httpUpdateFunction · 0.85
httpWrite2Function · 0.85
httpWriteResponseFunction · 0.85
http_set_lengthFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected