(target string, opts *http.PushOptions)
| 1303 | } |
| 1304 | |
| 1305 | func (r *rwState) doPush(target string, opts *http.PushOptions) error { |
| 1306 | if r.push != nil { |
| 1307 | return r.push(target, opts) |
| 1308 | } |
| 1309 | return r.w.(http.Pusher).Push(target, opts) |
| 1310 | } |
| 1311 | |
| 1312 | func (r *rwState) doWriteString(s string) (int, error) { |
| 1313 | if r.writeString != nil { |