(p []byte)
| 131 | } |
| 132 | |
| 133 | func (c *statTrackingConn) Write(p []byte) (n int, err error) { |
| 134 | statTCPWrites.Incr(int64(len(p))) |
| 135 | n, err = c.Conn.Write(p) |
| 136 | statTCPWrote.Incr(int64(n)) |
| 137 | return |
| 138 | } |
| 139 | |
| 140 | func (c *statTrackingConn) Read(p []byte) (n int, err error) { |
| 141 | n, err = c.Conn.Read(p) |
no test coverage detected