()
| 1261 | } |
| 1262 | |
| 1263 | func (r *rwState) doCloseNotify() <-chan bool { |
| 1264 | if r.closeNotify != nil { |
| 1265 | return r.closeNotify() |
| 1266 | } |
| 1267 | return r.w.(http.CloseNotifier).CloseNotify() |
| 1268 | } |
| 1269 | |
| 1270 | func (r *rwState) doHijack() (net.Conn, *bufio.ReadWriter, error) { |
| 1271 | if r.hijack != nil { |
no test coverage detected