get attribute val function

This commit is contained in:
2026-04-03 18:36:26 -04:00
parent a2602f74f0
commit e2531e3021

View File

@@ -23,3 +23,7 @@ func (s *LDAPSearch) GetEntry(number int) *LDAPEntry {
func (e *LDAPEntry) GetRawAttributeValue(name string) []byte {
return e.entry.GetRawAttributeValue(name)
}
func (e *LDAPEntry) GetAttributeValue(name string) string {
return e.entry.GetAttributeValue(name)
}