MCPcopy
hub / github.com/segmentio/kafka-go / saslAuthenticateResponseV0

Struct saslAuthenticateResponseV0

saslauthenticate.go:24–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected