net/http.response.conn (field)
32 uses
net/http (current package)
server.go#L377: _, err = fmt.Fprintf(cw.res.conn.bufw, "%x\r\n", len(p))
server.go#L379: cw.res.conn.rwc.Close()
server.go#L383: n, err = cw.res.conn.bufw.Write(p)
server.go#L385: _, err = cw.res.conn.bufw.Write(crlf)
server.go#L388: cw.res.conn.rwc.Close()
server.go#L397: cw.res.conn.bufw.Flush()
server.go#L405: bw := cw.res.conn.bufw // conn's bufio writer
server.go#L419: conn *conn
server.go#L575: rf, ok := w.conn.rwc.(io.ReaderFrom)
server.go#L902: if !w.wroteContinue && w.canWriteContinue.isSet() && !w.conn.hijacked() {
server.go#L906: w.conn.bufw.WriteString("HTTP/1.1 100 Continue\r\n\r\n")
server.go#L907: w.conn.bufw.Flush()
server.go#L1038: conn: c,
server.go#L1136: if w.conn.hijacked() {
server.go#L1138: w.conn.server.logf("http: response.WriteHeader on hijacked connection from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
server.go#L1143: w.conn.server.logf("http: superfluous response.WriteHeader call from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
server.go#L1159: w.conn.server.logf("http: invalid Content-Length of %q", cl)
server.go#L1229: keepAlivesEnabled := w.conn.server.doKeepAlives()
server.go#L1424: w.conn.server.logf("http: WriteHeader called with both Transfer-Encoding of %q and a Content-Length of %d",
server.go#L1484: writeStatusLine(w.conn.bufw, w.req.ProtoAtLeast(1, 1), code, w.statusBuf[:])
server.go#L1485: cw.header.WriteSubset(w.conn.bufw, excludeHeader)
server.go#L1486: setHeader.Write(w.conn.bufw)
server.go#L1487: w.conn.bufw.Write(crlf)
server.go#L1582: if w.conn.hijacked() {
server.go#L1585: w.conn.server.logf("http: response.Write on hijacked connection from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
server.go#L1631: w.conn.bufw.Flush()
server.go#L1633: w.conn.r.abortPendingRead()
server.go#L1661: if w.conn.werr != nil {
server.go#L1940: registerOnHitEOF(req.Body, w.conn.r.startBackgroundRead)
server.go#L1942: w.conn.r.startBackgroundRead()
server.go#L1967: if !w.conn.server.doKeepAlives() {
server.go#L2013: c := w.conn
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |