CVSROOT: /cvs Module name: src Changes by: clau...@cvs.openbsd.org 2023/01/12 10:35:52
Modified files: usr.sbin/bgpd : rde.c rde.h rde_filter.c rde_update.c Log message: Split rde_filterstate_prep() into three functions. - rde_filterstate_init(): initialize a filterstate to default values - rde_filterstate_copy(): copy from a filterstate into a new state object - rde_filterstate_prep(): set filtersate based on prefix passed as argument. This makes the code a bit easier to read. OK tb@