You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/modules/tls/doc/functions.xml

38 lines
969 B

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<section id="textops.functions">
<sectioninfo>
<revhistory>
<revision>
<revnumber>$Revision$</revnumber>
<date>$Date$</date>
</revision>
</revhistory>
</sectioninfo>
<title>Functions</title>
<section id="tls.is_peer_verfied">
<title><function>is_peer_verified()</function></title>
<para>
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.
</para>
<example>
<title><function>is_peer_verified</function> usage</title>
<programlisting>
if (proto==TLS &amp;&amp; !is_peer_verified()){
sl_send_reply("400", "No certificate or verification failed");
drop;
}
</programlisting>
</example>
</section>
</section>