blob: 30248ccececea11a746f46075f182d1b45269613 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 thread_master;
void isis_bfd_circuit_cmd(struct isis_circuit *circuit);
void isis_bfd_init(struct thread_master *tm);
#endif
|