CVSROOT: /cvs Module name: src Changes by: clau...@cvs.openbsd.org 2025/02/26 05:53:21
Modified files: usr.sbin/bgpd : session.c Log message: Move the logic for throttling peers in the RDE up to the main poll loop. The session engine informs the RDE via IMSG_XOFF / IMSG_XON when a peer becomes too backlogged. The RDE will then pause sending more updates for that peer until the condition clears. Doing this once at the start of the poll loop is good enough. OK tb@