mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 19:45:35 +00:00
c2d7940ec0
Signed-off-by: Andrew Dunham <andrew@du.nham.ca> Change-Id: I7a39f4eeeb583b73ecffaf4c5f086a38e3a53e2e
19 lines
449 B
Go
19 lines
449 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 go1.19 && (linux || darwin || freebsd || openbsd) && !ts_omit_bird
|
|
|
|
package main
|
|
|
|
import (
|
|
"tailscale.com/chirp"
|
|
"tailscale.com/wgengine"
|
|
)
|
|
|
|
func init() {
|
|
createBIRDClient = func(ctlSocket string) (wgengine.BIRDClient, error) {
|
|
return chirp.New(ctlSocket)
|
|
}
|
|
}
|