21 lines
512 B
Go
21 lines
512 B
Go
|
// +build !consulent
|
||
|
|
||
|
package state
|
||
|
|
||
|
import (
|
||
|
"github.com/hashicorp/consul/agent/structs"
|
||
|
)
|
||
|
|
||
|
func getIntentionPrecedenceMatchServiceNames(serviceName string, entMeta *structs.EnterpriseMeta) []structs.ServiceName {
|
||
|
if serviceName == structs.WildcardSpecifier {
|
||
|
return []structs.ServiceName{
|
||
|
structs.NewServiceName(structs.WildcardSpecifier, entMeta),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return []structs.ServiceName{
|
||
|
structs.NewServiceName(serviceName, entMeta),
|
||
|
structs.NewServiceName(structs.WildcardSpecifier, entMeta),
|
||
|
}
|
||
|
}
|