Home | History | Annotate | Download | only in cgi

Lines Matching refs:Request

25 // Request returns the HTTP request as represented in the current
28 // The returned Request's Body is populated, if applicable.
29 func Request() (*http.Request, error) {
50 // RequestFromMap creates an http.Request from CGI variables.
51 // The returned Request's Body field is not populated.
52 func RequestFromMap(params map[string]string) (*http.Request, error) {
53 r := new(http.Request)
134 // Request.RemoteAddr has its port set by Go's standard http
143 // request, if any. If there's no current CGI environment
147 req, err := Request()
168 req *http.Request
192 fmt.Fprintf(os.Stderr, "CGI attempted to write header twice on request for %s", r.req.URL)