feat: experimental HTTP/TLS sniffing implementation (no QUIC yet)

This commit is contained in:
Toby 2024-06-29 13:40:52 -07:00
parent 988b86ae55
commit 8aab735029
3 changed files with 173 additions and 1 deletions

View file

@ -15,6 +15,8 @@ import (
"strings"
"time"
"github.com/apernet/hysteria/extras/v2/sniff"
"github.com/caddyserver/certmagic"
"github.com/libdns/cloudflare"
"github.com/libdns/duckdns"
@ -855,6 +857,11 @@ func runServer(cmd *cobra.Command, args []string) {
logger.Fatal("failed to load server config", zap.Error(err))
}
hyConfig.RequestHook = &sniff.Sniffer{
Timeout: 4 * time.Second,
RewriteDomain: false,
}
s, err := server.NewServer(hyConfig)
if err != nil {
logger.Fatal("failed to initialize server", zap.Error(err))