mirror of
				https://github.com/tailscale/tailscale.git
				synced 2025-10-30 15:52:02 +01:00 
			
		
		
		
	Added the net/speedtest package that contains code for starting up a speedtest server and a client. The speedtest command for starting a client takes in a duration for the speedtest as well as the host and port of the speedtest server to connect to. The speedtest command for starting a server takes in a host:port pair to listen on. Signed-off-by: Aaditya Chaudhary <32117362+AadityaChaudhary@users.noreply.github.com>
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) 2021 Tailscale Inc & AUTHORS All rights reserved.
 | |
| // Use of this source code is governed by a BSD-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| package speedtest
 | |
| 
 | |
| import (
 | |
| 	"encoding/json"
 | |
| 	"errors"
 | |
| 	"net"
 | |
| 	"time"
 | |
| )
 | |
| 
 | |
| // RunClient dials the given address and starts a speedtest.
 | |
| // It returns any errors that come up in the tests.
 | |
| // If there are no errors in the test, it returns a slice of results.
 | |
| func RunClient(direction Direction, duration time.Duration, host string) ([]Result, error) {
 | |
| 	conn, err := net.Dial("tcp", host)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	conf := config{TestDuration: duration, Version: version, Direction: direction}
 | |
| 
 | |
| 	defer conn.Close()
 | |
| 	encoder := json.NewEncoder(conn)
 | |
| 
 | |
| 	if err = encoder.Encode(conf); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	var response configResponse
 | |
| 	decoder := json.NewDecoder(conn)
 | |
| 	if err = decoder.Decode(&response); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if response.Error != "" {
 | |
| 		return nil, errors.New(response.Error)
 | |
| 	}
 | |
| 
 | |
| 	return doTest(conn, conf)
 | |
| }
 |