diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2016-09-04 09:41:04 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2016-09-04 09:41:04 +0000 |
commit | 39e44fa02d1b9b72516cf71ebd2f377c7bac55ad (patch) | |
tree | 4a463228be69b9fdc30f48d83b856a072e9f62ea /sbin/route/keywords.h | |
parent | 5c2a20da30cf869b4ee9f81f49cfd35baa81c045 (diff) |
Make it possible to set the RTF_BFD flag in a change request. Also add a
nobfd option to turn it off again. While here also print the fmask in the
rtmsg dump so it is possible to figure out why something happens (or not).
OK phessler@
Diffstat (limited to 'sbin/route/keywords.h')
-rw-r--r-- | sbin/route/keywords.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sbin/route/keywords.h b/sbin/route/keywords.h index 8345534d493..0e03f7931bb 100644 --- a/sbin/route/keywords.h +++ b/sbin/route/keywords.h @@ -1,4 +1,4 @@ -/* $OpenBSD: keywords.h,v 1.32 2016/09/03 14:23:14 phessler Exp $ */ +/* $OpenBSD: keywords.h,v 1.33 2016/09/04 09:41:03 claudio Exp $ */ /* WARNING! This file was generated by keywords.sh */ @@ -46,6 +46,7 @@ enum { K_MTU, K_NET, K_NETMASK, + K_NOBFD, K_NOJUMBO, K_NOSTATIC, K_OSPF, @@ -107,6 +108,7 @@ struct keytab keywords[] = { { "mtu", K_MTU }, { "net", K_NET }, { "netmask", K_NETMASK }, + { "nobfd", K_NOBFD }, { "nojumbo", K_NOJUMBO }, { "nostatic", K_NOSTATIC }, { "ospf", K_OSPF }, |