notify read and write on remote close

pull/255/merge
Darien Raymond 2016-12-26 08:22:25 +01:00
parent 52fcfd71e6
commit 29d62185cf
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
1 changed files with 4 additions and 0 deletions

View File

@ -517,6 +517,10 @@ func (v *Connection) Input(segments []Segment) {
v.SetState(StateTerminated)
}
}
if seg.Option == SegmentOptionClose || seg.Command() == CommandTerminate {
v.OnDataInput()
v.OnDataOutput()
}
v.sendingWorker.ProcessReceivingNext(seg.ReceivinNext)
v.receivingWorker.ProcessSendingNext(seg.SendingNext)
v.roundTrip.UpdatePeerRTO(seg.PeerRTO, current)