mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
18 lines
293 B
Go
18 lines
293 B
Go
|
package ntlmssp
|
||
|
|
||
|
type avID uint16
|
||
|
|
||
|
const (
|
||
|
avIDMsvAvEOL avID = iota
|
||
|
avIDMsvAvNbComputerName
|
||
|
avIDMsvAvNbDomainName
|
||
|
avIDMsvAvDNSComputerName
|
||
|
avIDMsvAvDNSDomainName
|
||
|
avIDMsvAvDNSTreeName
|
||
|
avIDMsvAvFlags
|
||
|
avIDMsvAvTimestamp
|
||
|
avIDMsvAvSingleHost
|
||
|
avIDMsvAvTargetName
|
||
|
avIDMsvChannelBindings
|
||
|
)
|