You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When zeek is running with Broker::disable_ssl = T and we (incorrectly) use client.NewClient() with the weirdtls.BrokerDefaultTLSDialer, the underlying openssl connection function hangs indefinitely and NewClient() never returns.
One fix might be to use the go-openssl DialTimeout function instead, but this requires an API change in the library:
When zeek is running with
Broker::disable_ssl = T
and we (incorrectly) useclient.NewClient()
with theweirdtls.BrokerDefaultTLSDialer
, the underlying openssl connection function hangs indefinitely and NewClient() never returns.One fix might be to use the go-openssl
DialTimeout
function instead, but this requires an API change in the library:https://github.com/libp2p/go-openssl/blob/v0.1.0/net.go#L90
The text was updated successfully, but these errors were encountered: