* @brief Return a descriptive string for an HTTP status code */
| 112 | * @brief Return a descriptive string for an HTTP status code |
| 113 | */ |
| 114 | inline String httpGetStatusText(unsigned code) |
| 115 | { |
| 116 | return toString(HttpStatus(code)); |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * @brief Return text for an HTTP method |
nothing calls this directly
no test coverage detected