bottin/goldap/relative_ldap_dn.go
Quentin Dufour 563fc272a3
Vendor goldap, fix ASN.1 BER integer and length encoding
- Add tests for goldap to prevent regressions
 - Disable reconnection for our functional tests
2021-09-16 13:09:26 +02:00

15 lines
435 B
Go

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()
}