in reply to Re^2: Long delay with Crypt::SSLeay and LWP
in thread Long delay with Crypt::SSLeay and LWP

Thank you very much. That was my problem. Forcing to v3 worked.
  • Comment on Re^3: Long delay with Crypt::SSLeay and LWP

Replies are listed 'Best First'.
Re^4: Long delay with Crypt::SSLeay and LWP
by wrog (Friar) on Nov 05, 2014 at 17:41 UTC
    And now of course, because of the POODLE bug, the latest version of IO:Socket::SSL has version 3 completely disabled. So the above fix is no longer the Right Thing.

    It also seems that IO::Socket::SSL now deals better with sites that immediately close or drop connections for bad SSL versions, so it's no longer necessary to force a specific version (which is good, since this is evidently going to be constantly changing anyway). So my code now reads

    our %ssl_options = ();