forked from Deuxfleurs/bottin
9e4b4a0162
Changement des imports dans les fichiers go de bottin et ldapserver. Rajout d'un fichier txt dans test-automatique pour reproduire le bug des requêtes ldap.
29 lines
803 B
Go
29 lines
803 B
Go
package message
|
|
|
|
import "fmt"
|
|
|
|
//
|
|
// MatchingRuleId ::= LDAPString
|
|
func readTaggedMatchingRuleId(bytes *Bytes, class int, tag int) (matchingruleid MatchingRuleId, err error) {
|
|
var ldapstring LDAPString
|
|
ldapstring, err = readTaggedLDAPString(bytes, class, tag)
|
|
if err != nil {
|
|
err = LdapError{fmt.Sprintf("readTaggedMatchingRuleId:\n%s", err.Error())}
|
|
return
|
|
}
|
|
matchingruleid = MatchingRuleId(ldapstring)
|
|
return
|
|
}
|
|
func (m MatchingRuleId) Pointer() *MatchingRuleId { return &m }
|
|
|
|
//
|
|
// MatchingRuleId ::= LDAPString
|
|
func (m MatchingRuleId) writeTagged(bytes *Bytes, class int, tag int) int {
|
|
return LDAPString(m).writeTagged(bytes, class, tag)
|
|
}
|
|
|
|
//
|
|
// MatchingRuleId ::= LDAPString
|
|
func (m MatchingRuleId) sizeTagged(tag int) int {
|
|
return LDAPString(m).sizeTagged(tag)
|
|
}
|