mirror of
				https://github.com/tailscale/tailscale.git
				synced 2025-11-04 10:11:18 +01:00 
			
		
		
		
	The one from the nhooyr/websocket package seems to work equally well. Signed-off-by: Mihai Parparita <mihai@tailscale.com>
		
			
				
	
	
		
			34 lines
		
	
	
		
			768 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			768 B
		
	
	
	
		
			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.
 | 
						|
 | 
						|
//go:build linux || js
 | 
						|
// +build linux js
 | 
						|
 | 
						|
package derphttp
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"log"
 | 
						|
	"net"
 | 
						|
 | 
						|
	"nhooyr.io/websocket"
 | 
						|
)
 | 
						|
 | 
						|
func init() {
 | 
						|
	dialWebsocketFunc = dialWebsocket
 | 
						|
}
 | 
						|
 | 
						|
func dialWebsocket(ctx context.Context, urlStr string) (net.Conn, error) {
 | 
						|
	c, res, err := websocket.Dial(ctx, urlStr, &websocket.DialOptions{
 | 
						|
		Subprotocols: []string{"derp"},
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		log.Printf("websocket Dial: %v, %+v", err, res)
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	log.Printf("websocket: connected to %v", urlStr)
 | 
						|
	netConn := websocket.NetConn(context.Background(), c, websocket.MessageBinary)
 | 
						|
	return netConn, nil
 | 
						|
}
 |