mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 04:08:42 +00:00
Added examples of pairs and prefixes
This commit is contained in:
parent
c9f8c1a855
commit
4872cef4df
10
bird.conf
10
bird.conf
@ -20,7 +20,9 @@ function callme (int arg1; int arg2;)
|
||||
}
|
||||
|
||||
function startup ()
|
||||
int i;
|
||||
int i;
|
||||
prefix px;
|
||||
|
||||
{
|
||||
print "Bird filter language: selftesting...";
|
||||
i = 4;
|
||||
@ -42,6 +44,10 @@ int i;
|
||||
print "IPsets: true = " 1.2.3.4 ~ [ 1.2.3.3..1.2.3.5 ];
|
||||
print " false = " 1.2.3.4 ~ [ 1.2.3.3, 1.2.3.5 ];
|
||||
|
||||
print "Testing prefixes: 1.2.3.4/18 = " 1.2.3.4/18;
|
||||
print "Testing pairs: (1,2) = " (1,2);
|
||||
|
||||
print "Testing functions...";
|
||||
callme ( 1, 2, );
|
||||
callme ( 2, 2, );
|
||||
callme ( 3, 2, );
|
||||
@ -49,7 +55,7 @@ int i;
|
||||
callme ( 7, 2, );
|
||||
|
||||
print "done";
|
||||
# quitbird;
|
||||
quitbird;
|
||||
# print "*** FAIL: this is unreachable";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user