mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-26 11:41:54 +00:00
6702b7ad74
Asynchronous periodic mrt table dumps of routes configuration in bird.conf: mrtdump routes { [ filename "<format>"; ] [ table <name>|"<wildcard name>"; ] [ period <num>; ] [ filter <filter>|where <condition>; ] } Synchronous mrt table dumps of routes in BIRD client: mrtdump routes [table <name>|"<wildcard name>"] [to "<filename format>"] [filter <filter>|where <condition>]
12 lines
284 B
C
12 lines
284 B
C
#ifndef _BIRD_BGP_MRT_H_
|
|
#define _BIRD_BGP_MRT_H_
|
|
|
|
#include "nest/route.h"
|
|
#include "nest/mrtdump.h"
|
|
#include "bgp.h"
|
|
|
|
void bgp_mrt_table_dump_step(struct mrt_table_dump_ctx *state);
|
|
void bgp_mrt_peer_index_table_dump(struct mrt_table_dump_ctx *state);
|
|
|
|
#endif /* _BIRD_BGP_MRT_H_ */
|