mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
run gofumpt, enable the gofumpt linter
This commit is contained in:
parent
598f975024
commit
8752576f26
50 changed files with 132 additions and 109 deletions
|
@ -63,8 +63,10 @@ type cubicSender struct {
|
|||
tracer logging.ConnectionTracer
|
||||
}
|
||||
|
||||
var _ SendAlgorithm = &cubicSender{}
|
||||
var _ SendAlgorithmWithDebugInfos = &cubicSender{}
|
||||
var (
|
||||
_ SendAlgorithm = &cubicSender{}
|
||||
_ SendAlgorithmWithDebugInfos = &cubicSender{}
|
||||
)
|
||||
|
||||
// NewCubicSender makes a new cubic sender
|
||||
func NewCubicSender(clock Clock, rttStats *utils.RTTStats, reno bool, tracer logging.ConnectionTracer) *cubicSender {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue