schmurfy / chipi

Use of net/http's ListenAndServe function has no support for setting timeouts GO-S2114
Security
Major
2 months agoa year old
Use of net/http serve function that has no support for setting timeouts
136
137	fmt.Printf("Started on 127.0.0.1:2121\n")
138
139	err = http.ListenAndServe(":2121", router)140	if err != nil {
141		panic(err)
142	}