mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-05 12:57:39 +03:00
Update BatchTUN API for WireGuard
This commit is contained in:
parent
0e138754d5
commit
3195f6f4a2
5 changed files with 31 additions and 35 deletions
|
@ -198,15 +198,13 @@ func (s *System) wintunLoop(winTun WinTun) {
|
|||
func (s *System) batchLoop(linuxTUN BatchTUN, batchSize int) {
|
||||
frontHeadroom := s.tun.FrontHeadroom()
|
||||
packetBuffers := make([][]byte, batchSize)
|
||||
readBuffers := make([][]byte, batchSize)
|
||||
writeBuffers := make([][]byte, batchSize)
|
||||
packetSizes := make([]int, batchSize)
|
||||
for i := range packetBuffers {
|
||||
packetBuffers[i] = make([]byte, s.mtu+frontHeadroom+PacketOffset)
|
||||
readBuffers[i] = packetBuffers[i][frontHeadroom:]
|
||||
packetBuffers[i] = make([]byte, s.mtu+frontHeadroom)
|
||||
}
|
||||
for {
|
||||
n, err := linuxTUN.BatchRead(readBuffers, packetSizes)
|
||||
n, err := linuxTUN.BatchRead(packetBuffers, frontHeadroom, packetSizes)
|
||||
if err != nil {
|
||||
if E.IsClosed(err) {
|
||||
return
|
||||
|
@ -222,13 +220,13 @@ func (s *System) batchLoop(linuxTUN BatchTUN, batchSize int) {
|
|||
continue
|
||||
}
|
||||
packetBuffer := packetBuffers[i]
|
||||
packet := packetBuffer[frontHeadroom+PacketOffset : frontHeadroom+packetSize]
|
||||
packet := packetBuffer[frontHeadroom : frontHeadroom+packetSize]
|
||||
if s.processPacket(packet) {
|
||||
writeBuffers = append(writeBuffers, packetBuffer[:frontHeadroom+packetSize])
|
||||
}
|
||||
}
|
||||
if len(writeBuffers) > 0 {
|
||||
err = linuxTUN.BatchWrite(writeBuffers)
|
||||
err = linuxTUN.BatchWrite(writeBuffers, frontHeadroom)
|
||||
if err != nil {
|
||||
s.logger.Trace(E.Cause(err, "batch write packet"))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue