-
Notifications
You must be signed in to change notification settings - Fork 134
Impl BIO_ADDR_xxx functions #2439
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
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.
clang-tidy made some suggestions
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2439 +/- ##
========================================
Coverage 78.94% 78.95%
========================================
Files 635 636 +1
Lines 109272 109442 +170
Branches 15446 15475 +29
========================================
+ Hits 86270 86407 +137
- Misses 22323 22343 +20
- Partials 679 692 +13 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
103c016
to
0c00c15
Compare
Description of changes:
Implementation of several
BIO_ADDR
-related functions (BIO_ADDR_new
,BIO_ADDR_free
,BIO_ADDR_clear
,BIO_ADDR_rawmake
,BIO_ADDR_family
,BIO_ADDR_rawaddress
, andBIO_ADDR_rawport
) as described by OpenSSL here.Call-outs:
I skipped implementation of
BIO_ADDR_hostname_string
,BIO_ADDR_service_string
, andBIO_ADDR_path_string
as I had trouble finding anywhere they were actually used. I can add these if we think they will be needed.Testing:
Added tests to increase code coverage.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and the ISC license.