Unverified Commit 428ca2ca authored by VeNoMouS's avatar VeNoMouS Committed by GitHub
Browse files

fix: default PreSharedKeyExtension bug (#248) (#251)

parent 75eb8e9e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -54,8 +54,8 @@ type sessionController struct {
func newSessionController(uconn *UConn) *sessionController {
	return &sessionController{
		uconnRef:           uconn,
		sessionTicketExt:   &SessionTicketExtension{},
		pskExtension:       &UtlsPreSharedKeyExtension{},
		sessionTicketExt:   nil,
		pskExtension:       nil,
		state:              NoSession,
		locked:             false,
		callingLoadSession: false,