mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 13:47:39 +03:00
Dropping privileges doesn't work reliably on MacOS
This commit is contained in:
parent
abfd195e51
commit
b6b7ed3a67
2 changed files with 12 additions and 1 deletions
11
dnscrypt-proxy/privilege_darwin.go
Normal file
11
dnscrypt-proxy/privilege_darwin.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"github.com/jedisct1/dlog"
|
||||
)
|
||||
|
||||
func (proxy *Proxy) dropPrivilege(userStr string, fds []*os.File) {
|
||||
dlog.Warn("Dropping privileges doesn't work reliably on MacOS")
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
// +build !windows,!linux
|
||||
// +build !windows,!linux,!darwin
|
||||
|
||||
package main
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue