Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: oldheating gps motorhome heating
ip6/icmp/ndp/ns.h@200:5acbc41bf469, 2021-05-20 (annotated)
- Committer:
- andrewboyson
- Date:
- Thu May 20 14:32:52 2021 +0000
- Revision:
- 200:5acbc41bf469
- Parent:
- 61:aad055f1b0d1
Increased number of arp entries from 20 to 30 to accommodate the number of WIZ devices plus a few incoming port 80 calls from the internet.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
andrewboyson | 61:aad055f1b0d1 | 1 | #include <stdbool.h> |
andrewboyson | 61:aad055f1b0d1 | 2 | |
andrewboyson | 45:3dd57903ec99 | 3 | extern bool NsTraceRecvSol; |
andrewboyson | 45:3dd57903ec99 | 4 | extern bool NsTraceRecvAdv; |
andrewboyson | 45:3dd57903ec99 | 5 | extern bool NsTraceSendSol; |
andrewboyson | 45:3dd57903ec99 | 6 | |
andrewboyson | 45:3dd57903ec99 | 7 | extern char NsAddressToResolve[]; |
andrewboyson | 45:3dd57903ec99 | 8 | extern bool NsResolveRequestFlag; |
andrewboyson | 45:3dd57903ec99 | 9 | |
andrewboyson | 45:3dd57903ec99 | 10 | extern int NsHandleReceivedAdvertisement(void (*traceback)(void), void* pPacket, int* pSize); |
andrewboyson | 59:e0e556c8bd46 | 11 | extern int NsHandleReceivedSolicitation (void (*traceback)(void), uint8_t* pType, uint8_t* pCode, void* pPacketRx, int sizeRx, void* pPacketTx, int* pSizeTx); |
andrewboyson | 45:3dd57903ec99 | 12 | extern int NsGetWaitingSolicitation (void* pPacket, int* pSize, uint8_t* pType, uint8_t* pCode); |