blob: 368221e2269c8279a22d9b6240e64c7d3735ed43 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: BSD-3-Clause
package ipnserver
import "net/http"
func (s *Server) handleProxyConnectConn(w http.ResponseWriter, r *http.Request) {
panic("unreachable")
}
|