Skip to content

Commit

Permalink
update vendor for QUIC (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
ginuerzh committed Nov 23, 2018
1 parent ed8e276 commit 8390640
Show file tree
Hide file tree
Showing 224 changed files with 23,739 additions and 23,586 deletions.
4 changes: 2 additions & 2 deletions quic.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func (session *quicSession) GetConn() (*quicConn, error) {
}

func (session *quicSession) Close() error {
return session.session.Close(nil)
return session.session.Close()
}

type quicTransporter struct {
Expand Down Expand Up @@ -226,7 +226,7 @@ func (l *quicListener) sessionLoop(session quic.Session) {
stream, err := session.AcceptStream()
if err != nil {
log.Log("[quic] accept stream:", err)
session.Close(err)
session.Close()
return
}

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 8390640

Please sign in to comment.