mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-04-03 22:03:36 +03:00
revert AddRule
This commit is contained in:
parent
670f2ec94f
commit
81b8c3a5c8
2 changed files with 3 additions and 3 deletions
|
@ -55,7 +55,7 @@ func (s *routingServer) OverrideBalancerTarget(ctx context.Context, request *Ove
|
|||
|
||||
func (s *routingServer) AddRule(ctx context.Context, request *AddRuleRequest) (*AddRuleResponse, error) {
|
||||
if bo, ok := s.router.(routing.Router); ok {
|
||||
return &AddRuleResponse{}, bo.AddRule(request.Config, request.ShouldAppend, false)
|
||||
return &AddRuleResponse{}, bo.AddRule(request.Config, request.ShouldAppend)
|
||||
}
|
||||
return nil, errors.New("unsupported router implementation")
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ type Router interface {
|
|||
|
||||
// PickRoute returns a route decision based on the given routing context.
|
||||
PickRoute(ctx Context) (Route, error)
|
||||
AddRule(config *serial.TypedMessage, shouldAppend bool, prependRules bool) error
|
||||
AddRule(config *serial.TypedMessage, shouldAppend bool) error
|
||||
RemoveRule(tag string) error
|
||||
RestrictionRule(restriction *route.Restriction, ip net.IP) error
|
||||
}
|
||||
|
@ -62,7 +62,7 @@ func (DefaultRouter) PickRoute(ctx Context) (Route, error) {
|
|||
}
|
||||
|
||||
// AddRule implements Router.
|
||||
func (DefaultRouter) AddRule(config *serial.TypedMessage, shouldAppend bool, prependRules bool) error {
|
||||
func (DefaultRouter) AddRule(config *serial.TypedMessage, shouldAppend bool) error {
|
||||
return common.ErrNoClue
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue