Revert "Update deps"

This reverts commit 49e5c87f8d.
This commit is contained in:
Frank Denis 2018-05-16 11:53:20 +02:00
parent d87f3618ac
commit f44d9f658b
22 changed files with 296 additions and 685 deletions

View file

@ -13,7 +13,7 @@ import (
"time"
)
// Default maximum number of TCP queries before we close the socket.
// Maximum number of TCP queries before we close the socket.
const maxTCPQueries = 128
// Interval for stop worker if no load
@ -303,8 +303,6 @@ type Server struct {
DecorateReader DecorateReader
// DecorateWriter is optional, allows customization of the process that writes raw DNS messages.
DecorateWriter DecorateWriter
// Maximum number of TCP queries before we close the socket. Default is maxTCPQueries (unlimited if -1).
MaxTCPQueries int
// UDP packet or TCP connection queue
queue chan *response
@ -595,12 +593,8 @@ func (srv *Server) serve(w *response) {
timeout := srv.getReadTimeout()
limit := srv.MaxTCPQueries
if limit == 0 {
limit = maxTCPQueries
}
for q := 0; q < limit || limit == -1; q++ {
// TODO(miek): make maxTCPQueries configurable?
for q := 0; q < maxTCPQueries; q++ {
var err error
w.msg, err = reader.ReadTCP(w.tcp, timeout)
if err != nil {