2018-05-24 14:36:42 +00:00
|
|
|
// +build !ent
|
|
|
|
|
|
|
|
package consul
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/agent/pool"
|
|
|
|
"github.com/hashicorp/serf/serf"
|
|
|
|
)
|
|
|
|
|
|
|
|
type EnterpriseServer struct{}
|
|
|
|
|
|
|
|
func (s *Server) initEnterprise() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) startEnterprise() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) handleEnterpriseUserEvents(event serf.UserEvent) bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) handleEnterpriseRPCConn(rtype pool.RPCType, conn net.Conn, isTLS bool) bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) enterpriseStats() map[string]map[string]string {
|
|
|
|
return nil
|
|
|
|
}
|
2019-01-18 17:58:01 +00:00
|
|
|
|
|
|
|
func (s *Server) intentionReplicationEnabled() bool {
|
|
|
|
return false
|
|
|
|
}
|