aboutsummaryrefslogtreecommitdiff
path: root/goldap/del_request.go
blob: ab24225746a6f87696a860657eaae7dfe49b814a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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)
}