| 567 | } |
| 568 | |
| 569 | type connectStreamingClientConn struct { |
| 570 | spec Spec |
| 571 | peer Peer |
| 572 | duplexCall *duplexHTTPCall |
| 573 | compressionPools readOnlyCompressionPools |
| 574 | bufferPool *bufferPool |
| 575 | codec Codec |
| 576 | marshaler connectStreamingMarshaler |
| 577 | unmarshaler connectStreamingUnmarshaler |
| 578 | responseHeader http.Header |
| 579 | responseTrailer http.Header |
| 580 | } |
| 581 | |
| 582 | func (cc *connectStreamingClientConn) Spec() Spec { |
| 583 | return cc.spec |
nothing calls this directly
no outgoing calls
no test coverage detected