summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-11-10 18:55:16 +0100
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-11-27 15:16:30 +0100
commit8a71d93d85a6d180938366c2ad50ac9702721698 (patch)
tree36f2fa5b13cc5c2c6ee7e9cdc370f3e04d5eff6c /configure.ac
parenteigrpd: Start conversion to use route install failure callback (diff)
downloadfrr-8a71d93d85a6d180938366c2ad50ac9702721698.tar.xz
frr-8a71d93d85a6d180938366c2ad50ac9702721698.zip
sharpd: Add Super Happy Advanced Routing Protocol
Add a daemon that will allow us to test the zapi as well as test route install/removal times from the kernel. The current commands are: install route <starting ip address> nexthop <nexthop> (1-1000000) This command starts installing at <starting ip address>/32 (1-100000) routes that it auto-increments by 1 Installation start time is noted in the log and finish time is noted as well. remove routes <starting ip address> (1-1000000) This command removes routes at <starting ip address>/32 and removes (1-100000) routes created by the install route command. This code can be considered experimental and *is not* something that should be run in a production environment. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'configure.ac')
-rwxr-xr-xconfigure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index cdbd48fe3..16cc8901a 100755
--- a/configure.ac
+++ b/configure.ac
@@ -201,6 +201,7 @@ else
fi
fi
AM_CONDITIONAL([DEV_BUILD], [test "x$enable_dev_build" = "xyes"])
+AM_CONDITIONAL([SHARPD], [test "x$enable_dev_build" = "xyes"])
dnl always want these CFLAGS
AC_C_FLAG([-fno-omit-frame-pointer])