| 733 | } |
| 734 | |
| 735 | int |
| 736 | HttpSsn::protocol_stack(MemSpan<const char *> tags) const |
| 737 | { |
| 738 | int n = 0; |
| 739 | if (TS_SUCCESS != TSHttpSsnClientProtocolStackGet(_ssn, tags.count(), tags.data(), &n)) { |
| 740 | return -1; |
| 741 | } |
| 742 | return n; |
| 743 | } |
| 744 | |
| 745 | SSLContext |
| 746 | HttpSsn::ssl_context() const |
no test coverage detected