summaryrefslogtreecommitdiffstats
path: root/filter/filter.c
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2009-10-08 16:23:24 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2009-10-08 16:23:24 +0200
commit7ea5b00f42bd3d1fdafb0be349e3ebbcdf3ea466 (patch)
treeb61d47b763c823837fb3efe2b443348270e1ce06 /filter/filter.c
parent43c7a1ffa07dda2a9f37c046e1cd9a75242db2b7 (diff)
downloadbird-7ea5b00f42bd3d1fdafb0be349e3ebbcdf3ea466.tar
bird-7ea5b00f42bd3d1fdafb0be349e3ebbcdf3ea466.zip
First and last accessors to as_paths.
Diffstat (limited to 'filter/filter.c')
-rw-r--r--filter/filter.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/filter/filter.c b/filter/filter.c
index 8c0c4ab..7bcf383 100644
--- a/filter/filter.c
+++ b/filter/filter.c
@@ -353,6 +353,7 @@ interpret(struct f_inst *what)
struct f_val v1, v2, res;
unsigned u1, u2;
int i;
+ u32 as;
res.type = T_VOID;
if (!what)
@@ -727,6 +728,26 @@ interpret(struct f_inst *what)
default: bug( "Unknown prefix to conversion" );
}
break;
+ case P('a','f'): /* Get first ASN from AS PATH */
+ ONEARG;
+ if (v1.type != T_PATH)
+ runtime( "AS Path expected" );
+
+ as = 0;
+ as_path_get_last(v1.val.ad, &as); /* really last */
+ res.type = T_INT;
+ res.val.i = as;
+ break;
+ case P('a','l'): /* Get last ASN from AS PATH */
+ ONEARG;
+ if (v1.type != T_PATH)
+ runtime( "AS path expected" );
+
+ as = 0;
+ as_path_get_first(v1.val.ad, &as); /* really first */
+ res.type = T_INT;
+ res.val.i = as;
+ break;
case 'r':
ONEARG;
res = v1;