mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-05 13:07:36 +03:00
fix: Reuse existing PreSharedKeyExtension bug (#248)
This commit is contained in:
parent
75eb8e9e80
commit
780a63e47b
1 changed files with 2 additions and 2 deletions
|
@ -54,8 +54,8 @@ type sessionController struct {
|
||||||
func newSessionController(uconn *UConn) *sessionController {
|
func newSessionController(uconn *UConn) *sessionController {
|
||||||
return &sessionController{
|
return &sessionController{
|
||||||
uconnRef: uconn,
|
uconnRef: uconn,
|
||||||
sessionTicketExt: &SessionTicketExtension{},
|
sessionTicketExt: nil,
|
||||||
pskExtension: &UtlsPreSharedKeyExtension{},
|
pskExtension: nil,
|
||||||
state: NoSession,
|
state: NoSession,
|
||||||
locked: false,
|
locked: false,
|
||||||
callingLoadSession: false,
|
callingLoadSession: false,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue