mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-05-18 10:39:09 +03:00
15 lines
201 B
Go
15 lines
201 B
Go
//go:build !go1.19 || go1.21
|
|
|
|
package badtls
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"os"
|
|
|
|
aTLS "github.com/sagernet/sing/common/tls"
|
|
)
|
|
|
|
func Create(conn *tls.Conn) (aTLS.Conn, error) {
|
|
return nil, os.ErrInvalid
|
|
}
|