Displaying 1 result from an estimated 1 matches for "httpclient2".
Did you mean:
httpclient
2009 Feb 26
1
0.12.4 dies with call SetTlsParms before
...led after throwing an instance of ''std::runtime_error''
what(): call SetTlsParms before calling StartTls
Here''s what I believe is the relevant snippet of my code, which calls
start_tls() in the connection_completed() callback:
connection = EventMachine::Protocols::HttpClient2.connect(args)
class << connection
def connection_completed
logger.debug4 {
"Connected to " + dest_host
}
start_tls if @args[:ssl]
super
end
....etc
Did I miss something about a change in the tls-releated portion of the...