mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 04:17:36 +03:00
Refactor bind control
This commit is contained in:
parent
2373281c41
commit
189f02c802
16 changed files with 123 additions and 62 deletions
7
include/quic.go
Normal file
7
include/quic.go
Normal file
|
@ -0,0 +1,7 @@
|
|||
//go:build with_quic
|
||||
|
||||
package include
|
||||
|
||||
import _ "github.com/sagernet/sing-dns/quic"
|
||||
|
||||
const WithQUIC = true
|
21
include/quic_stub.go
Normal file
21
include/quic_stub.go
Normal file
|
@ -0,0 +1,21 @@
|
|||
//go:build !with_quic
|
||||
|
||||
package include
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/sagernet/sing-dns"
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
N "github.com/sagernet/sing/common/network"
|
||||
)
|
||||
|
||||
const WithQUIC = false
|
||||
|
||||
var ErrQUICNotIncluded = E.New(`QUIC is not included in this build, rebuild with -tags with_quic`)
|
||||
|
||||
func init() {
|
||||
dns.RegisterTransport([]string{"quic", "h3"}, func(ctx context.Context, dialer N.Dialer, link string) (dns.Transport, error) {
|
||||
return nil, ErrQUICNotIncluded
|
||||
})
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue