1
0

tris-localserver: fix Content-Type header for /ch endpoint (#21)

Este cometimento está contido em:
Tom Thorogood 2017-04-10 02:02:53 +09:30 cometido por Peter Wu
ascendente f4a6690edc
cometimento bc76e35b75

Ver ficheiro

@ -83,7 +83,7 @@ func main() {
})
http.HandleFunc("/ch", func(w http.ResponseWriter, r *http.Request) {
r.Header.Set("Content-Type", "text/plain")
w.Header().Set("Content-Type", "text/plain")
fmt.Fprintf(w, "Client Hello packet (%d bytes):\n%s", len(r.TLS.ClientHello), hex.Dump(r.TLS.ClientHello))
})