mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
feat: experimental HTTP/TLS sniffing implementation (no QUIC yet)
This commit is contained in:
parent
988b86ae55
commit
8aab735029
3 changed files with 173 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue