summaryrefslogtreecommitdiffstats
path: root/nest/attrs.h
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-04-17 09:53:29 +0200
committerMartin Mares <mj@ucw.cz>2000-04-17 09:53:29 +0200
commitc0668f36967ce651e452a476b786b7604038a556 (patch)
tree37ce9ac274e1badc32f0e7badc4d6e8dd2e78213 /nest/attrs.h
parentebff007f08965d83dba5840ee02171d09ac2598d (diff)
downloadbird-c0668f36967ce651e452a476b786b7604038a556.tar
bird-c0668f36967ce651e452a476b786b7604038a556.zip
Created nest/a-path.c and a-set.c which should contain general operations
on AS paths and community sets. Moved as_path_prepend() there. Pavel, please move the other functions as well.
Diffstat (limited to 'nest/attrs.h')
-rw-r--r--nest/attrs.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/nest/attrs.h b/nest/attrs.h
new file mode 100644
index 0000000..c1a96f9
--- /dev/null
+++ b/nest/attrs.h
@@ -0,0 +1,16 @@
+/*
+ * BIRD Internet Routing Daemon -- Attribute Operations
+ *
+ * (c) 2000 Martin Mares <mj@ucw.cz>
+ *
+ * Can be freely distributed and used under the terms of the GNU GPL.
+ */
+
+#ifndef _BIRD_ATTRS_H_
+#define _BIRD_ATTRS_H_
+
+/* a-path.c */
+
+struct adata *as_path_prepend(struct linpool *pool, struct adata *olda, int as);
+
+#endif