-
Notifications
You must be signed in to change notification settings - Fork 163
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
ARP/ND Build Separation #1175
ARP/ND Build Separation #1175
Conversation
…m:FreeRTOS/FreeRTOS-Plus-TCP into dev-ip-build-sep
…OS-Plus-TCP into dev-ip-build-sep
d41ebd3
to
bf49f4f
Compare
/bot run formatting |
29a9002
to
08ed9d5
Compare
08ed9d5
to
973fbc4
Compare
Hi @HTRamsey , Thank you for this PR, we will review it internally. |
Probably by the end of the week. It's mostly just name changes & moving stuff so it should be easy to fix |
Whenever I give a time estimation I guess just double or triple it |
Hi @HTRamsey, Thank you. |
@ActoryOu looks good as far as I can tell |
source/FreeRTOS_ARP.c
Outdated
const IPHeader_t * pxIPHeader = &( pxIPPacket->xIPHeader ); | ||
const IPV4Parameters_t * pxIPv4Settings = &( pxNetworkBuffer->pxEndPoint->ipv4_settings ); | ||
|
||
/* configASSERT( ( pxIPPacket->xEthernetHeader.usFrameType == ipIPv4_FRAME_TYPE ) || ( pxIPPacket->xEthernetHeader.usFrameType == ipARP_FRAME_TYPE ) ); */ |
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.
If this is a temporary test code, please remove this line. Or the assert can be uncommented so that it could help with debugging.
I prefer to keep the assert.
I don't know how to fix that last proof thing |
@HTRamsey Thanks for taking care of the other review comments. Will take a look at the failing CBMC proof. |
@tony-josi-aws this is completely unrelated, but is there any way we could get the IPerf code in the tcp_utilities? |
Full separation of ND & ARP for better ipv4/ipv6 configuration
Separate config macros because ARP/ND have different defaults