2021-07-24 12:16:34 +02:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-07-24 12:16:34 +02:00
|
|
|
|
|
|
|
package ldap
|
|
|
|
|
|
|
|
// SecurityProtocol protocol type
|
|
|
|
type SecurityProtocol int
|
|
|
|
|
|
|
|
// Note: new type must be added at the end of list to maintain compatibility.
|
|
|
|
const (
|
|
|
|
SecurityProtocolUnencrypted SecurityProtocol = iota
|
|
|
|
SecurityProtocolLDAPS
|
|
|
|
SecurityProtocolStartTLS
|
|
|
|
)
|
|
|
|
|
|
|
|
// String returns the name of the SecurityProtocol
|
|
|
|
func (s SecurityProtocol) String() string {
|
|
|
|
return SecurityProtocolNames[s]
|
|
|
|
}
|
|
|
|
|
2021-07-25 09:09:52 +02:00
|
|
|
// Int returns the int value of the SecurityProtocol
|
|
|
|
func (s SecurityProtocol) Int() int {
|
|
|
|
return int(s)
|
|
|
|
}
|
|
|
|
|
2021-07-24 12:16:34 +02:00
|
|
|
// SecurityProtocolNames contains the name of SecurityProtocol values.
|
|
|
|
var SecurityProtocolNames = map[SecurityProtocol]string{
|
|
|
|
SecurityProtocolUnencrypted: "Unencrypted",
|
|
|
|
SecurityProtocolLDAPS: "LDAPS",
|
|
|
|
SecurityProtocolStartTLS: "StartTLS",
|
|
|
|
}
|