2019-10-15 15:39:51 +02:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-10-15 15:39:51 +02:00
|
|
|
|
|
|
|
package graceful
|
|
|
|
|
|
|
|
import (
|
2021-05-31 08:18:11 +02:00
|
|
|
"context"
|
2019-10-15 15:39:51 +02:00
|
|
|
"crypto/tls"
|
2021-05-31 08:18:11 +02:00
|
|
|
"net"
|
2019-10-15 15:39:51 +02:00
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
2021-03-08 03:43:59 +01:00
|
|
|
func newHTTPServer(network, address, name string, handler http.Handler) (*Server, ServeFunction) {
|
|
|
|
server := NewServer(network, address, name)
|
2019-10-15 15:39:51 +02:00
|
|
|
httpServer := http.Server{
|
2023-11-15 15:02:46 +01:00
|
|
|
Handler: handler,
|
|
|
|
BaseContext: func(net.Listener) context.Context { return GetManager().HammerContext() },
|
2019-10-15 15:39:51 +02:00
|
|
|
}
|
|
|
|
server.OnShutdown = func() {
|
|
|
|
httpServer.SetKeepAlivesEnabled(false)
|
|
|
|
}
|
|
|
|
return server, httpServer.Serve
|
|
|
|
}
|
|
|
|
|
|
|
|
// HTTPListenAndServe listens on the provided network address and then calls Serve
|
|
|
|
// to handle requests on incoming connections.
|
2022-08-21 20:20:43 +02:00
|
|
|
func HTTPListenAndServe(network, address, name string, handler http.Handler, useProxyProtocol bool) error {
|
2021-03-08 03:43:59 +01:00
|
|
|
server, lHandler := newHTTPServer(network, address, name, handler)
|
2022-08-21 20:20:43 +02:00
|
|
|
return server.ListenAndServe(lHandler, useProxyProtocol)
|
2019-10-15 15:39:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// HTTPListenAndServeTLSConfig listens on the provided network address and then calls Serve
|
|
|
|
// to handle requests on incoming connections.
|
2022-08-21 20:20:43 +02:00
|
|
|
func HTTPListenAndServeTLSConfig(network, address, name string, tlsConfig *tls.Config, handler http.Handler, useProxyProtocol, proxyProtocolTLSBridging bool) error {
|
2021-03-08 03:43:59 +01:00
|
|
|
server, lHandler := newHTTPServer(network, address, name, handler)
|
2022-08-21 20:20:43 +02:00
|
|
|
return server.ListenAndServeTLSConfig(tlsConfig, lHandler, useProxyProtocol, proxyProtocolTLSBridging)
|
2019-10-15 15:39:51 +02:00
|
|
|
}
|