Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-02-05 | Extend structs rather than embed, when possible | Jason A. Donenfeld | |
2019-02-05 | Update copyright | Jason A. Donenfeld | |
2018-12-19 | Make error messages consistent | Jason A. Donenfeld | |
2018-09-16 | global: fix up copyright headers | Jason A. Donenfeld | |
2018-05-27 | Fix typo in timers | Jason A. Donenfeld | |
2018-05-20 | Fix data races in timers | Jason A. Donenfeld | |
2018-05-20 | Fix race in lock pending | Jason A. Donenfeld | |
2018-05-19 | timers: no need to clear keepalive in persistent keepalive | Jason A. Donenfeld | |
We do this after sending the keepalive anyway. This is something of a regression, though, since before we'd cancel and then send, but now we send and then cancel, so it introduces a potential race, but hopefully that isn't too big of a deal. Kernel module commit a24b3e6e15ae1ea1291666e5da910caf43eedbaf | |||
2018-05-19 | timers: clear send_keepalive timer on sending handshake response | Jason A. Donenfeld | |
We reorganize this into also doing so on sending keepalives itself, which means the state machine is much more consistent, even if this was already implied. Kernel module commit 30290ef1d2581a3e6ee8ffcdb05d580cfba976be | |||
2018-05-15 | Lock timers on modification | Jason A. Donenfeld | |
2018-05-13 | More refactoring | Jason A. Donenfeld | |
2018-05-13 | Rework index hashtable | Jason A. Donenfeld | |
2018-05-10 | Rewrite timers and related state machines | Jason A. Donenfeld | |
2018-05-05 | Removed remaining signals from peer | Mathias Hall-Andersen | |
1. Removed remaining signals from peer struct 2. Made needAnotherKeepalive local 3. Removed environment check from warning text (annoying when debugging) | |||
2018-05-05 | Use Int32n for jitter | Mathias Hall-Andersen | |
2018-05-05 | Removed old signals | Mathias Hall-Andersen | |
2018-05-05 | Merge branch 'master' of ssh://git.zx2c4.com/wireguard-go | Mathias Hall-Andersen | |
2018-05-05 | Initial version of migration to new event model | Mathias Hall-Andersen | |
- Begin move away from global timer state. - Made logging format more consistent | |||
2018-05-03 | global: Add SPDX tags and copyright header | Jason A. Donenfeld | |
Mathias should probably add his copyright headers to each file too. | |||
2018-05-01 | Add missing locks and fix debug output, and try to flush queues | Jason A. Donenfeld | |
Flushing queues on exit is sort of a partial solution, but this could be better. Really what we want is for no more packets to be enqueued after isUp is set to false. | |||
2018-04-18 | Fixed read from closed channel | Mathias Hall-Andersen | |
A premature waitgroup .Done resulted in reading from closed channel. This caused a nil-pointer deref & crash. Added additional debugging when closing routines. | |||
2018-04-18 | Use simple 16-bit integer for persistent keepalive | Jason A. Donenfeld | |
Races for this aren't a huge problem. | |||
2018-02-11 | TUN status hack was causing spam during shutdown | Mathias Hall-Andersen | |
2018-02-11 | Moved ratelimiter to internal package | Mathias Hall-Andersen | |
2018-02-11 | Fixed tabs | Mathias Hall-Andersen | |
2018-02-04 | Work on logging format | Mathias Hall-Andersen | |
2018-02-04 | Align with go library layout | Mathias Hall-Andersen | |