streamReadWriteAcker is a light wrapper over QUIC streams with a callback to send response back to the client.
| 254 | // streamReadWriteAcker is a light wrapper over QUIC streams with a callback to send response back to |
| 255 | // the client. |
| 256 | type streamReadWriteAcker struct { |
| 257 | *rpcquic.RequestServerStream |
| 258 | connectResponseSent bool |
| 259 | } |
| 260 | |
| 261 | // AckConnection acks response back to the proxy. |
| 262 | func (s *streamReadWriteAcker) AckConnection(tracePropagation string) error { |
nothing calls this directly
no outgoing calls
no test coverage detected