File tree Expand file tree Collapse file tree 2 files changed +46
-158
lines changed Expand file tree Collapse file tree 2 files changed +46
-158
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ ``` cpp
2
+ struct flx_rule {
3
+ /**
4
+ * Increments when _ dirty is set and config is saved
5
+ * /
6
+ uint64_t _ revision;
7
+ /**
8
+ * Name of rule
9
+ * /
10
+ char * _ name;
11
+ /**
12
+ * Rule id
13
+ * /
14
+ uint32_t _ id;
15
+ /**
16
+ * Name of description
17
+ * /
18
+ char * _ desc;
19
+ /**
20
+ * Which node tpyes the rule applies to
21
+ * /
22
+ enum flx_node_filter _ node_filter;
23
+ /**
24
+ * What interfaces it applies to
25
+ * /
26
+ struct flx_iface_class _ class;
27
+ /**
28
+ * Is this a deprecated rule?
29
+ * Applies to rules targeting I Series filter rules are deprecated in 6.5.2.
30
+ * /
31
+ bool _ deprecated;
32
+ /**
33
+ * The parent pool. Lifetime owned by the parent pool (not the rule)
34
+ * /
35
+ struct flx_pool * _ pool;
36
+ };
37
+
38
+ struct flx_pool {
39
+ /**
40
+ * Provisioning rules: set of struct flx_rule
41
+ * /
42
+ struct flx_rule_set _ rules;
43
+
44
+ }
45
+
46
+ ```
You can’t perform that action at this time.
0 commit comments