-
Notifications
You must be signed in to change notification settings - Fork 6.6k
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
net: sockets: socket_service: change callback arg to struct net_socket_service_event
#80041
net: sockets: socket_service: change callback arg to struct net_socket_service_event
#80041
Conversation
remove reference to async socket service Signed-off-by: Fin Maaß <f.maass@vogl-electronic.com>
as the async type got removed, there is only one type left, so no need to show that. Signed-off-by: Fin Maaß <f.maass@vogl-electronic.com>
optimize code for the net socket service. Signed-off-by: Fin Maaß <f.maass@vogl-electronic.com>
b2abf3f
to
c24d87b
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.
Overall LGTM, just minor nits about commit subjects
d0b3990
to
4bd4999
Compare
4bd4999
to
abdd26f
Compare
abdd26f
to
9a59f05
Compare
forgot to change it for the sample |
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.
Looks good, but it seems there's still some leftovers in LLMNR code.
remove k_work related code and change the argument of the callback to `struct net_socket_service_event`. Signed-off-by: Fin Maaß <f.maass@vogl-electronic.com>
mention change of callback function for the socket service. Signed-off-by: Fin Maaß <f.maass@vogl-electronic.com>
9a59f05
to
97aa0e6
Compare
This removes the remains from when there was a async mode for the socket service.
Mainly it changes the callback argument from
struct k_work *work
tostruct net_socket_service_event
.