From: claudio Date: Sun, 23 Apr 2023 11:39:51 +0000 (+0000) Subject: For FLOWSPEC_SHOW conver the AID form regular inet/inet6 to flowspec versions. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=890b8b5d4fd4b38a37ecfe4fc37dd023556c6a63;p=openbsd For FLOWSPEC_SHOW conver the AID form regular inet/inet6 to flowspec versions. OK tb@ --- diff --git a/usr.sbin/bgpctl/bgpctl.c b/usr.sbin/bgpctl/bgpctl.c index e1304a9e4bb..b7b484d4662 100644 --- a/usr.sbin/bgpctl/bgpctl.c +++ b/usr.sbin/bgpctl/bgpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpctl.c,v 1.293 2023/04/21 10:49:01 claudio Exp $ */ +/* $OpenBSD: bgpctl.c,v 1.294 2023/04/23 11:39:51 claudio Exp $ */ /* * Copyright (c) 2003 Henning Brauer @@ -386,7 +386,20 @@ main(int argc, char *argv[]) break; case FLOWSPEC_SHOW: memset(&ribreq, 0, sizeof(ribreq)); - ribreq.aid = res->aid; + switch (res->aid) { + case AID_INET: + ribreq.aid = AID_FLOWSPECv4; + break; + case AID_INET6: + ribreq.aid = AID_FLOWSPECv6; + break; + case AID_UNSPEC: + ribreq.aid = res->aid; + break; + default: + errx(1, "flowspec family %s currently not supported", + aid2str(res->aid)); + } strlcpy(ribreq.rib, res->rib, sizeof(ribreq.rib)); imsg_compose(ibuf, IMSG_CTL_SHOW_FLOWSPEC, 0, 0, -1, &ribreq, sizeof(ribreq));