-
-
Notifications
You must be signed in to change notification settings - Fork 400
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
proto: make NoInitialCipherSuite Copy #1876
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it be sufficient to impl just Clone
? That gives us more freedom to add non-Copy
fields in the future. It's not obvious to me why we'd ever need to, so no worries if Copy
confers significant benefit on its own.
f8c1e0d
to
26a3070
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you're planning on publishing a release in the immediate future, note #1869 is outstanding with a fix for a bug that's a panic in debug mode and possible transport error in release. Can always fast-follow with that if you don't have the bandwidth for review right now though.
I'll try to review your open PRs before releasing. |
hickory-proto::ProtoErrorKind
, which will include this, implementsClone
.Downstream PR: hickory-dns/hickory-dns#2217.