Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hexEscapeNonASCII (0.19 sec)

  1. src/net/http/server.go

    	// the response because older user agents may not understand 301/307.
    	// Do it only if the request didn't already have a Content-Type header.
    	_, hadCT := h["Content-Type"]
    
    	h.Set("Location", hexEscapeNonASCII(url))
    	if !hadCT && (r.Method == "GET" || r.Method == "HEAD") {
    		h.Set("Content-Type", "text/html; charset=utf-8")
    	}
    	w.WriteHeader(code)
    
    	// Shouldn't send the body for POST or HEAD; that leaves GET.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top