mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-09-09 10:48:48 +08:00
14 lines
231 B
Go
14 lines
231 B
Go
//go:build !linux || !go1.25 || without_badtls
|
|
|
|
package ktls
|
|
|
|
import (
|
|
"os"
|
|
|
|
aTLS "github.com/sagernet/sing/common/tls"
|
|
)
|
|
|
|
func NewConn(conn aTLS.Conn, txOffload, rxOffload bool) (aTLS.Conn, error) {
|
|
return nil, os.ErrInvalid
|
|
}
|