crypto/tls.Conn.input (field)

7 uses

	crypto/tls (current package)
		conn.go#L96: 	input     bytes.Reader // application data waiting to be read, from rawInput.Next
		conn.go#L599: 	if c.input.Len() != 0 {
		conn.go#L602: 	c.input.Reset(nil)
		conn.go#L741: 		c.input.Reset(data)
		conn.go#L1275: 	for c.input.Len() == 0 {
		conn.go#L1286: 	n, _ := c.input.Read(b)
		conn.go#L1295: 	if n != 0 && c.input.Len() == 0 && c.rawInput.Len() > 0 &&