forked from libp2p/rust-libp2p
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
identify detects if address translation is required #4
Merged
umgefahren
merged 5 commits into
umgefahren:transport-redesign
from
stormshield-ebzh:transport-redesign-address-translation
Jun 1, 2024
Merged
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
e41f667
identify detects if address translation is required
stormshield-ebzh 235447b
homogeneize fully-p2p-qualified addresses to avoid double probe
stormshield-ebzh 6103cd8
feat(nat): get rid of Transport::address_translation
stormshield-ebzh 4b16e42
Thomas remarks
stormshield-ebzh 0f538f3
removed Transport::address_translation and moved generic address_tran…
stormshield-ebzh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not a fan of this API change. It feels like we are passing a lot of information back and forth here. If we don't actually need any state from the TCP transport to do the translation, perhaps this is the time to just remove
Transport::address_translation
entirely?AFAIK, all transports just delegate to the generic
address_translation
function anyway! Plus, all behaviours get told about all listen addresses. So, can we instead:address_translation
function from there (we might even be able to move it to the identify behaviour which would have the added benefit of it being removed from the public API oflibp2p-core
!)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your advise Thomas !
I implemented the address translation without using
Transport::address_translation
(I did not removed yet
Transport::address_translation
but it is not used anymore)is_addr_tcp
andis_quic_addr
taken from the tcp/quic transport implementations)address_translation
functionToSwarm::NewExternalAddrCandidate
with the translated address, otherwise emit theToSwarm::NewExternalAddrCandidate
with the observed address,If this approach is ok, i will :
Transport::address_translation
functionis_addr_tcp
andis_quic_addr
for the transportsaddress_translation
inlib_p2p_core
because used inmdns
(but not for nat purpose)