Continue reading incoming data until enough rcvd
This fixes the case of a large packet being received, the current code stops processing as soon as >12 bytes are received,
Этот коммит содержится в:
		
							родитель
							
								
									57337a6004
								
							
						
					
					
						Коммит
						885609309c
					
				| @ -91,6 +91,10 @@ func decodeInPack(data []byte) (inpack *inPack, l int, err error) { | ||||
| 		return | ||||
| 	} | ||||
| 	dl := int(binary.BigEndian.Uint32(data[8:12])) | ||||
| 	if len(data) < (dl + minPacketLength) { | ||||
| 		err = fmt.Errorf("Not enough data: %V", data) | ||||
| 		return | ||||
| 	} | ||||
| 	dt := data[minPacketLength : dl+minPacketLength] | ||||
| 	if len(dt) != int(dl) { // length not equal
 | ||||
| 		err = fmt.Errorf("Invalid data: %V", data) | ||||
|  | ||||
		Загрузка…
	
		Ссылка в новой задаче
	
	Block a user