mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-06-17 12:28:57 -04:00
Bumps [github.com/go-ldap/ldap/v3](https://github.com/go-ldap/ldap) from 3.4.12 to 3.4.13. - [Release notes](https://github.com/go-ldap/ldap/releases) - [Commits](https://github.com/go-ldap/ldap/compare/v3.4.12...v3.4.13) --- updated-dependencies: - dependency-name: github.com/go-ldap/ldap/v3 dependency-version: 3.4.13 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
369 B
Go
21 lines
369 B
Go
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
package ntlmssp
|
|
|
|
type avID uint16
|
|
|
|
const (
|
|
avIDMsvAvEOL avID = iota
|
|
avIDMsvAvNbComputerName
|
|
avIDMsvAvNbDomainName
|
|
avIDMsvAvDNSComputerName
|
|
avIDMsvAvDNSDomainName
|
|
avIDMsvAvDNSTreeName
|
|
avIDMsvAvFlags
|
|
avIDMsvAvTimestamp
|
|
avIDMsvAvSingleHost
|
|
avIDMsvAvTargetName
|
|
avIDMsvChannelBindings
|
|
)
|