Beispiel #1
0
func (o *XDRBenchStruct) DecodeXDRFrom(xr *xdr.Reader) error {
	o.I1 = xr.ReadUint64()
	o.I2 = xr.ReadUint32()
	o.I3 = xr.ReadUint16()
	o.I4 = xr.ReadUint8()
	o.Bs0 = xr.ReadBytesMax(128)
	o.Bs1 = xr.ReadBytes()
	o.S0 = xr.ReadStringMax(128)
	o.S1 = xr.ReadString()
	return xr.Error()
}
func (o *TestStruct) decodeXDR(xr *xdr.Reader) error {
	o.I = int(xr.ReadUint64())
	o.I8 = int8(xr.ReadUint8())
	o.UI8 = xr.ReadUint8()
	o.I16 = int16(xr.ReadUint16())
	o.UI16 = xr.ReadUint16()
	o.I32 = int32(xr.ReadUint32())
	o.UI32 = xr.ReadUint32()
	o.I64 = int64(xr.ReadUint64())
	o.UI64 = xr.ReadUint64()
	o.BS = xr.ReadBytes()
	o.S = xr.ReadString()
	(&o.C).decodeXDR(xr)
	return xr.Error()
}
Beispiel #3
0
func (o *ResponseMessage) decodeXDR(xr *xdr.Reader) error {
	o.Data = xr.ReadBytes()
	return xr.Error()
}
Beispiel #4
0
func (o *repeatReader) DecodeXDRFrom(xr *xdr.Reader) error {
	o.data = xr.ReadBytes()
	return xr.Error()
}
Beispiel #5
0
func (o *ResponseMessage) DecodeXDRFrom(xr *xdr.Reader) error {
	o.Data = xr.ReadBytes()
	o.Code = int32(xr.ReadUint32())
	return xr.Error()
}
Beispiel #6
0
func (o *fileVersion) DecodeXDRFrom(xr *xdr.Reader) error {
	(&o.version).DecodeXDRFrom(xr)
	o.device = xr.ReadBytes()
	return xr.Error()
}
Beispiel #7
0
func (o *fileVersion) decodeXDR(xr *xdr.Reader) error {
	o.version = int64(xr.ReadUint64())
	o.device = xr.ReadBytes()
	return xr.Error()
}
Beispiel #8
0
func (o *address) decodeXDR(xr *xdr.Reader) error {
	o.ip = xr.ReadBytes()
	o.port = xr.ReadUint16()
	o.seen = int64(xr.ReadUint64())
	return xr.Error()
}