/**
  * This function may be used to configure the maximum verification depth
  * allowed by the stream.
  *
  * @param depth Maximum depth for the certificate chain verification that
  * shall be allowed.
  *
  * @throws boost::system::system_error Thrown on failure.
  *
  * @note Calls @c SSL_set_verify_depth.
  */
 void set_verify_depth(int depth)
 {
   boost::system::error_code ec;
   set_verify_depth(depth, ec);
   boost::asio::detail::throw_error(ec, "set_verify_depth");
 }
Beispiel #2
0
 /**
  * This function may be used to configure the maximum verification depth
  * allowed by the stream.
  *
  * @param depth Maximum depth for the certificate chain verification that
  * shall be allowed.
  *
  * @throws asio::system_error Thrown on failure.
  *
  * @note Calls @c SSL_set_verify_depth.
  */
 void set_verify_depth(int depth)
 {
   asio::error_code ec;
   set_verify_depth(depth, ec);
   asio::detail::throw_error(ec, "set_verify_depth");
 }