1
0
mirror of https://git.zx2c4.com/wireguard-go synced 2024-11-15 01:05:15 +01:00

Fixed receive path infinite loop

This commit is contained in:
Mathias Hall-Andersen 2017-12-01 00:03:06 +01:00
parent cd369cde45
commit cb09125dc4

View File

@ -98,8 +98,6 @@ func (device *Device) RoutineReceiveIncoming(IP int, bind Bind) {
logDebug := device.log.Debug
logDebug.Println("Routine, receive incoming, IP version:", IP)
for {
// receive datagrams until conn is closed
buffer := device.GetMessageBuffer()
@ -124,7 +122,7 @@ func (device *Device) RoutineReceiveIncoming(IP int, bind Bind) {
}
if err != nil {
break
return
}
if size < MinMessageSize {
@ -211,7 +209,6 @@ func (device *Device) RoutineReceiveIncoming(IP int, bind Bind) {
buffer = device.GetMessageBuffer()
}
}
}
}
func (device *Device) RoutineDecryption() {