mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
aquatic_udp, aquatic_ws: bind to 0.0.0.0:3000 by default
This commit is contained in:
parent
c8105db053
commit
4216452fc9
3 changed files with 4 additions and 4 deletions
|
|
@ -111,7 +111,7 @@ impl Default for Config {
|
|||
impl Default for NetworkConfig {
|
||||
fn default() -> Self {
|
||||
Self {
|
||||
address: SocketAddr::from(([127, 0, 0, 1], 3000)),
|
||||
address: SocketAddr::from(([0, 0, 0, 0], 3000)),
|
||||
max_scrape_torrents: 255,
|
||||
max_response_peers: 255,
|
||||
peer_announce_interval: 60 * 15,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue