(msg any)
| 822 | } |
| 823 | |
| 824 | func (hc *headerInspectingHandlerConn) Send(msg any) error { |
| 825 | if !hc.inspectedResponse { |
| 826 | hc.inspectResponseHeader(hc.Spec(), hc.ResponseHeader()) |
| 827 | hc.inspectedResponse = true |
| 828 | } |
| 829 | return hc.StreamingHandlerConn.Send(msg) |
| 830 | } |
| 831 | |
| 832 | type headerInspectingClientConn struct { |
| 833 | connect.StreamingClientConn |
nothing calls this directly
no test coverage detected