Add BaseContext to http servers

This commit is contained in:
H1JK 2023-04-08 18:46:35 +08:00 committed by 世界
parent d5f94b65b7
commit e1d96cb64e
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 12 additions and 0 deletions

View file

@ -70,6 +70,9 @@ func NewServer(ctx context.Context, options option.V2RayHTTPOptions, tlsConfig t
Handler: server,
ReadHeaderTimeout: C.TCPTimeout,
MaxHeaderBytes: http.DefaultMaxHeaderBytes,
BaseContext: func(net.Listener) context.Context {
return ctx
},
}
server.h2cHandler = h2c.NewHandler(server, server.h2Server)
return server, nil