summaryrefslogtreecommitdiff
path: root/utilities/utilities.go
diff options
context:
space:
mode:
Diffstat (limited to 'utilities/utilities.go')
-rw-r--r--utilities/utilities.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/utilities/utilities.go b/utilities/utilities.go
index 16585d6..0046544 100644
--- a/utilities/utilities.go
+++ b/utilities/utilities.go
@@ -27,7 +27,7 @@ type GetLatency struct {
Err error
}
-func TimedSequentialGets(ctx context.Context, client_a *http.Client, client_b *http.Client, url string) chan GetLatency {
+func TimedSequentialRTTs(ctx context.Context, client_a *http.Client, client_b *http.Client, url string) chan GetLatency {
responseChannel := make(chan GetLatency)
go func() {
before := time.Now()