2016-03-23 15:57:48 +00:00
|
|
|
// Package loadbalance is middleware for rewriting responses to do "load balancing"
|
|
|
|
|
package loadbalance
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/miekg/coredns/middleware"
|
2016-04-19 11:13:24 +01:00
|
|
|
|
2016-03-23 15:57:48 +00:00
|
|
|
"github.com/miekg/dns"
|
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// RoundRobin is middleware to rewrite responses for "load balancing".
|
|
|
|
|
type RoundRobin struct {
|
|
|
|
|
Next middleware.Handler
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-19 11:13:24 +01:00
|
|
|
// ServeDNS implements the middleware.Handler interface.
|
2016-03-23 15:57:48 +00:00
|
|
|
func (rr RoundRobin) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) {
|
2016-09-23 09:14:12 +01:00
|
|
|
wrr := &RoundRobinResponseWriter{w}
|
2016-03-23 15:57:48 +00:00
|
|
|
return rr.Next.ServeDNS(ctx, wrr, r)
|
|
|
|
|
}
|