This repository was archived by the owner on Apr 12, 2023. It is now read-only.
Tags: jcp19/oldVerifiedSCION
Tags
Fix deadlock in memrevcache (#1895) The current memrevcache code will deadlock on Insert, every time: Insert takes the write lock at the top, and later calls Get, which tries to get the read lock. This is an automatic deadlock. Also: - Fix some log identifiers in go PS handlers.
Fix overlay port handling for BR in topology. (#1799) It is (currently) illegal to specify `OverlayPort` in a BR entry, as the BR doesn't run on top of the dispatcher. Additionally, calling `OverlayAddr` on the internal address of a BR should set the overlay port appropriately (assuming a UDP-based overlay).