in reply to Net::SSLeay - "See the implementation of ds_https3() for guidance on how to do this."

Guessing it's a typo for do_https3, but the promised guidance isn't there. Maybe set_verify will do what you want?
  • Comment on Re: Net::SSLeay - "See the implementation of ds_https3() for guidance on how to do this."

Replies are listed 'Best First'.
Re^2: Net::SSLeay - "See the implementation of ds_https3() for guidance on how to do this."
by Anonymous Monk on Oct 15, 2013 at 17:02 UTC

    Thank you very much! Looks like that's it:

    sub do_https3 { splice(@_,1,0) = 1; do_httpx3; }  # Legacy undocumented

    And it leads us to "do_httpx3".