Home | History | Annotate | Download | only in http

Lines Matching refs:POST

109 	// HTTP/1.1 POST => chunked coding; body; empty trailer
112 Method: "POST",
127 WantWrite: "POST /search HTTP/1.1\r\n" +
134 WantProxy: "POST http://www.google.com/search HTTP/1.1\r\n" +
142 // HTTP/1.1 POST with Content-Length, no chunking
145 Method: "POST",
160 WantWrite: "POST /search HTTP/1.1\r\n" +
168 WantProxy: "POST http://www.google.com/search HTTP/1.1\r\n" +
177 // HTTP/1.1 POST with Content-Length in headers
180 Method: "POST",
191 WantWrite: "POST / HTTP/1.1\r\n" +
198 WantProxy: "POST http://example.com/ HTTP/1.1\r\n" +
223 Method: "POST",
233 WantWrite: "POST / HTTP/1.1\r\n" +
239 WantProxy: "POST / HTTP/1.1\r\n" +
249 Method: "POST",
259 WantWrite: "POST / HTTP/1.1\r\n" +
265 WantProxy: "POST / HTTP/1.1\r\n" +
275 Method: "POST",
285 WantWrite: "POST / HTTP/1.1\r\n" +
291 WantProxy: "POST / HTTP/1.1\r\n" +
301 Method: "POST",
315 Method: "POST",
329 Method: "POST",
342 Method: "POST",
362 Method: "POST",
649 // But a POST request is expected to have a body, so
652 method: "POST",
659 method: "POST",
719 req, err := NewRequest("POST", "http://foo.com/", rc)
730 expected := "POST / HTTP/1.1\r\n" +