-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtype.go
98 lines (81 loc) · 1.66 KB
/
type.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package goVirtualHost
import (
"crypto/tls"
"net"
"net/http"
"sync"
)
// init host info
type HostInfo struct {
Listens []string
ListensPlain []string
ListensTLS []string
CertKeyPaths [][2]string // []{ {certFile, keyFile}, ... }
Certs []*tls.Certificate
HostNames []string
Handler http.Handler
}
type certKeyPairs [][2]string
type certs []*tls.Certificate
// normalized HostInfo Param
type param struct {
proto string // "tcp", "tcp4", "tcp6"
ip string
port string
useTLS bool
certKeyPaths certKeyPairs
certs certs
hostNames []string
}
type params []*param
// wrapper of net.Listener
type listenable struct {
proto string // "tcp", "tcp4", "tcp6"
ip string
port string
listener net.Listener
serveable *serveable
}
type listenables []*listenable
// wrapper for http.Server
type serveable struct {
useTLS bool
vhosts vhosts
defaultVhost *vhost
server *http.Server
}
type serveables []*serveable
// virtual host
type vhost struct {
hostNames []string
certKeyPaths certKeyPairs
loadedCerts certs // load from `certKeyPaths` + `certs`
certs certs
handler http.Handler
}
type vhosts []*vhost
// service
type state int
const (
statePrepare state = iota
stateOpened
stateClosed
)
type Service struct {
mu sync.Mutex
state state
params params
listenables listenables
serveables serveables
vhosts vhosts
}
// ip
type ipAddr struct {
netIP net.IP
version int
isGlobalUnicast bool
isLinkLocalUnicast bool
isNonPrivate bool
isNonLoopback bool
}
type ipAddrs []*ipAddr