| 454 | } |
| 455 | |
| 456 | type grpcHandlerConn struct { |
| 457 | spec Spec |
| 458 | peer Peer |
| 459 | web bool |
| 460 | bufferPool *bufferPool |
| 461 | protobuf Codec // for errors |
| 462 | marshaler grpcMarshaler |
| 463 | responseWriter http.ResponseWriter |
| 464 | responseHeader http.Header |
| 465 | responseTrailer http.Header |
| 466 | wroteToBody bool |
| 467 | request *http.Request |
| 468 | unmarshaler grpcUnmarshaler |
| 469 | } |
| 470 | |
| 471 | func (hc *grpcHandlerConn) Spec() Spec { |
| 472 | return hc.spec |
nothing calls this directly
no outgoing calls
no test coverage detected