1999-08-03 19:57:43 +00:00
|
|
|
/*
|
|
|
|
* BIRD -- Table-to-Table Routing Protocol a.k.a Pipe
|
|
|
|
*
|
|
|
|
* (c) 1999 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_PIPE_H_
|
|
|
|
#define _BIRD_PIPE_H_
|
|
|
|
|
|
|
|
struct pipe_config {
|
|
|
|
struct proto_config c;
|
|
|
|
struct rtable_config *peer; /* Table we're connected to */
|
2022-06-22 10:45:42 +00:00
|
|
|
const net_addr *in_subprefix;
|
2020-05-01 20:26:24 +00:00
|
|
|
u8 max_generation;
|
1999-08-03 19:57:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct pipe_proto {
|
|
|
|
struct proto p;
|
2016-01-26 10:48:58 +00:00
|
|
|
struct channel *pri;
|
|
|
|
struct channel *sec;
|
2020-05-01 20:26:24 +00:00
|
|
|
struct tbf rl_gen;
|
1999-08-03 19:57:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|