[bugfix] fix inflightRequestLock deadlock in tcp/udp tracing #60
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
take ipv4 tcp tracer as an example:

In tracer/tcp_ipv4, TCPTracer.send() make a channel without buffer which is used to receive the result hop.
However, when send() is timeout, the func returns. So there will be no receivers to receive the channel, which causes the channel blocked forever.


The result hop sended to the channel after timeout will block forever too. And the inflightRequestLock never unlocks, causing all the send() goroutines blocked forever and the waitgroup will never done. Then, deadlock.
The same thing occurs in ipv6 tcp and udp tracer too.
This bugfix makes the channel with 1 buffer, which can avoid the send block.