type net/http.ServeMux
15 uses
net/http (current package)
csrf.go#L37: bypass atomic.Pointer[ServeMux]
csrf.go#L100: var bypass *ServeMux
server.go#L2575: type ServeMux struct {
server.go#L2583: func NewServeMux() *ServeMux {
server.go#L2584: return &ServeMux{}
server.go#L2590: var defaultServeMux ServeMux
server.go#L2647: func (mux *ServeMux) Handler(r *Request) (h Handler, pattern string) {
server.go#L2659: func (mux *ServeMux) findHandler(r *Request) (h Handler, patStr string, _ *pattern, matches []string) {
server.go#L2721: func (mux *ServeMux) matchOrRedirect(host, method, path string, u *url.URL) (_ *routingNode, matches []string, redirectTo *url.URL) {
server.go#L2798: func (mux *ServeMux) matchingMethods(host, path string) []string {
server.go#L2814: func (mux *ServeMux) ServeHTTP(w ResponseWriter, r *Request) {
server.go#L2839: func (mux *ServeMux) Handle(pattern string, handler Handler) {
server.go#L2852: func (mux *ServeMux) HandleFunc(pattern string, handler func(ResponseWriter, *Request)) {
server.go#L2880: func (mux *ServeMux) register(pattern string, handler Handler) {
server.go#L2886: func (mux *ServeMux) registerErr(patstr string, handler Handler) error {
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |