diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-04-17 13:34:38 +0200 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-04-17 13:34:38 +0200 |
commit | 9c400ec9dd0ee74f1f350ead87dcd7366dbab7b1 (patch) | |
tree | 8a610e3d07c2004248bd0b247c7a7b2d9af1585d /nest/attrs.h | |
parent | e3558ab14ee60c8c9792bc3ed54d9f0c3eaa8ea8 (diff) | |
download | bird-9c400ec9dd0ee74f1f350ead87dcd7366dbab7b1.tar bird-9c400ec9dd0ee74f1f350ead87dcd7366dbab7b1.zip |
Int sets moved to core. It is now possible to have variable of type clist.
Diffstat (limited to 'nest/attrs.h')
-rw-r--r-- | nest/attrs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nest/attrs.h b/nest/attrs.h index ede152c..630550f 100644 --- a/nest/attrs.h +++ b/nest/attrs.h @@ -29,5 +29,9 @@ int as_path_match(struct adata *path, struct f_path_mask *mask); /* a-set.c */ void int_set_format(struct adata *set, byte *buf, unsigned int size); +struct adata *int_set_add(struct linpool *pool, struct adata *list, u32 val); +int int_set_contains(struct adata *list, u32 val); +struct adata *int_set_del(struct linpool *pool, struct adata *list, u32 val); + #endif |