Fix GSO batch size

This commit is contained in:
世界 2024-03-22 14:49:51 +08:00
parent 689e60891c
commit 8bfb64cf04
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -136,11 +136,13 @@ func (t *NativeTun) BatchSize() int {
if !t.gsoEnabled {
return 1
}
/* // Not works on some devices: https://github.com/SagerNet/sing-box/issues/1605
batchSize := int(gsoMaxSize/t.options.MTU) * 2
if batchSize > idealBatchSize {
batchSize = idealBatchSize
}
return batchSize
return batchSize*/
return idealBatchSize
}
func (t *NativeTun) BatchRead(buffers [][]byte, offset int, readN []int) (n int, err error) {