mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-09 20:58:44 +00:00
c0adf7e9fc
The nest-protocol interaction is changed to better handle multitable protocols. Multitable protocols now declare that by 'multitable' field, which tells nest that a protocol handles things related to proto-rtable interaction (table locking, announce hook adding, reconfiguration of filters) itself. Filters and stats are moved to announce hooks, a protocol could have different filters and stats to different tables. The patch is based on one from Alexander V. Chernikov, thanks.
36 lines
855 B
C
36 lines
855 B
C
/*
|
|
* 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_
|
|
|
|
#define PIPE_OPAQUE 0
|
|
#define PIPE_TRANSPARENT 1
|
|
|
|
struct pipe_config {
|
|
struct proto_config c;
|
|
struct rtable_config *peer; /* Table we're connected to */
|
|
int mode; /* PIPE_OPAQUE or PIPE_TRANSPARENT */
|
|
};
|
|
|
|
struct pipe_proto {
|
|
struct proto p;
|
|
struct rtable *peer_table;
|
|
struct announce_hook *peer_ahook; /* Announce hook for direction peer->primary */
|
|
struct proto_stats peer_stats; /* Statistics for the direction peer->primary */
|
|
int mode; /* PIPE_OPAQUE or PIPE_TRANSPARENT */
|
|
};
|
|
|
|
|
|
extern struct protocol proto_pipe;
|
|
|
|
static inline int proto_is_pipe(struct proto *p)
|
|
{ return p->proto == &proto_pipe; }
|
|
|
|
#endif
|