You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
435 B
15 lines
435 B
package message
|
|
|
|
//
|
|
// RelativeLDAPDN ::= LDAPString -- Constrained to <name-component>
|
|
// -- [RFC4514]
|
|
func (r RelativeLDAPDN) write(bytes *Bytes) int {
|
|
return LDAPString(r).write(bytes)
|
|
}
|
|
|
|
//
|
|
// RelativeLDAPDN ::= LDAPString -- Constrained to <name-component>
|
|
// -- [RFC4514]
|
|
func (r RelativeLDAPDN) size() int {
|
|
return LDAPString(r).size()
|
|
}
|
|
|