diff options
author | Maria Matejka <mq@ucw.cz> | 2021-09-29 17:59:50 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2021-11-22 19:05:44 +0100 |
commit | 18f66055e3f7eec2108e18679652aee47f5de6b2 (patch) | |
tree | c2195765f7444c838e48a5827bf20b7d406f8ab0 /nest/proto.c | |
parent | 038fcf1c8b7716415235384de5dc47d07dc45b85 (diff) |
Global table update pool removed
Diffstat (limited to 'nest/proto.c')
-rw-r--r-- | nest/proto.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nest/proto.c b/nest/proto.c index 930fad1d..f55f347a 100644 --- a/nest/proto.c +++ b/nest/proto.c @@ -245,6 +245,8 @@ proto_add_channel(struct proto *p, struct channel_config *cf) channel_init_limit(c, &c->in_limit, PLD_IN, &cf->in_limit); channel_init_limit(c, &c->out_limit, PLD_OUT, &cf->out_limit); + c->rte_update_pool = lp_new_default(proto_pool); + c->net_type = cf->net_type; c->ra_mode = cf->ra_mode; c->preference = cf->preference; |