| 22 | } |
| 23 | |
| 24 | type saslAuthenticateResponseV0 struct { |
| 25 | // ErrorCode holds response error code |
| 26 | ErrorCode int16 |
| 27 | |
| 28 | ErrorMessage string |
| 29 | |
| 30 | Data []byte |
| 31 | } |
| 32 | |
| 33 | func (t saslAuthenticateResponseV0) size() int32 { |
| 34 | return sizeofInt16(t.ErrorCode) + sizeofString(t.ErrorMessage) + sizeofBytes(t.Data) |
nothing calls this directly
no outgoing calls
no test coverage detected