Skip to content

Commit

Permalink
Finish hostname resolution (#1119)
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n authored Jun 6, 2024
1 parent 82738a2 commit b534bb4
Show file tree
Hide file tree
Showing 6 changed files with 261 additions and 16 deletions.
164 changes: 162 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ flatbuffers = "24.3"
futures = "0.3"
semver = { version = "1", features = ["serde"] }
headers = "0.4"
hickory-resolver = { version = "0.24", features = ["dns-over-rustls"] }
itertools = "0.13"
notify = "6"
once_cell = "1"
Expand Down
2 changes: 1 addition & 1 deletion crates/core/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ const fn default_local_address() -> IpAddr {
}

#[inline]
const fn default_gateway_port() -> u16 {
pub(crate) const fn default_gateway_port() -> u16 {
50509
}

Expand Down
Loading

0 comments on commit b534bb4

Please sign in to comment.