| 85 | } |
| 86 | |
| 87 | type httpReader struct { |
| 88 | conversation *core.ConversationInfo |
| 89 | |
| 90 | requests []*httpRequest |
| 91 | responses []*httpResponse |
| 92 | } |
| 93 | |
| 94 | // New constructs a new http stream decoder. |
| 95 | func (h *httpReader) New(conversation *core.ConversationInfo) core.StreamDecoderInterface { |
nothing calls this directly
no outgoing calls
no test coverage detected