-
Notifications
You must be signed in to change notification settings - Fork 34
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 RAW socket type to LwIP #2
Conversation
8223890
to
933c0af
Compare
@flapjack321 , @nderjung , what was the reasoning for adding |
4a68271
to
a2166d6
Compare
Applications that use the raw socket API can send custom packets. I think some networking tools like |
This commit optionalizes LwIP's "RAW" protocol, making it available to use within Unikraft when enabled. Signed-off-by: Ethan Cotterell <e.cotterell@lancs.ac.uk> Signed-off-by: Alexander Jung <a.jung@lancs.ac.uk>
a2166d6
to
75d0f00
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.
Thanks a lot for the updates!
Reviewed-by: Simon Kuenzer simon@unikraft.io
Approved-by: Simon Kuenzer simon@unikraft.io
This commit optionalizes LwIP's "RAW" protocol, making it available to use within Unikraft when enabled. Signed-off-by: Ethan Cotterell <e.cotterell@lancs.ac.uk> Signed-off-by: Alexander Jung <a.jung@lancs.ac.uk> Reviewed-by: Simon Kuenzer <simon@unikraft.io> Approved-by: Simon Kuenzer <simon@unikraft.io> GitHub-Closes: #2
Added RAW config option into
lwipopts.h
.Updated
Config.uk
to reflect option addition.Signed-off-by: Ethan Cotterell e.cotterell@lancaster.ac.uk