-
Notifications
You must be signed in to change notification settings - Fork 157
/
server.go
57 lines (51 loc) · 1.16 KB
/
server.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
// Copyright 2020 lesismal. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.
package nbhttp
import (
"net/http"
"github.com/lesismal/llib/std/crypto/tls"
)
// Server .
type Server struct {
*Engine
}
// NewServer .
//
//go:norace
func NewServer(conf Config, v ...interface{}) *Server {
if len(v) > 0 {
if handler, ok := v[0].(http.Handler); ok {
conf.Handler = handler
}
}
if len(v) > 1 {
if messageHandlerExecutor, ok := v[1].(func(f func())); ok {
conf.ServerExecutor = messageHandlerExecutor
}
}
return &Server{Engine: NewEngine(conf)}
}
// NewServerTLS .
//
//go:norace
func NewServerTLS(conf Config, v ...interface{}) *Server {
if len(v) > 0 {
if handler, ok := v[0].(http.Handler); ok {
conf.Handler = handler
}
}
if len(v) > 1 {
if messageHandlerExecutor, ok := v[1].(func(f func())); ok {
conf.ServerExecutor = messageHandlerExecutor
}
}
if len(v) > 2 {
if tlsConfig, ok := v[2].(*tls.Config); ok {
conf.TLSConfig = tlsConfig
}
}
conf.AddrsTLS = append(conf.AddrsTLS, conf.Addrs...)
conf.Addrs = nil
return &Server{Engine: NewEngine(conf)}
}