diff options
| author | GalaxyGorilla <sascha@netdef.org> | 2020-07-10 11:26:55 +0000 | 
|---|---|---|
| committer | GalaxyGorilla <sascha@netdef.org> | 2020-07-10 11:28:43 +0000 | 
| commit | 4affdba79e306d3eab88af0ed63a7ca38ceb77f9 (patch) | |
| tree | 4fc8adba02c7c0a9fa4eea1c48eecd1fa527e867 /isisd/isis_bfd.h | |
| parent | 4030687aab47da7ea11ff2420fdda016e0e7f9d5 (diff) | |
 *: add BFD profile support for IS-IS
BFD profiles can now be used on the interface level like this:
	interface eth1
	  ip router isis 1
          isis bfd
          isis bfd profile default
Here the 'default' profile needs to be specified as usual in the
bfdd configuration.
Signed-off-by: GalaxyGorilla <sascha@netdef.org>
Diffstat (limited to 'isisd/isis_bfd.h')
| -rw-r--r-- | isisd/isis_bfd.h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/isisd/isis_bfd.h b/isisd/isis_bfd.h index 3193f16061..6ce630688c 100644 --- a/isisd/isis_bfd.h +++ b/isisd/isis_bfd.h @@ -22,9 +22,9 @@  struct isis_circuit;  void isis_bfd_circuit_cmd(struct isis_circuit *circuit, int command); -void isis_bfd_circuit_param_set(struct isis_circuit *circuit, -				uint32_t min_rx, uint32_t min_tx, -				uint32_t detect_mult, int defaults); +void isis_bfd_circuit_param_set(struct isis_circuit *circuit, uint32_t min_rx, +				uint32_t min_tx, uint32_t detect_mult, +				const char *profile, int defaults);  void isis_bfd_init(void);  #endif  | 
