mirror of
https://github.com/amnezia-vpn/amneziawg-go.git
synced 2025-04-18 06:56:54 +02:00
The patch was provided by: Naveen Nathan <naveen@lastninja.net> The following modifications to the patch was made: - Added copyright notice - Fixed file descriptor leak in .MTU() method - Migrated to the new(er) golang.org/x/sys/unix package - Removed non-functioning Daemonize method
9 lines
108 B
Go
9 lines
108 B
Go
package main
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func Daemonize() error {
|
|
return errors.New("Not implemented on OSX")
|
|
}
|