-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Closed
Labels
FrozenDueToAgeNeedsFixThe path to resolution is known, but the work has not been done.The path to resolution is known, but the work has not been done.OS-Plan9
Description
What version of Go are you using (go version
)?
$ go version go version devel +master Fri Jul 3 01:11:20 EDT 2020 plan9/386
What did you do?
Run:
package main
import (
"fmt"
"net"
)
func main() {
l, err := net.Listen("tcp4", "0.0.0.0:1234")
if err != nil {
panic(err)
}
defer l.Close()
fmt.Printf("Listen Addr: %v\n", l.Addr())
}
What did you expect to see?
As seen on Linux:
Listen Addr: 0.0.0.0:1234
What did you see instead?
Listen Addr: [::]:1234
The same issue exists for ListenPacket
on udp4
.
@gopherbot add labels OS-Plan9, NeedsFix
Metadata
Metadata
Assignees
Labels
FrozenDueToAgeNeedsFixThe path to resolution is known, but the work has not been done.The path to resolution is known, but the work has not been done.OS-Plan9