From: Martin Mares Date: Mon, 17 Jan 2000 00:20:45 +0000 (+0000) Subject: Pipe protocol supports reconfiguration. X-Git-Tag: v1.2.0~1358 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0ec90e9fc6f6bec2d0b64f6b9711a6d3edb4bd52;p=thirdparty%2Fbird.git Pipe protocol supports reconfiguration. --- diff --git a/proto/pipe/pipe.c b/proto/pipe/pipe.c index c6a8317d7..f439a1543 100644 --- a/proto/pipe/pipe.c +++ b/proto/pipe/pipe.c @@ -152,11 +152,21 @@ pipe_get_status(struct proto *P, byte *buf) bsprintf(buf, "-> %s", p->peer->name); } +static int +pipe_reconfigure(struct proto *p, struct proto_config *new) +{ + struct pipe_config *o = (struct pipe_config *) p->cf; + struct pipe_config *n = (struct pipe_config *) new; + + return o->peer == n->peer; +} + struct protocol proto_pipe = { name: "Pipe", postconfig: pipe_postconfig, init: pipe_init, start: pipe_start, shutdown: pipe_shutdown, + reconfigure: pipe_reconfigure, get_status: pipe_get_status, };