6924d1ad81
See https://github.com/ooni/probe/issues/2112 for context. While there, run `go fix -fix buildtag ./...`
12 lines
178 B
Go
12 lines
178 B
Go
//go:build !shaping
|
|
|
|
package netxlite
|
|
|
|
import (
|
|
"github.com/ooni/probe-cli/v3/internal/model"
|
|
)
|
|
|
|
func newMaybeShapingDialer(dialer model.Dialer) model.Dialer {
|
|
return dialer
|
|
}
|