mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-03 13:43:16 -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>
24 lines
582 B
Go
24 lines
582 B
Go
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
package ntlmssp
|
|
|
|
// Version is a struct representing https://msdn.microsoft.com/en-us/library/cc236654.aspx
|
|
type Version struct {
|
|
ProductMajorVersion uint8
|
|
ProductMinorVersion uint8
|
|
ProductBuild uint16
|
|
_ [3]byte
|
|
NTLMRevisionCurrent uint8
|
|
}
|
|
|
|
// DefaultVersion returns a Version with "sensible" defaults (Windows 7)
|
|
func DefaultVersion() Version {
|
|
return Version{
|
|
ProductMajorVersion: 6,
|
|
ProductMinorVersion: 1,
|
|
ProductBuild: 7601,
|
|
NTLMRevisionCurrent: 15,
|
|
}
|
|
}
|