forked from Deuxfleurs/bottin
24 lines
568 B
Go
24 lines
568 B
Go
package message
|
|
|
|
import "fmt"
|
|
|
|
//
|
|
// DelRequest ::= [APPLICATION 10] LDAPDN
|
|
func readDelRequest(bytes *Bytes) (ret DelRequest, err error) {
|
|
var res LDAPDN
|
|
res, err = readTaggedLDAPDN(bytes, classApplication, TagDelRequest)
|
|
if err != nil {
|
|
err = LdapError{fmt.Sprintf("readDelRequest:\n%s", err.Error())}
|
|
return
|
|
}
|
|
ret = DelRequest(res)
|
|
return
|
|
}
|
|
|
|
func (del DelRequest) write(bytes *Bytes) int {
|
|
return LDAPDN(del).writeTagged(bytes, classApplication, TagDelRequest)
|
|
}
|
|
|
|
func (del DelRequest) size() int {
|
|
return LDAPDN(del).sizeTagged(TagDelRequest)
|
|
}
|