mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 05:37:55 +08: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
|
|
}
|