4
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-06-14 04:47:03 +00:00

Only flag stillAlive on successful write

This commit is contained in:
Neil Alexander
2019-07-17 23:23:19 +01:00
parent 307b24d8cb
commit 311c612f2e

View File

@ -113,9 +113,10 @@ func (s *tunConn) writer() error {
} else { } else {
s.tun.log.Errorln(s.conn.String(), "TUN/TAP conn write error:", err) s.tun.log.Errorln(s.conn.String(), "TUN/TAP conn write error:", err)
} }
} else {
s.stillAlive()
} }
util.PutBytes(b) util.PutBytes(b)
s.stillAlive()
} }
} }
} }