Home
last modified time | relevance | path

Searched refs:ServerSessionCache (Results 1 – 3 of 3) sorted by relevance

/external/boringssl/src/ssl/test/runner/
Dcommon.go314 type ServerSessionCache interface { interface
425 ServerSessionCache ServerSessionCache member
2004 func NewLRUServerSessionCache(capacity int) ServerSessionCache {
Dhandshake_server.go1481 if c.config.ServerSessionCache == nil {
1487 if hs.sessionState, ok = c.config.ServerSessionCache.Get(sessionId); !ok {
1600 if !hs.hello.extensions.ticketSupported && config.ServerSessionCache != nil {
1932 if c.config.ServerSessionCache != nil && len(hs.hello.sessionId) != 0 {
1933 c.config.ServerSessionCache.Put(string(hs.hello.sessionId), &state)
Drunner.go689 if config.ServerSessionCache == nil {
690 config.ServerSessionCache = NewLRUServerSessionCache(1)
1368 resumeConfig.ServerSessionCache = config.ServerSessionCache