-
-
Notifications
You must be signed in to change notification settings - Fork 753
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
Add helper to return &mut SslRef from stream #2223
base: master
Are you sure you want to change the base?
Conversation
There is a failure in the CI, but it looks to be unrelated to my PR.
|
CI should be fixed once you rebase on main |
48398b6
to
a323dd0
Compare
Hi @alex, wondering if you could take a look at this? Thanks! |
Unfortunately I don't use the |
Ah, I understand. Do you know how I could go about getting this reviewed? |
Hopefully Steven will review as he has time.
…On Mon, May 13, 2024 at 3:56 PM James Mayclin ***@***.***> wrote:
Ah, I understand. Do you know how I could go about getting this reviewed?
—
Reply to this email directly, view it on GitHub
<#2223 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAAGBD7M7V7ETAUAUFT2BTZCELIJAVCNFSM6AAAAABGTJDCU2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMBYGY4DONBYGQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
--
All that is necessary for evil to succeed is for good people to do nothing.
|
Hi @sfackler, I am still interested in getting this merged in. Please let me know if you have any feedback or concerns! |
Currently there is no way to retrieve a mutable reference to the underlying
SslRef
given someSslStream
. This PR adds anssl_mut
method to do that.