Matching a no-op tcp connection will blocking for-ever
barryz opened this issue · 2 comments
barryz commented
Once a tcp connection established, but without send any data. Like nc localhost 8080
with no latter
operations.
This may cause the matching process to block for-ever until a min length of data is received and the connection may never receives a stop signal(donec
). Issue code line :
Line 184 in 8a8ea3c
july2993 commented
maybe you can set SetReadTimeout
to address you problem
barryz commented
yep, I already fixed it. Thanks for your reply.