-
Notifications
You must be signed in to change notification settings - Fork 273
Support DNS hostnames in node announcements #2234
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
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
092d776
Support DNS hostnames and deprecate Torv2 addresses in node announcem…
remyers 9d91c5a
Removed Tor v2 deprecation note now in another PR
remyers a9429ba
Fixed terse brackets of if statements
remyers 34e6bef
Move address validateAddresses logic to NodeParams
remyers ec79f2e
Added socks5.use-for-dnshostnames param
remyers 160db37
Inline dnshostname ascii codec instead of misnamed punycode codec
remyers fd32764
Use standard Java functions to detect IPv4/v6 addresses
remyers ff2ac04
Fixed some code/formatting nits
remyers fbf5529
List and verify a dnshostname node added to the db
remyers 76d24d2
fixup! Use standard Java functions to detect IPv4/v6 addresses
remyers 505c7cb
Add assertions to verify that dnshostname is correctly parsed
remyers a8e58ee
fixup! Use standard Java functions to detect IPv4/v6 addresses
remyers e248b7c
Fixed a couple of more formatting nits
remyers bb13918
Merge branch 'master' into dnshostnames
remyers ad966d0
Fix "get proxy address" test failure because of brackets around IPv6 …
remyers c2df6d2
Fix test failures caused by fromParts() no longer resolving "localhos…
remyers 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 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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -137,6 +137,22 @@ class PeerSpec extends TestKitBaseClass with FixtureAnyFunSuiteLike with Paralle | |
mockServer.close() | ||
} | ||
|
||
test("return connection failure for a peer with an invalid dns host name") { f => | ||
import f._ | ||
|
||
// this actor listens to connection requests and creates connections | ||
system.actorOf(ClientSpawner.props(nodeParams.keyPair, nodeParams.socksProxy_opt, nodeParams.peerConnectionConf, TestProbe().ref, TestProbe().ref)) | ||
|
||
val invalidDnsHostname_opt = NodeAddress.fromParts("eclair.invalid", 9735).toOption | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note: the .invalid top level domain will never resolve.
t-bast marked this conversation as resolved.
Show resolved
Hide resolved
|
||
assert(invalidDnsHostname_opt.nonEmpty) | ||
assert(invalidDnsHostname_opt.get == DnsHostname("eclair.invalid", 9735)) | ||
|
||
val probe = TestProbe() | ||
probe.send(peer, Peer.Init(Set.empty)) | ||
probe.send(peer, Peer.Connect(remoteNodeId, invalidDnsHostname_opt, probe.ref, isPersistent = true)) | ||
probe.expectMsgType[PeerConnection.ConnectionResult.ConnectionFailed] | ||
} | ||
|
||
test("successfully reconnect to peer at startup when there are existing channels", Tag("auto_reconnect")) { f => | ||
import f._ | ||
|
||
|
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
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.
Uh oh!
There was an error while loading. Please reload this page.