auto-redirect: Add route address set support for nftables

This commit is contained in:
世界
2024-06-12 15:20:13 +08:00
parent 58358835fa
commit df74e48350
23 changed files with 932 additions and 117 deletions

View File

@@ -0,0 +1,18 @@
//go:build !with_quic
package main
import (
"net/url"
"os"
box "github.com/sagernet/sing-box"
)
func initializeHTTP3Client(instance *box.Box) error {
return os.ErrInvalid
}
func fetchHTTP3(parsedURL *url.URL) error {
return os.ErrInvalid
}