Correct packet size

This commit is contained in:
Bolke de Bruin 2020-08-21 18:48:49 +02:00
parent c9213414c5
commit 2f27bd9e94

View file

@ -101,7 +101,7 @@ func readHeader(data []byte) (packetType uint16, size uint32, packet []byte, err
if len(data) < int(size) { if len(data) < int(size) {
return packetType, size, data[8:], errors.New("data incomplete, fragment received") return packetType, size, data[8:], errors.New("data incomplete, fragment received")
} }
return packetType, size, data[8:size-8], nil return packetType, size, data[8:size], nil
} }
// forwards data from a Connection to Transport and wraps it in the rdpgw protocol // forwards data from a Connection to Transport and wraps it in the rdpgw protocol