forked from Deuxfleurs/bottin
24 lines
513 B
Go
24 lines
513 B
Go
package message
|
|
|
|
import "fmt"
|
|
|
|
//
|
|
// AttributeValue ::= OCTET STRING
|
|
|
|
func readAttributeValue(bytes *Bytes) (ret AttributeValue, err error) {
|
|
octetstring, err := readOCTETSTRING(bytes)
|
|
if err != nil {
|
|
err = LdapError{fmt.Sprintf("readAttributeValue:\n%s", err.Error())}
|
|
return
|
|
}
|
|
ret = AttributeValue(octetstring)
|
|
return
|
|
}
|
|
|
|
func (value AttributeValue) write(bytes *Bytes) int {
|
|
return OCTETSTRING(value).write(bytes)
|
|
}
|
|
|
|
func (value AttributeValue) size() int {
|
|
return OCTETSTRING(value).size()
|
|
}
|