(r *http.Request)
| 558 | } |
| 559 | |
| 560 | func (s *ServeMux) isPathLengthFallback(r *http.Request) bool { |
| 561 | return !s.disablePathLengthFallback && r.Method == "POST" && r.Header.Get("Content-Type") == "application/x-www-form-urlencoded" |
| 562 | } |
| 563 | |
| 564 | type handler struct { |
| 565 | pat Pattern |