crypto/tls.Conn.rawInput (field)
11 uses
crypto/tls (current package)
conn.go#L95: rawInput bytes.Buffer // raw input, starting with a record header
conn.go#L568: copy(err.RecordHeader[:], c.rawInput.Bytes())
conn.go#L609: if err == io.ErrUnexpectedEOF && c.rawInput.Len() == 0 {
conn.go#L617: hdr := c.rawInput.Bytes()[:recordHeaderLen]
conn.go#L658: record := c.rawInput.Next(recordHeaderLen + n)
conn.go#L790: if c.rawInput.Len() >= n {
conn.go#L793: needs := n - c.rawInput.Len()
conn.go#L797: c.rawInput.Grow(needs + bytes.MinRead)
conn.go#L798: _, err := c.rawInput.ReadFrom(&atLeastReader{r, int64(needs)})
conn.go#L1295: if n != 0 && c.input.Len() == 0 && c.rawInput.Len() > 0 &&
conn.go#L1296: recordType(c.rawInput.Bytes()[0]) == recordTypeAlert {
 |
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. |