mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
deps: upgrade dependencies after Go 1.21 releases (#12)
This commit is contained in:
parent
e725752674
commit
f7b03bf6b3
5 changed files with 36 additions and 35 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue