Merged
Conversation
f1f532c to
70f1a0b
Compare
|
The latest updates on your projects. Learn more about Vercel for GitHub.
2 Skipped Deployments
|
651dba9 to
03d3682
Compare
7a1742d to
4aa1021
Compare
4aa1021 to
88bf50d
Compare
removed unused imports gateway probe fixes PSK injection + test fixes cleanup minus PSK injection combine with lp reg moved authenticator peer registration to centralised location bugfix: ensure IpPool never allocates gateway ip ip pool allocation tests
88bf50d to
c6e2d0e
Compare
simonwicky
requested changes
Feb 4, 2026
gateway/src/node/internal_service_providers/authenticator/mixnet_listener.rs
Show resolved
Hide resolved
simonwicky
approved these changes
Feb 5, 2026
2edc82a to
f9f97d6
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
this PR fixes the
IpPooland more importantly unifies the process of Peer registration between the Authenticator and LP through the now sharedLpRegistrator.In general the registration has the following structure:
1.1. We check if the peer has already registered before -> if so, we returned the past information
1.2. We check if the peer already has a pending registration -> if so, we return the past information
1.3. We pre-allocated [
nym_wireguard::ip_pool::IpPair] and save time-sensitive pending registration. If it does not complete within specified time interval, the information is going to get removed.This change is