diff options
author | Martin Mares <mj@ucw.cz> | 2000-03-01 15:49:07 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-03-01 15:49:07 +0100 |
commit | 7293c5dd8175aac4650cb48c68c7dd278a74371e (patch) | |
tree | fd299303a66bb21dc91d56f39d7791772259e8be /nest/proto.c | |
parent | 62ab789de5f5ace97a93fce551469f0229ba8c92 (diff) | |
download | bird-7293c5dd8175aac4650cb48c68c7dd278a74371e.tar bird-7293c5dd8175aac4650cb48c68c7dd278a74371e.zip |
Added proto->hash_key which contains randomly generated hash key used
for calculation of hash functions depending on proto.
Diffstat (limited to 'nest/proto.c')
-rw-r--r-- | nest/proto.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nest/proto.c b/nest/proto.c index da75866..68975ad 100644 --- a/nest/proto.c +++ b/nest/proto.c @@ -89,6 +89,7 @@ proto_new(struct proto_config *c, unsigned size) p->in_filter = c->in_filter; p->out_filter = c->out_filter; p->min_scope = SCOPE_SITE; + p->hash_key = random_u32(); c->proto = p; return p; } |