Simple setup, on the same system I do a ..
...~>wget localhost:8000/foo
Resolving localhost... ::1, 127.0.0.1
Connecting to localhost|::1|:8000... connected.
HTTP request sent, awaiting response... 404 File not found
2013-09-11 17:18:15 ERROR 404: File not found.
func main() {
fmt.Println(response,err);
}
Should not GO be returning a 404 in the response ? If I change the server to listen on port 80 then the response is as expected (a 404 response object and a nil error) so it almost seems like go is blocked on some ports ?
Nz