diff options
author | Lee Clagett <code@leeclagett.com> | 2024-01-29 21:10:00 -0500 |
---|---|---|
committer | Lee *!* Clagett <code@leeclagett.com> | 2024-01-30 13:36:21 -0500 |
commit | 98ee46f2491dc6252040d96df5a17a237f53ebf7 (patch) | |
tree | d534260e89fbadc155199a3a3bbd096152380686 /src/net/parse.cpp | |
parent | Merge pull request #9080 (diff) | |
download | monero-98ee46f2491dc6252040d96df5a17a237f53ebf7.tar.xz |
Disable/fix ports with I2P
Diffstat (limited to 'src/net/parse.cpp')
-rw-r--r-- | src/net/parse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/parse.cpp b/src/net/parse.cpp index 92be492a3..b76aefad7 100644 --- a/src/net/parse.cpp +++ b/src/net/parse.cpp @@ -81,7 +81,7 @@ namespace net if (host_str_ref.ends_with(".onion")) return tor_address::make(address, default_port); if (host_str_ref.ends_with(".i2p")) - return i2p_address::make(address, default_port); + return i2p_address::make(address); boost::system::error_code ec; boost::asio::ip::address_v6 v6 = boost::asio::ip::address_v6::from_string(host_str, ec); |