fix: Normalise local transport address to loopback
Change default transport address from 0.0.0.0 to 127.0.0.1.
This commit is contained in:
parent
8afad9843f
commit
033990010f
|
@ -97,8 +97,8 @@ type
|
|||
# behind a NAT
|
||||
listenIp* {.
|
||||
desc: "The public IP"
|
||||
defaultValue: ValidIpAddress.init("0.0.0.0")
|
||||
defaultValueDesc: "0.0.0.0"
|
||||
defaultValue: ValidIpAddress.init(IPv4_loopback())
|
||||
defaultValueDesc: "127.0.0.1"
|
||||
abbr: "i"
|
||||
name: "listen-ip" }: ValidIpAddress
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 9a872518d621bf8b390f88cd65617bca6aca1d2d
|
||||
Subproject commit 1d96f28c743fdb6922a4ec5f9c6fdd53f4f9df38
|
Loading…
Reference in New Issue