blob: 693d08a253039ff9d059159cc0b44082863186e7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef NFTABLES_HASH_H
#define NFTABLES_HASH_H
extern struct expr *hash_expr_alloc(const struct location *loc,
uint32_t modulus,
bool seed_set, uint32_t seed,
uint32_t offset,
enum nft_hash_types type);
#endif /* NFTABLES_HASH_H */
|