* * The TCP factory: returns a new Stream */
| 258 | * The TCP factory: returns a new Stream |
| 259 | */ |
| 260 | type tcpStreamFactory struct { |
| 261 | wg sync.WaitGroup |
| 262 | doHTTP bool |
| 263 | } |
| 264 | |
| 265 | func (factory *tcpStreamFactory) New(net, transport gopacket.Flow, tcp *layers.TCP, ac reassembly.AssemblerContext) reassembly.Stream { |
| 266 | Debug("* NEW: %s %s\n", net, transport) |
nothing calls this directly
no outgoing calls
no test coverage detected