Skip to content

Commit af6b018

Browse files
committed
Fix ASPDN handling
1 parent fb734d3 commit af6b018

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

aspsm.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ func (c *Conn) handleAspUpAck(aspUpAck *messages.AspUpAck) error {
5050
func (c *Conn) handleAspDown(aspDown *messages.AspDown) error {
5151
switch c.State() {
5252
case StateAspInactive, StateAspActive:
53+
// expected, do nothing here
54+
default:
5355
return NewErrUnexpectedMessage(aspDown)
5456
}
5557
if c.StreamID() != 0 {

0 commit comments

Comments
 (0)