(msg any)
| 847 | } |
| 848 | |
| 849 | func (cc *headerInspectingClientConn) Receive(msg any) error { |
| 850 | err := cc.StreamingClientConn.Receive(msg) |
| 851 | if !cc.inspectedResponse { |
| 852 | cc.inspectResponseHeader(cc.Spec(), cc.ResponseHeader()) |
| 853 | cc.inspectedResponse = true |
| 854 | } |
| 855 | return err |
| 856 | } |
| 857 | |
| 858 | type httpMethodChecker struct { |
| 859 | client bool |
nothing calls this directly
no test coverage detected