diff --git a/expr/expr.go b/expr/expr.go index 9a9ea76..c58308b 100644 --- a/expr/expr.go +++ b/expr/expr.go @@ -134,6 +134,8 @@ func exprsFromBytes(fam byte, ad *netlink.AttributeDecoder, b []byte) ([]Any, er e = &Reject{} case "masq": e = &Masq{} + case "hash": + e = &Hash{} } if e == nil { // TODO: introduce an opaque expression type so that users know