mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-02 22:35:59 +00:00
wgengine/magicsock: default legacy networking to off for some tests.
Signed-off-by: David Anderson <danderson@tailscale.com>
This commit is contained in:
parent
a2463e8948
commit
57d95dd005
@ -415,6 +415,7 @@ func (o *Options) derpActiveFunc() func() {
|
|||||||
// of NewConn. Mostly for tests.
|
// of NewConn. Mostly for tests.
|
||||||
func newConn() *Conn {
|
func newConn() *Conn {
|
||||||
c := &Conn{
|
c := &Conn{
|
||||||
|
disableLegacy: true,
|
||||||
sendLogLimit: rate.NewLimiter(rate.Every(1*time.Minute), 1),
|
sendLogLimit: rate.NewLimiter(rate.Every(1*time.Minute), 1),
|
||||||
addrsByUDP: make(map[netaddr.IPPort]*addrSet),
|
addrsByUDP: make(map[netaddr.IPPort]*addrSet),
|
||||||
addrsByKey: make(map[key.Public]*addrSet),
|
addrsByKey: make(map[key.Public]*addrSet),
|
||||||
@ -446,6 +447,7 @@ func NewConn(opts Options) (*Conn, error) {
|
|||||||
c.packetListener = opts.PacketListener
|
c.packetListener = opts.PacketListener
|
||||||
c.noteRecvActivity = opts.NoteRecvActivity
|
c.noteRecvActivity = opts.NoteRecvActivity
|
||||||
c.simulatedNetwork = opts.SimulatedNetwork
|
c.simulatedNetwork = opts.SimulatedNetwork
|
||||||
|
c.disableLegacy = opts.DisableLegacyNetworking
|
||||||
|
|
||||||
if err := c.initialBind(); err != nil {
|
if err := c.initialBind(); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
Loading…
x
Reference in New Issue
Block a user