summaryrefslogtreecommitdiffstats
path: root/filter/test.conf
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>2000-04-12 14:10:37 +0200
committerPavel Machek <pavel@ucw.cz>2000-04-12 14:10:37 +0200
commit77de68825caae7a9cb1275b0020e49fa9cb27e29 (patch)
tree09da4aad6cd49926b4c9b17ddc25bb9fc5bee450 /filter/test.conf
parent78c6217c1e9f8a46026cecf6a6369b72d5d883b0 (diff)
downloadbird-77de68825caae7a9cb1275b0020e49fa9cb27e29.tar
bird-77de68825caae7a9cb1275b0020e49fa9cb27e29.zip
BGP_PATH masks now actually work as data type.
Diffstat (limited to 'filter/test.conf')
-rw-r--r--filter/test.conf10
1 files changed, 10 insertions, 0 deletions
diff --git a/filter/test.conf b/filter/test.conf
index 1677cd2..cc62cd1 100644
--- a/filter/test.conf
+++ b/filter/test.conf
@@ -29,6 +29,14 @@ function fifteen()
return 15;
}
+function paths()
+bgp_path p;
+{
+ print "Testing paths";
+ p = / 1 2 3 4 /;
+ print p;
+}
+
function startup()
int i;
prefix px;
@@ -73,6 +81,8 @@ ip p;
i = fifteen();
print "Testing function calls: 15 = ", i;
+ paths();
+
print "done";
quitbird;
# print "*** FAIL: this is unreachable";