summaryrefslogtreecommitdiffstats
path: root/proto/pipe/pipe.h
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1999-08-03 21:57:43 +0200
committerMartin Mares <mj@ucw.cz>1999-08-03 21:57:43 +0200
commit55e06729b173b24ce0c243db7e96094f10071eaf (patch)
tree7cdb035b95c8800231ea1350f4cff7a9f0033bde /proto/pipe/pipe.h
parentd7975d261f8a30efcdbd9fad6ba47419a6ac6c39 (diff)
downloadbird-55e06729b173b24ce0c243db7e96094f10071eaf.tar
bird-55e06729b173b24ce0c243db7e96094f10071eaf.zip
Forgot to do a `cvs add', grr.
Diffstat (limited to 'proto/pipe/pipe.h')
-rw-r--r--proto/pipe/pipe.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/proto/pipe/pipe.h b/proto/pipe/pipe.h
new file mode 100644
index 0000000..7e9cf8a
--- /dev/null
+++ b/proto/pipe/pipe.h
@@ -0,0 +1,23 @@
+/*
+ * 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 */
+};
+
+struct pipe_proto {
+ struct proto p;
+ struct rtable *peer;
+ struct pipe_proto *phantom;
+};
+
+#endif