1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-11 18:30:43 +00:00
This commit is contained in:
KujouRinka 2022-01-02 17:16:12 +08:00 committed by GitHub
parent e8949234fd
commit d24c276cc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -27,7 +27,7 @@ type Balancer struct {
override override
}
// PickOutbound picks the tag of a outbound
// PickOutbound picks the tag of an outbound
func (b *Balancer) PickOutbound() (string, error) {
candidates, err := b.SelectOutbounds()
if err != nil {

View File

@ -149,7 +149,7 @@ type PortMatcher struct {
onSource bool
}
// NewPortMatcher create a new port matcher that can match source or destination port
// NewPortMatcher creates a new port matcher that can match source or destination port
func NewPortMatcher(list *net.PortList, onSource bool) *PortMatcher {
return &PortMatcher{
port: net.PortListFromProto(list),

View File

@ -126,7 +126,7 @@ func (r *Router) Close() error {
return nil
}
// Type implement common.HasType.
// Type implements common.HasType.
func (*Router) Type() interface{} {
return routing.RouterType()
}

View File

@ -28,7 +28,7 @@ type WeightManager struct {
defaultWeight float64
}
// Get get the weight of specified tag
// Get gets the weight of specified tag
func (s *WeightManager) Get(tag string) float64 {
weight, ok := s.cache[tag]
if ok {

View File

@ -133,7 +133,7 @@ type MatcherGroupForRegex interface {
AddRegexMatcher(matcher *RegexMatcher, value uint32)
}
// AddMatcherGroup is a helper function to try to add a Matcher to any kind of MatcherGroup.
// AddMatcherToGroup is a helper function to try to add a Matcher to any kind of MatcherGroup.
// It returns error if the MatcherGroup does not accept the provided Matcher's type.
// This function is provided to help writing code to test a MatcherGroup.
func AddMatcherToGroup(g MatcherGroup, matcher Matcher, value uint32) error {