Skip to content

Commit

Permalink
Testing 3rtx-timer sctp branch
Browse files Browse the repository at this point in the history
Update sctp dependency
  • Loading branch information
Hugo Arregui committed Apr 3, 2019
1 parent e8203b5 commit 4025365
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require (
github.com/pions/quic v0.1.0
github.com/pions/rtcp v1.1.2
github.com/pions/rtp v1.1.0
github.com/pions/sctp v1.4.3
github.com/pions/sctp v1.4.4-0.20190402174643-866a26be67cb
github.com/pions/sdp/v2 v2.1.0
github.com/pions/srtp v1.1.2
github.com/pions/transport v0.5.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ github.com/pions/rtp v1.1.0/go.mod h1:Bro/2l0PS5C3SQaEpLA+H34kpKIurx3K2Zln/nKjRM
github.com/pions/sctp v1.4.0/go.mod h1:dAna+Ct/aIIFiGW45yhGzuQjULWD7ni1vjoKHa9DsyU=
github.com/pions/sctp v1.4.3 h1:1nFC6nP9MhO1KNELNTTb8ETnXn5IlVJQr9s6ak0Y4l0=
github.com/pions/sctp v1.4.3/go.mod h1:Yws4nn6vR0npKJ2n2R+Cm+0JGaMKca0M1pYdGXovz3o=
github.com/pions/sctp v1.4.4-0.20190402174643-866a26be67cb h1:KGsLwJBhSvNrjBAXf/BJUR4rmOVlh07KLmrikd+uds8=
github.com/pions/sctp v1.4.4-0.20190402174643-866a26be67cb/go.mod h1:w5pAII2ULom/flhRb8EB9eXfbKpWYMyxVm6MUKPjKmY=
github.com/pions/sdp/v2 v2.1.0 h1:YbbbaceX1aB6j3hPVdQ6GnniIRKqT/rmfnt4XvKR/E0=
github.com/pions/sdp/v2 v2.1.0/go.mod h1:KGRBcHfpkgJXjrzKJz2wj/Jf1KWnsHdoIiqtayQ5QmE=
github.com/pions/srtp v1.1.2 h1:mMhn9jsMUokSq+Owyviz6zw9BblBQhHiCB21kpP8KOE=
Expand Down
5 changes: 4 additions & 1 deletion sctptransport.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ func (r *SCTPTransport) Start(remoteCaps SCTPCapabilities) error {
return err
}

sctpAssociation, err := sctp.Client(r.dtlsTransport.conn)
sctpAssociation, err := sctp.Client(sctp.Config{
NetConn: r.dtlsTransport.conn,
LoggerFactory: r.api.settingEngine.LoggerFactory,
})
if err != nil {
return err
}
Expand Down

0 comments on commit 4025365

Please sign in to comment.