mirror of
https://github.com/fhmq/hmq.git
synced 2026-09-01 15:24:53 +00:00
* modify * update * add acl * add feature * update dockerfile * add deploy * update * update * plugins * plugins * update * update * update * fixed * remove * fixed * add log * update * fixed * update * fix config * add http api * add http api * resp * add config for work chan * update * fixed * update * disable trace * fixed * change acl * fixed * fixed res * dd * dd * ddd * dd * update * fixed * update * add * fixed * update key * add log * update * format * update * update auth * update * update readme * added * update * fixed * fixed * fix * upade * update * update
37 lines
958 B
Go
37 lines
958 B
Go
// Package flags provides Kerberos 5 flag assigned numbers.
|
|
package flags
|
|
|
|
// Flag values for KRB5 messages and tickets.
|
|
const (
|
|
Reserved = 0
|
|
Forwardable = 1
|
|
Forwarded = 2
|
|
Proxiable = 3
|
|
Proxy = 4
|
|
AllowPostDate = 5
|
|
MayPostDate = 5
|
|
PostDated = 6
|
|
Invalid = 7
|
|
Renewable = 8
|
|
Initial = 9
|
|
PreAuthent = 10
|
|
HWAuthent = 11
|
|
OptHardwareAuth = 11
|
|
RequestAnonymous = 12
|
|
TransitedPolicyChecked = 12
|
|
OKAsDelegate = 13
|
|
EncPARep = 15
|
|
Canonicalize = 15
|
|
DisableTransitedCheck = 26
|
|
RenewableOK = 27
|
|
EncTktInSkey = 28
|
|
Renew = 30
|
|
Validate = 31
|
|
|
|
// AP Option Flags
|
|
// 0 Reserved for future use.
|
|
APOptionUseSessionKey = 1
|
|
APOptionMutualRequired = 2
|
|
// 3-31 Reserved for future use.
|
|
)
|