mirror of
https://github.com/amnezia-vpn/amneziawg-go.git
synced 2025-06-07 22:03:44 +02:00
12 lines
258 B
Go
12 lines
258 B
Go
//go:build !windows
|
|
|
|
/* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved.
|
|
*/
|
|
|
|
package conn
|
|
|
|
func NewDefaultBind(logger *Logger, errorChan chan<- error) Bind {
|
|
return CreateStdNetBind("tls", logger, errorChan)
|
|
}
|