Andrew Boyson / net

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Tue Oct 24 07:01:35 2017 +0000
Revision:
46:40d33e9037e4
Child:
47:73af5c0b0dc2
Tidied up the RA module

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 46:40d33e9037e4 1 extern int NdpHopLimit;
andrewboyson 46:40d33e9037e4 2 extern bool NdpManagedAddressConfiguration;
andrewboyson 46:40d33e9037e4 3 extern bool NdpOtherConfiguration;
andrewboyson 46:40d33e9037e4 4 extern int NdpLifetime;
andrewboyson 46:40d33e9037e4 5 extern char NdpRouterMac[6];
andrewboyson 46:40d33e9037e4 6 extern int NdpPrefixLength;
andrewboyson 46:40d33e9037e4 7 extern uint8_t NdpPrefixLA;
andrewboyson 46:40d33e9037e4 8 extern uint32_t NdpPrefixValidLifetime;
andrewboyson 46:40d33e9037e4 9 extern uint32_t NdpPrefixPreferredLifetime;
andrewboyson 46:40d33e9037e4 10 extern char NdpPrefix[];
andrewboyson 46:40d33e9037e4 11 extern char NdpDnsServer[];
andrewboyson 46:40d33e9037e4 12 extern uint32_t NdpDnsLifetime;
andrewboyson 46:40d33e9037e4 13 extern uint32_t NdpElapsedTime;
andrewboyson 46:40d33e9037e4 14 extern int NdpMtu;
andrewboyson 46:40d33e9037e4 15
andrewboyson 46:40d33e9037e4 16 extern int NdpAddOptionSourceMac(char* p, char* pMac);
andrewboyson 46:40d33e9037e4 17 extern void NdpDecodeOptions(char* pData, int dataLength);
andrewboyson 46:40d33e9037e4 18 extern void NdpLogOptions (char* pData, int dataLength);
andrewboyson 46:40d33e9037e4 19
andrewboyson 46:40d33e9037e4 20 extern bool NdpIpNeedsToBeRouted(char* ip);
andrewboyson 46:40d33e9037e4 21