mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
Fix tls config for h2 server
This commit is contained in:
parent
bf20ff84b5
commit
ee3cd49aa5
2 changed files with 10 additions and 2 deletions
|
@ -133,10 +133,14 @@ func (s *Server) badRequest(request *http.Request, err error) {
|
|||
}
|
||||
|
||||
func (s *Server) Serve(listener net.Listener) error {
|
||||
fixTLSConfig := s.httpServer.TLSConfig == nil
|
||||
err := http2.ConfigureServer(s.httpServer, s.h2Server)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if fixTLSConfig {
|
||||
s.httpServer.TLSConfig = nil
|
||||
}
|
||||
if s.httpServer.TLSConfig == nil {
|
||||
return s.httpServer.Serve(listener)
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue