type net/http.ServeMux
12 uses
net/http (current package)
server.go#L2268: type ServeMux struct {
server.go#L2281: func NewServeMux() *ServeMux { return new(ServeMux) }
server.go#L2286: var defaultServeMux ServeMux
server.go#L2325: func (mux *ServeMux) match(path string) (h Handler, pattern string) {
server.go#L2346: func (mux *ServeMux) redirectToPathSlash(host, path string, u *url.URL) (*url.URL, bool) {
server.go#L2361: func (mux *ServeMux) shouldRedirectRLocked(host, path string) bool {
server.go#L2398: func (mux *ServeMux) Handler(r *Request) (h Handler, pattern string) {
server.go#L2434: func (mux *ServeMux) handler(host, path string) (h Handler, pattern string) {
server.go#L2453: func (mux *ServeMux) ServeHTTP(w ResponseWriter, r *Request) {
server.go#L2467: func (mux *ServeMux) Handle(pattern string, handler Handler) {
server.go#L2511: func (mux *ServeMux) HandleFunc(pattern string, handler func(ResponseWriter, *Request)) {