type net/http.ServeMux
13 uses
net/http (current package)
server.go#L2505: type ServeMux struct {
server.go#L2514: func NewServeMux() *ServeMux {
server.go#L2515: return &ServeMux{}
server.go#L2521: var defaultServeMux ServeMux
server.go#L2573: func (mux *ServeMux) Handler(r *Request) (h Handler, pattern string) {
server.go#L2585: func (mux *ServeMux) findHandler(r *Request) (h Handler, patStr string, _ *pattern, matches []string) {
server.go#L2647: func (mux *ServeMux) matchOrRedirect(host, method, path string, u *url.URL) (_ *routingNode, matches []string, redirectTo *url.URL) {
server.go#L2717: func (mux *ServeMux) matchingMethods(host, path string) []string {
server.go#L2733: func (mux *ServeMux) ServeHTTP(w ResponseWriter, r *Request) {
server.go#L2756: func (mux *ServeMux) Handle(pattern string, handler Handler) {
server.go#L2767: func (mux *ServeMux) HandleFunc(pattern string, handler func(ResponseWriter, *Request)) {
server.go#L2795: func (mux *ServeMux) register(pattern string, handler Handler) {
server.go#L2801: func (mux *ServeMux) registerErr(patstr string, handler Handler) error {
 |
The pages are generated with Golds v0.7.6. (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. |