| 104 | |
| 105 | #if HAVE_LDAP |
| 106 | std::shared_ptr<LDAPHandler> NSHandler::getLDAPHandler() |
| 107 | { |
| 108 | if (!_ldap.get()) { |
| 109 | _ldap = _ldap = std::make_shared<LDAPHandler>(); |
| 110 | } |
| 111 | |
| 112 | return _ldap; |
| 113 | } |
| 114 | |
| 115 | #endif |
| 116 |
no outgoing calls
no test coverage detected