diff options
Diffstat (limited to 'isisd/isis_bfd.h')
-rw-r--r-- | isisd/isis_bfd.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/isisd/isis_bfd.h b/isisd/isis_bfd.h new file mode 100644 index 0000000..3cf0ed5 --- /dev/null +++ b/isisd/isis_bfd.h @@ -0,0 +1,16 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/* + * IS-IS Rout(e)ing protocol - BFD support + * Copyright (C) 2018 Christian Franke + */ +#ifndef ISIS_BFD_H +#define ISIS_BFD_H + +struct isis_circuit; +struct event_loop; + +void isis_bfd_circuit_cmd(struct isis_circuit *circuit); +void isis_bfd_init(struct event_loop *tm); + +#endif + |