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
I have an unusual set up that fails to connect on 8009. After putting in some extra debug in socket_client.py, I saw that the context.wrap_socket was failing with an SSL: SSLV3_ALERT_HANDSHAKE_FAILURE error. I did a little internet sleuthing and found that adding context.set_ciphers('DEFAULT') would allow pychromecast to successfully connect to my receiver.
I'm not that familiar with the security implications of this addition, but I was wondering if this is something that could be introduced to the codebase? I'm happy to create a PR.
Thanks,
Jeff
The text was updated successfully, but these errors were encountered:
Hi,
I have an unusual set up that fails to connect on 8009. After putting in some extra debug in socket_client.py, I saw that the context.wrap_socket was failing with an
SSL: SSLV3_ALERT_HANDSHAKE_FAILURE
error. I did a little internet sleuthing and found that addingcontext.set_ciphers('DEFAULT')
would allow pychromecast to successfully connect to my receiver.I'm not that familiar with the security implications of this addition, but I was wondering if this is something that could be introduced to the codebase? I'm happy to create a PR.
Thanks,
Jeff
The text was updated successfully, but these errors were encountered: