From 9647b4ffda3d9dc6eb14cd79c21300df4f6fd434 Mon Sep 17 00:00:00 2001 From: claudio Date: Tue, 27 Apr 2021 15:34:18 +0000 Subject: [PATCH] Add IMSG_CTL_SHOW_RTR to the list of restriced control messages. --- usr.sbin/bgpd/control.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr.sbin/bgpd/control.c b/usr.sbin/bgpd/control.c index 1e7bbda3b9d..844a05e5b25 100644 --- a/usr.sbin/bgpd/control.c +++ b/usr.sbin/bgpd/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.104 2021/02/16 08:29:16 claudio Exp $ */ +/* $OpenBSD: control.c,v 1.105 2021/04/27 15:34:18 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer @@ -281,6 +281,7 @@ control_dispatch_msg(struct pollfd *pfd, struct peer_head *peers) case IMSG_CTL_SHOW_RIB: case IMSG_CTL_SHOW_RIB_PREFIX: case IMSG_CTL_SHOW_SET: + case IMSG_CTL_SHOW_RTR: break; default: /* clear imsg type to prevent processing */ -- 2.20.1