deps: upgrade dependencies after Go 1.21 releases (#12)

This commit is contained in:
Gaukas Wang 2023-08-08 23:15:52 -06:00 committed by GitHub
parent e725752674
commit f7b03bf6b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 36 additions and 35 deletions

View file

@ -342,7 +342,7 @@ func (h *cryptoSetup) GetSessionTicket() ([]byte, error) {
if h.tlsConf.SessionTicketsDisabled {
return nil, nil
}
if err := h.conn.SendSessionTicket(h.allow0RTT); err != nil {
if err := h.conn.SendSessionTicket(tls.QUICSessionTicketOptions{h.allow0RTT}); err != nil {
return nil, err
}
ev := h.conn.NextEvent()