52 lines
1.1 KiB
Go
Raw Normal View History

2021-12-04 16:42:11 +00:00
// 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 .
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 .
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
}
}
return &Server{Engine: NewEngine(conf)}
}