| 1579 | } |
| 1580 | |
| 1581 | x509_st* Controller::get_peer_certificate() const { |
| 1582 | Socket* s = _current_call.sending_sock.get(); |
| 1583 | return s ? s->GetPeerCertificate() : NULL; |
| 1584 | } |
| 1585 | |
| 1586 | int Controller::GetSockOption(int level, int optname, void* optval, socklen_t* optlen) { |
| 1587 | Socket* s = _current_call.sending_sock.get(); |
nothing calls this directly
no test coverage detected