-
Notifications
You must be signed in to change notification settings - Fork 402
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
pkg/strace/epsocket: fix handling of IP4/IP6 #2614
Conversation
Codecov ReportBase: 74.85% // Head: 74.95% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #2614 +/- ##
==========================================
+ Coverage 74.85% 74.95% +0.09%
==========================================
Files 409 409
Lines 41384 41385 +1
==========================================
+ Hits 30979 31020 +41
+ Misses 10405 10365 -40
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
I am not sure why the original code does this but it returns a binary string in FullAddress:Addr. Change the code so that Addr is net.IP().String(). Add tests. Fixes:u-root#2609 Signed-off-by: Ronald G. Minnich <rminnich@google.com>
Signed-off-by: Ronald G. Minnich <rminnich@google.com>
Signed-off-by: Ronald G. Minnich <rminnich@google.com>
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Issue #2609 is fixed. |
I am not sure why the original code does this but
it returns a binary string in FullAddress:Addr.
Change the code so that Addr is net.IP().String().
Add tests.
Fixes:#2609
Signed-off-by: Ronald G. Minnich rminnich@google.com