Functions
is_peer_verified()
Returns true if the connection on which the message was received
is TLS , the peer presented an X509 certificate and the
certificate chain verified ok.
It can be used only in a request route.
is_peer_verified usage
if (proto==TLS && !is_peer_verified()){
sl_send_reply("400", "No certificate or verification failed");
drop;
}