(r *bufio.Reader, sz int)
| 14 | } |
| 15 | |
| 16 | func (t *saslAuthenticateRequestV0) readFrom(r *bufio.Reader, sz int) (remain int, err error) { |
| 17 | return readBytes(r, sz, &t.Data) |
| 18 | } |
| 19 | |
| 20 | func (t saslAuthenticateRequestV0) writeTo(wb *writeBuffer) { |
| 21 | wb.writeBytes(t.Data) |
nothing calls this directly
no test coverage detected