1 /*
2  *	BIRD -- Table-to-Table Routing Protocol a.k.a Pipe
3  *
4  *	(c) 1999 Martin Mares <mj@ucw.cz>
5  *
6  *	Can be freely distributed and used under the terms of the GNU GPL.
7  */
8 
9 #ifndef _BIRD_PIPE_H_
10 #define _BIRD_PIPE_H_
11 
12 struct pipe_config {
13   struct proto_config c;
14   struct rtable_config *peer;		/* Table we're connected to */
15 };
16 
17 struct pipe_proto {
18   struct proto p;
19   struct channel *pri;
20   struct channel *sec;
21 };
22 
23 #endif
24