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
action.h
- Committer:
- andrewboyson
- Date:
- 2021-04-18
- Revision:
- 195:bd5b123143ca
- Parent:
- 105:ef2dd21d808c
File content as of revision 195:bd5b123143ca:
#include <stdbool.h> extern int ActionMakeFromDestAndTrace(int dest, bool trace); extern int ActionGetDestPart (int action); extern bool ActionGetTracePart (int action); #define DO_NOTHING 0 #define UNICAST 1 #define UNICAST_DNS 2 #define UNICAST_DHCP 3 #define UNICAST_NTP 4 #define UNICAST_TFTP 5 #define UNICAST_USER 6 #define MULTICAST_NODE 7 #define MULTICAST_ROUTER 8 #define MULTICAST_MDNS 9 #define MULTICAST_LLMNR 10 #define MULTICAST_NTP 11 #define SOLICITED_NODE 12 #define BROADCAST 13 /* If DO_NOTHING then no other flags may be set. This allows action to be checked for DO_NOTHING without stripping the flags. Flags must be stripped before using the destination part. */