]>
Commit | Line | Data |
---|---|---|
52df8228 CF |
1 | /* |
2 | * IS-IS Rout(e)ing protocol - BFD support | |
52df8228 CF |
3 | * Copyright (C) 2018 Christian Franke |
4 | * | |
d04f9fbf CF |
5 | * This program is free software; you can redistribute it and/or modify it |
6 | * under the terms of the GNU General Public License as published by the Free | |
7 | * Software Foundation; either version 2 of the License, or (at your option) | |
8 | * any later version. | |
52df8228 | 9 | * |
d04f9fbf CF |
10 | * This program is distributed in the hope that it will be useful, but WITHOUT |
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
13 | * more details. | |
52df8228 CF |
14 | * |
15 | * You should have received a copy of the GNU General Public License along | |
16 | * with this program; see the file COPYING; if not, write to the Free Software | |
17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | */ | |
19 | #ifndef ISIS_BFD_H | |
20 | #define ISIS_BFD_H | |
21 | ||
215eccb0 CF |
22 | struct isis_circuit; |
23 | ||
24 | void isis_bfd_circuit_cmd(struct isis_circuit *circuit, int command); | |
25 | void isis_bfd_circuit_param_set(struct isis_circuit *circuit, | |
26 | uint32_t min_rx, uint32_t min_tx, | |
27 | uint32_t detect_mult, int defaults); | |
52df8228 CF |
28 | void isis_bfd_init(void); |
29 | ||
30 | #endif | |
31 |