本文整理汇总了Golang中github.com/jsimonetti/ldapserv/ldap.Message.GetCompareRequest方法的典型用法代码示例。如果您正苦于以下问题:Golang Message.GetCompareRequest方法的具体用法?Golang Message.GetCompareRequest怎么用?Golang Message.GetCompareRequest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/jsimonetti/ldapserv/ldap.Message
的用法示例。
在下文中一共展示了Message.GetCompareRequest方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: Compare
// The resultCode is set to compareTrue, compareFalse, or an appropriate
// error. compareTrue indicates that the assertion value in the ava
// Comparerequest field matches a value of the attribute or subtype according to the
// attribute's EQUALITY matching rule. compareFalse indicates that the
// assertion value in the ava field and the values of the attribute or
// subtype did not match. Other result codes indicate either that the
// result of the comparison was Undefined, or that
// some error occurred.
func (l *LdifBackend) Compare(w ldap.ResponseWriter, m *ldap.Message) {
r := m.GetCompareRequest()
l.Log.Debug("Comparing entry", log.Ctx{"entry": r.Entry(), "name": r.Ava().AttributeDesc(), "value": r.Ava().AssertionValue()})
//attributes values
res := ldap.NewCompareResponse(ldap.LDAPResultCompareTrue)
w.Write(res)
}