diff options
author | nokoe <nokoe@mailbox.org> | 2024-09-30 20:52:35 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2024-09-30 20:52:35 +0200 |
commit | 288459e0f33364191b1efdb9ed6ad38bcc99acd2 (patch) | |
tree | 61f6afca27e3d345430fd99c3fb77323ac3c4595 | |
parent | 98d4e4bf51f197028c7556f1af82addabf359e10 (diff) | |
download | hurrycurry-288459e0f33364191b1efdb9ed6ad38bcc99acd2.tar hurrycurry-288459e0f33364191b1efdb9ed6ad38bcc99acd2.tar.bz2 hurrycurry-288459e0f33364191b1efdb9ed6ad38bcc99acd2.tar.zst |
use `[::]:27032` as default address
-rw-r--r-- | server/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/main.rs b/server/src/main.rs index 65c0e89a..2d5ba390 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -53,7 +53,7 @@ pub(crate) struct Args { #[arg(short, long)] data_dir: Option<PathBuf>, /// Set the address on which the server should listen - #[arg(short, long, default_value = "0.0.0.0:27032")] + #[arg(short, long, default_value = "[::]:27032")] listen: SocketAddr, /// Enables submissions to the public server registry #[arg(long)] |