-
Notifications
You must be signed in to change notification settings - Fork 720
New issue
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
Send Trait for Connection #32
Comments
One problem is that the TLS handshake state (which is a raw pointer to a BoringSSL |
I believe // An |SSL| object represents a single TLS or DTLS connection. Although the
// shared |SSL_CTX| is thread-safe, an |SSL| is not thread-safe and may only be
// used on one thread at a time. |
One would also need to deal with application data on streams - currently this is a |
I'm trying to use this library from a multi-threaded context.
Is there any particular reason the
Connection
struct can't implementSend
?The text was updated successfully, but these errors were encountered: