-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparam.go
47 lines (36 loc) · 1.01 KB
/
param.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package goVirtualHost
import (
"errors"
"fmt"
)
var CertificateNotFound = errors.New("certificate not found for TLS listens")
func (param *param) hasHostNames(checkHostNames []string) bool {
if len(param.hostNames) == 0 || len(checkHostNames) == 0 {
return false
}
for _, checkHostName := range checkHostNames {
if contains(param.hostNames, checkHostName) {
return true
}
}
return false
}
func (param *param) hasHostName(checkHostName string) bool {
if len(param.hostNames) == 0 || len(checkHostName) == 0 {
return false
}
if contains(param.hostNames, checkHostName) {
return true
}
return false
}
func (param *param) stacksEqual(other *param) bool {
return param.proto == other.proto && param.ip == other.ip && param.port == other.port
}
func (param *param) validate() (errs []error) {
if param.useTLS && len(param.certKeyPaths)+len(param.certs) == 0 {
err := wrapError(CertificateNotFound, fmt.Sprintf("certificate not found for TLS listens: %+v", param))
errs = append(errs, err)
}
return
}