-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhostInfo.go
52 lines (43 loc) · 1.23 KB
/
hostInfo.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
48
49
50
51
52
package goVirtualHost
func (info *HostInfo) toParam(listen string, useTLS bool) *param {
proto, ip, port := splitListen(listen, false)
var certKeyPaths certKeyPairs
var certs certs
if useTLS {
certKeyPaths = info.CertKeyPaths
certs = info.Certs
}
param := ¶m{
proto: proto,
ip: ip,
port: port,
useTLS: useTLS,
certKeyPaths: certKeyPaths,
certs: certs,
}
return param
}
func (info *HostInfo) parse() (params params, hostNames []string, certKeyPaths certKeyPairs, certs certs) {
hostNames = normalizeHostNames(info.HostNames)
useTLSForListen := len(info.CertKeyPaths)+len(info.Certs) > 0
if (useTLSForListen && len(info.Listens) > 0) || len(info.ListensTLS) > 0 {
certKeyPaths = info.CertKeyPaths
certs = info.Certs
}
for _, listen := range info.Listens {
param := info.toParam(listen, useTLSForListen)
param.hostNames = hostNames
params = append(params, param)
}
for _, listen := range info.ListensPlain {
param := info.toParam(listen, false)
param.hostNames = hostNames
params = append(params, param)
}
for _, listen := range info.ListensTLS {
param := info.toParam(listen, true)
param.hostNames = hostNames
params = append(params, param)
}
return
}