Commit 517c8743 authored by Antonin Décimo's avatar Antonin Décimo Committed by Juliusz Chroboczek

Reserve DTLS configuration flag.

parent e988a382
......@@ -61,7 +61,7 @@ struct interface_conf {
#define CONFIG_YES 2
/* Interface is up. */
# define IF_UP (1 << 0)
#define IF_UP (1 << 0)
/* Interface known to be wireless, unknown otherwise. */
#define IF_WIRELESS (1<<1)
/* Apply split horizon. */
......@@ -76,6 +76,8 @@ struct interface_conf {
#define IF_TIMESTAMPS (1 << 6)
/* Remain compatible with RFC 6126. */
#define IF_RFC6126 (1 << 7)
/* Use Babel over DTLS on this interface. */
#define IF_DTLS (1 << 9)
/* Only INTERFERING can appear on the wire. */
#define IF_CHANNEL_UNKNOWN 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment