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 {
@ -212,7 +210,6 @@ func (device *Device) RoutineReceiveIncoming(IP int, bind Bind) {
}
}
}
}
func (device *Device) RoutineDecryption() {