mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
22 lines
437 B
Go
22 lines
437 B
Go
package sarama
|
|
|
|
import "fmt"
|
|
|
|
type responseHeader struct {
|
|
length int32
|
|
correlationID int32
|
|
}
|
|
|
|
func (r *responseHeader) decode(pd packetDecoder) (err error) {
|
|
r.length, err = pd.getInt32()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if r.length <= 4 || r.length > MaxResponseSize {
|
|
return PacketDecodingError{fmt.Sprintf("message of length %d too large or too small", r.length)}
|
|
}
|
|
|
|
r.correlationID, err = pd.getInt32()
|
|
return err
|
|
}
|