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/ndp.h@47:73af5c0b0dc2, 2017-10-26 (annotated)
- Committer:
- andrewboyson
- Date:
- Thu Oct 26 14:50:24 2017 +0000
- Revision:
- 47:73af5c0b0dc2
- Parent:
- 46:40d33e9037e4
- Child:
- 53:77f8a49adf89
Replaced a number of temporary buffers with direct writes to the Log or HTTP.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
andrewboyson | 46:40d33e9037e4 | 1 | extern int NdpHopLimit; |
andrewboyson | 47:73af5c0b0dc2 | 2 | extern bool NdpManagedConfiguration; |
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 | 47:73af5c0b0dc2 | 17 | extern int NdpAddOptionTargetMac(char* p, char* pMac); |
andrewboyson | 47:73af5c0b0dc2 | 18 | extern void NdpDecodeOptions (char* pData, int dataLength, char* srcMac, char* dstMac); |
andrewboyson | 47:73af5c0b0dc2 | 19 | extern void NdpLogOptionsVerbose(char* pData, int dataLength); |
andrewboyson | 47:73af5c0b0dc2 | 20 | extern void NdpLogOptionsQuiet (char* pData, int dataLength); |
andrewboyson | 46:40d33e9037e4 | 21 | |
andrewboyson | 46:40d33e9037e4 | 22 | extern bool NdpIpNeedsToBeRouted(char* ip); |
andrewboyson | 46:40d33e9037e4 | 23 | |
andrewboyson | 47:73af5c0b0dc2 | 24 | extern void NdpMain(); |