mirror of
https://github.com/bolkedebruin/rdpgw.git
synced 2026-03-28 23:06:34 +00:00
Correct packet size
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user