| 40 | namespace usbguard |
| 41 | { |
| 42 | LDAPRuleSet::LDAPRuleSet(Interface* const interface_ptr, std::shared_ptr<LDAPHandler> ldap) |
| 43 | : RuleSet(interface_ptr), |
| 44 | _LDAP(ldap), |
| 45 | _last_update(0) |
| 46 | |
| 47 | { |
| 48 | clearWritable(); |
| 49 | USBGUARD_LOG(Info) << "Creating LDAPRuleSet"; |
| 50 | } |
| 51 | |
| 52 | LDAPRuleSet::LDAPRuleSet(const LDAPRuleSet& rhs) |
| 53 | : RuleSet(rhs._interface_ptr), |
nothing calls this directly
no outgoing calls
no test coverage detected