* Used from an InkAPI */
| 8636 | * Used from an InkAPI |
| 8637 | */ |
| 8638 | bool |
| 8639 | HttpSM::set_server_session_private(bool private_session) |
| 8640 | { |
| 8641 | if (server_txn != nullptr) { |
| 8642 | static_cast<PoolableSession *>(server_txn->get_proxy_ssn())->set_private(private_session); |
| 8643 | return true; |
| 8644 | } |
| 8645 | return false; |
| 8646 | } |
| 8647 | |
| 8648 | bool |
| 8649 | HttpSM::is_private() const |
no test coverage detected