Andrew Boyson / net

Dependents:   oldheating gps motorhome heating

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?

UserRevisionLine numberNew 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);