mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-27 00:31:32 +00:00

Done with a combination of regex'ing and banging my head against a wall. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
17 lines
329 B
C
17 lines
329 B
C
// 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 thread_master;
|
|
|
|
void isis_bfd_circuit_cmd(struct isis_circuit *circuit);
|
|
void isis_bfd_init(struct thread_master *tm);
|
|
|
|
#endif
|
|
|