2025-10-23 20:01:57 +03:00
|
|
|
// Package loadbalance is a plugin for rewriting responses to do "load balancing".
|
2016-03-23 15:57:48 +00:00
|
|
|
package loadbalance
|
|
|
|
|
|
|
|
|
|
import (
|
2018-04-20 11:01:06 +01:00
|
|
|
"context"
|
|
|
|
|
|
2018-04-22 08:34:35 +01:00
|
|
|
"github.com/coredns/coredns/plugin"
|
|
|
|
|
|
2016-03-23 15:57:48 +00:00
|
|
|
"github.com/miekg/dns"
|
|
|
|
|
)
|
|
|
|
|
|
2025-10-23 20:01:57 +03:00
|
|
|
// LoadBalance is a plugin to rewrite responses for "load balancing".
|
2023-01-27 17:36:56 +01:00
|
|
|
type LoadBalance struct {
|
|
|
|
|
Next plugin.Handler
|
|
|
|
|
shuffle func(*dns.Msg) *dns.Msg
|
2016-03-23 15:57:48 +00:00
|
|
|
}
|
|
|
|
|
|
2017-09-14 09:36:06 +01:00
|
|
|
// ServeDNS implements the plugin.Handler interface.
|
2023-01-27 17:36:56 +01:00
|
|
|
func (lb LoadBalance) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) {
|
|
|
|
|
rw := &LoadBalanceResponseWriter{ResponseWriter: w, shuffle: lb.shuffle}
|
|
|
|
|
return plugin.NextOrFailure(lb.Name(), lb.Next, ctx, rw, r)
|
2016-03-23 15:57:48 +00:00
|
|
|
}
|
2016-10-26 10:01:52 +01:00
|
|
|
|
2016-10-27 11:48:37 +00:00
|
|
|
// Name implements the Handler interface.
|
2023-01-27 17:36:56 +01:00
|
|
|
func (lb LoadBalance) Name() string { return "loadbalance" }
|