| 118 | |
| 119 | |
| 120 | Context::Ptr SSLManager::defaultServerContext() |
| 121 | { |
| 122 | Poco::FastMutex::ScopedLock lock(_mutex); |
| 123 | |
| 124 | if (!_ptrDefaultServerContext) |
| 125 | initDefaultContext(true); |
| 126 | |
| 127 | return _ptrDefaultServerContext; |
| 128 | } |
| 129 | |
| 130 | |
| 131 | Context::Ptr SSLManager::defaultClientContext() |
no outgoing calls
no test coverage detected