| 519 | |
| 520 | |
| 521 | void SSL_flush_sessions(SSL_CTX *ctx, long /* tm */) |
| 522 | { |
| 523 | if (ctx->GetSessionCacheOff()) |
| 524 | return; |
| 525 | |
| 526 | GetSessions().Flush(); |
| 527 | } |
| 528 | |
| 529 | |
| 530 | const char* SSL_get_cipher_name(SSL* ssl) |
nothing calls this directly
no test coverage detected