summaryrefslogtreecommitdiffstats
path: root/proto/pipe/pipe.h
blob: 368ba41ba63b814ec2d1f63b5948e568f464f1dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 *	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;
  int mode;				/* PIPE_OPAQUE or PIPE_TRANSPARENT */
  struct pipe_proto *phantom;
};

#endif