mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-14 18:07:06 +00:00
15 lines
189 B
Plaintext
15 lines
189 B
Plaintext
@@
|
|
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)
|
|
)
|