From a4f8e83d5d9f477554971e90e9ab85922f506ea9 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Mon, 22 Feb 2021 02:01:50 +0100 Subject: conn: make binds replacable Signed-off-by: Jason A. Donenfeld --- conn/default.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 conn/default.go (limited to 'conn/default.go') diff --git a/conn/default.go b/conn/default.go new file mode 100644 index 0000000..cd9bfb0 --- /dev/null +++ b/conn/default.go @@ -0,0 +1,10 @@ +// +build !linux + +/* SPDX-License-Identifier: MIT + * + * Copyright (C) 2019-2021 WireGuard LLC. All Rights Reserved. + */ + +package conn + +func NewDefaultBind() Bind { return NewStdNetBind() } -- cgit v1.2.3-59-g8ed1b