Head issues a HEAD request to the fcgi responder.
(p map[string]string)
| 273 | |
| 274 | // Head issues a HEAD request to the fcgi responder. |
| 275 | func (c *client) Head(p map[string]string) (resp *http.Response, err error) { |
| 276 | p["REQUEST_METHOD"] = "HEAD" |
| 277 | p["CONTENT_LENGTH"] = "0" |
| 278 | |
| 279 | return c.Request(p, nil) |
| 280 | } |
| 281 | |
| 282 | // Options issues an OPTIONS request to the fcgi responder. |
| 283 | func (c *client) Options(p map[string]string) (resp *http.Response, err error) { |