From: Maria Matejka Date: Mon, 18 Oct 2021 19:22:58 +0000 (+0200) Subject: Pipe runs in parallel. X-Git-Tag: 3.0-alpha0~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f3fa1623f66acd24c227cf0cc5a4af2f5133b6c;p=thirdparty%2Fbird.git Pipe runs in parallel. --- diff --git a/nest/proto.c b/nest/proto.c index 4ae0cbfd4..623585f1d 100644 --- a/nest/proto.c +++ b/nest/proto.c @@ -1413,6 +1413,7 @@ proto_event(void *ptr) { if (p->proto == &proto_unix_iface) if_flush_ifaces(p); + p->do_stop = 0; } diff --git a/proto/pipe/config.Y b/proto/pipe/config.Y index c869de9f7..fc08445ff 100644 --- a/proto/pipe/config.Y +++ b/proto/pipe/config.Y @@ -25,6 +25,7 @@ proto: pipe_proto '}' { this_channel = NULL; } ; pipe_proto_start: proto_start PIPE { this_proto = proto_config_new(&proto_pipe, $1); + this_proto->loop_order = DOMAIN_ORDER(proto); PIPE_CFG->max_generation = 16; } proto_name