| 33 | } |
| 34 | |
| 35 | type httpServer struct { |
| 36 | ep *Entrypoint |
| 37 | |
| 38 | stopFunc func(reason any) |
| 39 | |
| 40 | addr string |
| 41 | routes *pool.Pool[types.HTTPRoute] |
| 42 | |
| 43 | routeEntrypointOverlays atomic.Pointer[xsync.Map[string, *routeEntrypointOverlay]] |
| 44 | wildcardRoutes atomic.Pointer[wildcardRouteIndex] |
| 45 | wildcardRoutesMu sync.Mutex |
| 46 | } |
| 47 | |
| 48 | type routeEntrypointOverlay struct { |
| 49 | middleware *middleware.Middleware |
nothing calls this directly
no outgoing calls
no test coverage detected