diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-04-18 07:24:33 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-04-18 07:24:33 +0200 |
commit | eb6728400ba656990aa4518dc4f5f2a6f0f19f8e (patch) | |
tree | 07582cbeda3eee2c9d0c75b03e635ff598793665 /peer.go | |
parent | 099219be2a1e58b1b34b0202e1466480a4fa0cbc (diff) |
Use simple 16-bit integer for persistent keepalive
Races for this aren't a huge problem.
Diffstat (limited to 'peer.go')
-rw-r--r-- | peer.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -13,13 +13,14 @@ const ( ) type Peer struct { - persistentKeepaliveInterval uint64 isRunning AtomicBool mutex sync.RWMutex keyPairs KeyPairs handshake Handshake device *Device endpoint Endpoint + persistentKeepaliveInterval uint16 + _ uint32 // padding for alignment stats struct { txBytes uint64 // bytes send to peer (endpoint) |