| 345 | [[nodiscard]] bool isServerErrorStatus() const { return statusCode >= 500 and statusCode < 600; } |
| 346 | [[nodiscard]] bool isErrorStatus() const { return statusCode >= 400; } |
| 347 | [[nodiscard]] const char* getProtocolName() const { return getProtocolName(negotiatedProtocol); } |
| 348 | [[nodiscard]] static const char* getProtocolName(Protocol protocol); |
| 349 | }; |
| 350 |
no outgoing calls