We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The SSL example silently stops clients from connecting. Upon closer inspection, the upgrade_ssl_server method returns a Err on any connection type: Err value: WouldBlock(MidHandshakeSslStream { stream: SslStream { stream: TcpStream { addr: V4(192.168.0.17:4012), peer: V4(192.168.0.17:59812), fd: 8 }, ssl: Ssl { state: "before SSL initialization", verify_result: X509VerifyResult { code: 0, error: "ok" } } }, error: Error { code: ErrorCode(2), cause: Some(Io(Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" })) } })' I am using a self signed certificate by the way.
Err value: WouldBlock(MidHandshakeSslStream { stream: SslStream { stream: TcpStream { addr: V4(192.168.0.17:4012), peer: V4(192.168.0.17:59812), fd: 8 }, ssl: Ssl { state: "before SSL initialization", verify_result: X509VerifyResult { code: 0, error: "ok" } } }, error: Error { code: ErrorCode(2), cause: Some(Io(Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" })) } })'
The text was updated successfully, but these errors were encountered:
Also having this issue, any obvious mistake we're making? Also self-signed cert.
Sorry, something went wrong.
No branches or pull requests
The SSL example silently stops clients from connecting. Upon closer inspection, the upgrade_ssl_server method returns a Err on any connection type:
Err value: WouldBlock(MidHandshakeSslStream { stream: SslStream { stream: TcpStream { addr: V4(192.168.0.17:4012), peer: V4(192.168.0.17:59812), fd: 8 }, ssl: Ssl { state: "before SSL initialization", verify_result: X509VerifyResult { code: 0, error: "ok" } } }, error: Error { code: ErrorCode(2), cause: Some(Io(Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" })) } })'
I am using a self signed certificate by the way.
The text was updated successfully, but these errors were encountered: