aboutsummaryrefslogtreecommitdiffstats
path: root/ratelimiter (follow)
Commit message (Collapse)AuthorAgeFilesLines
* device, ratelimiter: replace uses of time.Now().Sub() with time.Since()Matt Layher2019-06-031-2/+2
| | | | | | | | | | | | | | | | | | | | | | | 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>
* Extend structs rather than embed, when possibleJason A. Donenfeld2019-02-051-19/+19
|
* Update copyrightJason A. Donenfeld2019-02-052-4/+4
|
* global: fix up copyright headersJason A. Donenfeld2018-09-162-2/+2
|
* ratelimiter: do not run GC with nothing to doJason A. Donenfeld2018-05-211-8/+23
|
* Cleanup ratelimiterJason A. Donenfeld2018-05-131-12/+12
|
* global: Add SPDX tags and copyright headerJason A. Donenfeld2018-05-032-4/+10
| | | | Mathias should probably add his copyright headers to each file too.
* Use relative importsJason A. Donenfeld2018-02-122-0/+247