summaryrefslogtreecommitdiffstats
path: root/include/expression.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/expression.h')
-rw-r--r--include/expression.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/expression.h b/include/expression.h
index 3ae4e804..3a52a45c 100644
--- a/include/expression.h
+++ b/include/expression.h
@@ -61,6 +61,7 @@ enum expr_types {
EXPR_NUMGEN,
EXPR_HASH,
EXPR_RT,
+ EXPR_FIB,
};
enum ops {
@@ -180,6 +181,7 @@ enum expr_flags {
#include <payload.h>
#include <exthdr.h>
+#include <fib.h>
#include <numgen.h>
#include <meta.h>
#include <rt.h>
@@ -306,6 +308,11 @@ struct expr {
uint32_t mod;
uint32_t seed;
} hash;
+ struct {
+ /* EXPR_FIB */
+ uint32_t flags;
+ uint32_t result;
+ } fib;
};
};