This commit is contained in:
jingtao01 2019-06-06 17:33:47 +08:00
parent c9248d507a
commit c359375104
1 changed files with 3 additions and 0 deletions

View File

@ -188,6 +188,9 @@ func (stm *stream) resolve() {
for {
select {
case packet := <- stm.packets:
if packet.length == 0 {
break
}
if packet.isClientFlow {
stm.resolveClientPacket(packet.payload, packet.seq)
} else {