CVSROOT: /cvs Module name: src Changes by: clau...@cvs.openbsd.org 2024/01/18 02:39:36
Modified files: usr.sbin/bgpd : rtr.c Log message: Fix IMSG_RECONF_ASPA handling. The rde did not expect what the rtr process was sending and hit the error path because of that. Since the encoding as two uint32_t in rtr.c is awkward use the same way that the parent is sending the aspa sets. This uses a local copy so that the included expire filed is forced to 0 (the RDE does not use that field). OK tb@