diff --git a/sctptransport.go b/sctptransport.go index d26ca3f806e..68f40b9079d 100644 --- a/sctptransport.go +++ b/sctptransport.go @@ -153,10 +153,8 @@ func (r *SCTPTransport) Stop() error { if r.sctpAssociation == nil { return nil } - err := r.sctpAssociation.Close() - if err != nil { - return err - } + + r.sctpAssociation.Abort("") r.sctpAssociation = nil r.state = SCTPTransportStateClosed