-
Notifications
You must be signed in to change notification settings - Fork 112
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
Implement packet Clone method #118
Conversation
Codecov Report
@@ Coverage Diff @@
## master #118 +/- ##
==========================================
- Coverage 93.04% 91.65% -1.39%
==========================================
Files 14 13 -1
Lines 920 647 -273
==========================================
- Hits 856 593 -263
+ Misses 46 37 -9
+ Partials 18 17 -1
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
1ed21ec
to
1774656
Compare
Woah this is awesome @ffmiyo! This might also be a good chance to do a |
@Sean-Der Ah right, should've start with # 90. Sure, I'll try to do this. |
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.
must be updated to account for #119 by same author
packet_test.go
Outdated
}}, | ||
}, | ||
Version: 2, | ||
PayloadOffset: 20, |
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.
must be updated to account for #119 by same author
Clone performs deep copy on a packet to produce equivalent but independently mutable packet. Fixes pion#88
Clone performs deep copy on a packet to produce equivalent but independently mutable packet.
Fixes #88