Skip to content

Commit d7b905e

Browse files
author
uoosef
committed
fix small bugs
1 parent 087f189 commit d7b905e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ type readOnlyConn struct {
211211

212212
func (conn readOnlyConn) Read(p []byte) (int, error) { return conn.reader.Read(p) }
213213
func (conn readOnlyConn) Write(p []byte) (int, error) { return 0, io.ErrClosedPipe }
214-
func (conn readOnlyConn) Close() error { return nil }
214+
func (conn readOnlyConn) Close() error { return conn.Close() }
215215
func (conn readOnlyConn) LocalAddr() net.Addr { return nil }
216216
func (conn readOnlyConn) RemoteAddr() net.Addr { return nil }
217217
func (conn readOnlyConn) SetDeadline(t time.Time) error { return nil }
@@ -322,7 +322,7 @@ func main() {
322322
var wg sync.WaitGroup
323323
wg.Add(3)
324324

325-
limiter := rate.NewLimiter(100, 500) // 1 request per second with a burst size of 5
325+
limiter := rate.NewLimiter(10, 50) // 1 request per second with a burst size of 5
326326

327327
go func() {
328328
runDOHServer(limiter)

0 commit comments

Comments
 (0)