mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-04 03:03:14 -05:00 
			
		
		
		
	This fix fixes import path from `github.com/miekg/coredns` -> `github.com/coredns/coredns`
		
			
				
	
	
		
			24 lines
		
	
	
		
			700 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			700 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Package loadbalance is middleware for rewriting responses to do "load balancing"
 | 
						|
package loadbalance
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/coredns/coredns/middleware"
 | 
						|
 | 
						|
	"github.com/miekg/dns"
 | 
						|
	"golang.org/x/net/context"
 | 
						|
)
 | 
						|
 | 
						|
// RoundRobin is middleware to rewrite responses for "load balancing".
 | 
						|
type RoundRobin struct {
 | 
						|
	Next middleware.Handler
 | 
						|
}
 | 
						|
 | 
						|
// ServeDNS implements the middleware.Handler interface.
 | 
						|
func (rr RoundRobin) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) {
 | 
						|
	wrr := &RoundRobinResponseWriter{w}
 | 
						|
	return middleware.NextOrFailure(rr.Name(), rr.Next, ctx, wrr, r)
 | 
						|
}
 | 
						|
 | 
						|
// Name implements the Handler interface.
 | 
						|
func (rr RoundRobin) Name() string { return "loadbalance" }
 |