diff options
Diffstat (limited to 'modify.go')
-rw-r--r-- | modify.go | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -42,6 +42,12 @@ const ( ReplaceAttribute = 2 ) +var LDAPModifyAttributeMap = map[uint64]string{ + AddAttribute: "Add", + DeleteAttribute: "Delete", + ReplaceAttribute: "Replace", +} + type PartialAttribute struct { attrType string attrVals []string |