CVS: cvs.openbsd.org: src
Claudio Jeker <[email protected]> Thu, 6 Aug 2026 07:18:22 -0600 (MDT)
| Newsgroups | gmane.os.openbsd.cvs |
|---|---|
| Message-ID | <[email protected]> |
CVSROOT: /cvs Module name: src Changes by: [email protected] 2026/08/06 07:18:22 Modified files: usr.sbin/rpki-client: rrdp_notification.c Log message: Limit the range of deltas added to the queue. Instead of storing all deltas larger then our minimum serial number store only deltas that are either in the range [min_serial ... min_serial + MAX_RRDP_DELTAS] or [current serial - MAX_RRDP_DELTAS ... current serial] where current serial is the newest announced RRDP serial. The two ranges normally overlap but if they don't then it limits the number of elements in the delta queue to 2 * MAX_RRDP_DELTAS. The first range is used to validate the hashes stored in the RRDP state file against the notification.xml contents. The second range covers the deltas we are willing to walk to sync the repo -- it also is the new set of delta hashes that will be stored in the state file. Reported by Xin Wang OK tb@