summaryrefslogtreecommitdiffstats
path: root/ratelimiter
diff options
context:
space:
mode:
authorMatt Layher <mdlayher@gmail.com>2019-06-03 15:46:46 -0400
committerJason A. Donenfeld <Jason@zx2c4.com>2019-06-03 22:15:41 +0200
commit18b6627f33883e28dd69b2990c52359002856694 (patch)
treefc1f4ba5ac62252eddfab68de391dcf89d1edce7 /ratelimiter
parentipc/winpipe: go fmt (diff)
downloadwireguard-go-18b6627f33883e28dd69b2990c52359002856694.tar.xz
wireguard-go-18b6627f33883e28dd69b2990c52359002856694.zip
device, ratelimiter: replace uses of time.Now().Sub() with time.Since()
Simplification found by staticcheck: $ staticcheck ./... | grep S1012 device/cookie.go:90:5: should use time.Since instead of time.Now().Sub (S1012) device/cookie.go:127:5: should use time.Since instead of time.Now().Sub (S1012) device/cookie.go:242:5: should use time.Since instead of time.Now().Sub (S1012) device/noise-protocol.go:304:13: should use time.Since instead of time.Now().Sub (S1012) device/receive.go:82:46: should use time.Since instead of time.Now().Sub (S1012) device/send.go:132:5: should use time.Since instead of time.Now().Sub (S1012) device/send.go:139:5: should use time.Since instead of time.Now().Sub (S1012) device/send.go:235:59: should use time.Since instead of time.Now().Sub (S1012) device/send.go:393:9: should use time.Since instead of time.Now().Sub (S1012) ratelimiter/ratelimiter.go:79:10: should use time.Since instead of time.Now().Sub (S1012) ratelimiter/ratelimiter.go:87:10: should use time.Since instead of time.Now().Sub (S1012) Change applied using: $ find . -type f -name "*.go" -exec sed -i "s/Now().Sub(/Since(/g" {} \; Signed-off-by: Matt Layher <mdlayher@gmail.com>
Diffstat (limited to 'ratelimiter')
-rw-r--r--ratelimiter/ratelimiter.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ratelimiter/ratelimiter.go b/ratelimiter/ratelimiter.go
index 595e5a5..772c45a 100644
--- a/ratelimiter/ratelimiter.go
+++ b/ratelimiter/ratelimiter.go
@@ -76,7 +76,7 @@ func (rate *Ratelimiter) Init() {
for key, entry := range rate.tableIPv4 {
entry.Lock()
- if time.Now().Sub(entry.lastTime) > garbageCollectTime {
+ if time.Since(entry.lastTime) > garbageCollectTime {
delete(rate.tableIPv4, key)
}
entry.Unlock()
@@ -84,7 +84,7 @@ func (rate *Ratelimiter) Init() {
for key, entry := range rate.tableIPv6 {
entry.Lock()
- if time.Now().Sub(entry.lastTime) > garbageCollectTime {
+ if time.Since(entry.lastTime) > garbageCollectTime {
delete(rate.tableIPv6, key)
}
entry.Unlock()