| 1471 | */ |
| 1472 | |
| 1473 | const char * /* O - State string */ |
| 1474 | httpStateString(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 | /* |
no outgoing calls
no test coverage detected