Skip to content

Commit

Permalink
adds NewServerTLS
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvdg committed Oct 2, 2017
1 parent f2794a0 commit d2f1644
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions redcon.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,16 @@ func NewServer(addr string,
return NewServerNetwork("tcp", addr, handler, accept, closed)
}

// NewServerTLS returns a new Redcon TLS server configured on "tcp" network net.
func NewServerTLS(addr string,
handler func(conn Conn, cmd Command),
accept func(conn Conn) bool,
closed func(conn Conn, err error),
config *tls.Config,
) *TLSServer {
return NewServerNetworkTLS("tcp", addr, handler, accept, closed, config)
}

// NewServerNetwork returns a new Redcon server. The network net must be
// a stream-oriented network: "tcp", "tcp4", "tcp6", "unix" or "unixpacket"
func NewServerNetwork(
Expand Down

0 comments on commit d2f1644

Please sign in to comment.