| 8754 | } |
| 8755 | |
| 8756 | const char * |
| 8757 | TSHttpTxnServerProtocolStackContains(TSHttpTxn txnp, const char *tag) |
| 8758 | { |
| 8759 | sdk_assert(sdk_sanity_check_txn(txnp) == TS_SUCCESS); |
| 8760 | HttpSM *sm = reinterpret_cast<HttpSM *>(txnp); |
| 8761 | return sm->server_protocol_contains(std::string_view{tag}); |
| 8762 | } |
| 8763 | |
| 8764 | const char * |
| 8765 | TSRegisterProtocolTag(const char * /* tag ATS_UNUSED */) |
no test coverage detected