GetForwardResponseOptions returns the ForwardResponseOptions associated with this ServeMux.
()
| 554 | |
| 555 | // GetForwardResponseOptions returns the ForwardResponseOptions associated with this ServeMux. |
| 556 | func (s *ServeMux) GetForwardResponseOptions() []func(context.Context, http.ResponseWriter, proto.Message) error { |
| 557 | return s.forwardResponseOptions |
| 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" |
no outgoing calls
no test coverage detected