diff options
author | Maria Matejka <mq@jmq.cz> | 2021-11-23 12:06:27 +0000 |
---|---|---|
committer | Maria Matejka <mq@jmq.cz> | 2021-11-23 12:06:27 +0000 |
commit | 5395880908fdb264b5b78ccc455dced49eb29915 (patch) | |
tree | 5cfece0f526f859f49c409eaa14c653b4860c7c5 /proto | |
parent | 821344c781a99a4f559949a7497617b64c061c82 (diff) |
Fixed pipe reload/refeed
Diffstat (limited to 'proto')
-rw-r--r-- | proto/pipe/pipe.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/proto/pipe/pipe.c b/proto/pipe/pipe.c index a30da0e2..270f7b92 100644 --- a/proto/pipe/pipe.c +++ b/proto/pipe/pipe.c @@ -108,6 +108,23 @@ pipe_reload_routes(struct channel *C) channel_request_feeding((C == p->pri) ? p->sec : p->pri); } +static void +pipe_feed_begin(struct channel *C, int refeeding UNUSED) +{ + struct pipe_proto *p = (void *) C->proto; + struct channel *dst = (C == p->pri) ? p->sec : p->pri; + + channel_refresh_begin(dst); +} + +static void +pipe_feed_end(struct channel *C) +{ + struct pipe_proto *p = (void *) C->proto; + struct channel *dst = (C == p->pri) ? p->sec : p->pri; + + channel_refresh_end(dst); +} static void pipe_postconfig(struct proto_config *CF) @@ -178,6 +195,8 @@ pipe_init(struct proto_config *CF) P->rt_notify = pipe_rt_notify; P->preexport = pipe_preexport; P->reload_routes = pipe_reload_routes; + P->feed_begin = pipe_feed_begin; + P->feed_end = pipe_feed_end; p->rl_gen = (struct tbf) TBF_DEFAULT_LOG_LIMITS; |