i think logging is done

This commit is contained in:
2021-02-26 20:27:35 -05:00
parent d085d0f3ee
commit fe378850af
9 changed files with 589 additions and 24 deletions

View File

@@ -10,17 +10,6 @@ type BitMask interface {
// BitMasks
type MaskBit uint8
// LDAP Connection flags
const (
LdapBindUndefined MaskBit = 1 << iota
LdapBindNone // GSSAPI via SASL or (TODO) Anonymous bind
LdapBindNet
LdapBindTls
LdapBindStartTls
LdapBindSasl
LdapBindNoPassword
)
func (f MaskBit) HasFlag(flag MaskBit) (r bool) {
if f&flag != 0 {
r = true