* Add MLOG for sql store * Update printf function * Update store/sqlstore/supplier.go Co-Authored-By: Martin Kraft <martin@upspin.org> * Update go mod * update go mod and tidy it up * update vendor folder
31 строка
740 B
Go
31 строка
740 B
Go
package ldap
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"time"
|
|
)
|
|
|
|
// Client knows how to interact with an LDAP server
|
|
type Client interface {
|
|
Start()
|
|
StartTLS(*tls.Config) error
|
|
Close()
|
|
SetTimeout(time.Duration)
|
|
|
|
Bind(username, password string) error
|
|
UnauthenticatedBind(username string) error
|
|
SimpleBind(*SimpleBindRequest) (*SimpleBindResult, error)
|
|
ExternalBind() error
|
|
|
|
Add(*AddRequest) error
|
|
Del(*DelRequest) error
|
|
Modify(*ModifyRequest) error
|
|
ModifyDN(*ModifyDNRequest) error
|
|
|
|
Compare(dn, attribute, value string) (bool, error)
|
|
PasswordModify(*PasswordModifyRequest) (*PasswordModifyResult, error)
|
|
|
|
Search(*SearchRequest) (*SearchResult, error)
|
|
SearchWithPaging(searchRequest *SearchRequest, pagingSize uint32) (*SearchResult, error)
|
|
}
|