summaryrefslogtreecommitdiffstats
path: root/tools/coccinelle/replace_bgp_flag_functions.cocci
blob: 3064fc02677726a6a2f34a2f4aaef226a0a85dd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@@
expression e1, e2;
@@

(
- bgp_flag_check(e1, e2)
+ CHECK_FLAG(e1->flags, e2)
|
- bgp_flag_set(e1, e2)
+ SET_FLAG(e1->flags, e2)
|
- bgp_flag_unset(e1, e2)
+ UNSET_FLAG(e1->flags, e2)
)