(self, dc_host, domain, username, password)
| 19 | """Active Directory LDAP client""" |
| 20 | |
| 21 | def __init__(self, dc_host, domain, username, password): |
| 22 | self.dc_host = dc_host |
| 23 | self.domain = domain |
| 24 | self.username = username |
| 25 | self.password = password |
| 26 | self.connection = None |
| 27 | |
| 28 | def connect(self): |
| 29 | """Connect to Domain Controller using LDAP""" |
nothing calls this directly
no outgoing calls
no test coverage detected