deno icon indicating copy to clipboard operation
deno copied to clipboard

Deno ListenOptions hostname does not bind to ipv6 by default

Open itspa1 opened this issue 5 years ago • 12 comments

When a hostname is not provided to a method the ListenOptions defaults it to 0.0.0.0, the process binds to only ipv4 address and for binding an ipv6 address it requires explicit mentioning via the hostname, for example, the hostname should be set to [::1] to bind it to an ipv6 address and so on. Need to check whether to bind the ipv6 address by default, or keep the same functionality as of now.

itspa1 avatar May 13 '20 13:05 itspa1