mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-03 18:53:13 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			843 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			843 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Package parse contains functions that can be used in the setup code for plugins.
 | 
						|
package parse
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
 | 
						|
	"github.com/coredns/caddy"
 | 
						|
	"github.com/coredns/coredns/plugin/pkg/transport"
 | 
						|
)
 | 
						|
 | 
						|
// TransferIn parses transfer statements: 'transfer from [address...]'.
 | 
						|
func TransferIn(c *caddy.Controller) (froms []string, err error) {
 | 
						|
	if !c.NextArg() {
 | 
						|
		return nil, c.ArgErr()
 | 
						|
	}
 | 
						|
	value := c.Val()
 | 
						|
	switch value {
 | 
						|
	default:
 | 
						|
		return nil, c.Errf("unknown property %s", value)
 | 
						|
	case "from":
 | 
						|
		froms = c.RemainingArgs()
 | 
						|
		if len(froms) == 0 {
 | 
						|
			return nil, c.ArgErr()
 | 
						|
		}
 | 
						|
		for i := range froms {
 | 
						|
			if froms[i] == "*" {
 | 
						|
				return nil, fmt.Errorf("can't use '*' in transfer from")
 | 
						|
			}
 | 
						|
			normalized, err := HostPort(froms[i], transport.Port)
 | 
						|
			if err != nil {
 | 
						|
				return nil, err
 | 
						|
			}
 | 
						|
			froms[i] = normalized
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return froms, nil
 | 
						|
}
 |