Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stub_conn_test.go « ratelimiter « internal - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d7a4a9a69b51ca80ec281fe9b832f6d444d7002 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package ratelimiter

import (
	"net"
)

type stubConn struct {
	net.Conn
	remoteAddr net.Addr
}

func (s stubConn) RemoteAddr() net.Addr {
	return s.remoteAddr
}