-
Notifications
You must be signed in to change notification settings - Fork 3k
Corrected lwip adaptation TCP flagging #6333
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
@@ -1147,9 +1147,11 @@ static nsapi_error_t mbed_lwip_socket_listen(nsapi_stack_t *stack, nsapi_socket_ | |||
{ | |||
struct lwip_socket *s = (struct lwip_socket *)handle; | |||
|
|||
#if LWIP_TCP |
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.
To further reduce code size, I reckon the entirety of both these functions probably should be wrapped in the #if
so they just return "unsupported" if !TCP.
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.
Updated flagging.
/morph build |
Build : SUCCESSBuild number : 1439 Triggering tests/morph test |
Exporter Build : FAILUREBuild number : 1085 |
Test : FAILUREBuild number : 1219 |
CI issue: NRF52 flash cache test /morph test |
CI issue: ARM network licenses could not be checked out during build. Restarting. |
Exporter Build : SUCCESSBuild number : 1114 |
Test : FAILUREBuild number : 1245 |
/morph test |
Test : SUCCESSBuild number : 1257 |
Description
Corrected LWIP TCP flagging. Some TCP code was not flagged which caused compilation error in UDP only configuration.
Pull request type