https://github.com/WireGuard/wireguard-windows/pull/10 don't appear to be of interest, and now need big rebasing. Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
16 lines
311 B
Go
16 lines
311 B
Go
// +build !windows
|
|
|
|
/* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
|
|
*/
|
|
|
|
package conf
|
|
|
|
func platformEnvelope(bytes []byte, name string) ([]byte, error) {
|
|
return bytes, nil
|
|
}
|
|
|
|
func platformUnenvelope(bytes []byte, name string) ([]byte, error) {
|
|
return bytes, nil
|
|
}
|