]> Cypherpunks.ru repositories - gostls13.git/blob - src/net/mptcpsock_stub.go
62f5d4973137174389c67e2d5e9d57d2024d93cf
[gostls13.git] / src / net / mptcpsock_stub.go
1 // Copyright 2023 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 //go:build !linux
6
7 package net
8
9 import (
10         "context"
11 )
12
13 func (sd *sysDialer) dialMPTCP(ctx context.Context, laddr, raddr *TCPAddr) (*TCPConn, error) {
14         return sd.dialTCP(ctx, laddr, raddr)
15 }