aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/service/ipc_client.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-04-02 07:33:37 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2019-04-02 07:33:37 +0200
commitcee277ca104701300c506fd5f689b6817481c72a (patch)
treeb8f29db3d80017d3d4b0199f1b0cfc312d69dd81 /service/ipc_client.go
parentui: remove spacer that was only needed in a container other than ScrollView (diff)
downloadwireguard-windows-cee277ca104701300c506fd5f689b6817481c72a.tar.xz
wireguard-windows-cee277ca104701300c506fd5f689b6817481c72a.zip
ringlogger: give unprivd access via inheritable mapping handle
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r--service/ipc_client.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/service/ipc_client.go b/service/ipc_client.go
index 7e260ea7..e6295b91 100644
--- a/service/ipc_client.go
+++ b/service/ipc_client.go
@@ -141,11 +141,6 @@ func IPCClientQuit(stopTunnelsOnQuit bool) (bool, error) {
return alreadyQuit, rpcClient.Call("ManagerService.Quit", stopTunnelsOnQuit, &alreadyQuit)
}
-func IPCClientLogFilePath() (string, error) {
- var path string
- return path, rpcClient.Call("ManagerService.LogFilePath", uintptr(0), &path)
-}
-
func IPCClientRegisterTunnelChange(cb func(tunnel *Tunnel, state TunnelState, err error)) *TunnelChangeCallback {
s := &TunnelChangeCallback{cb}
tunnelChangeCallbacks[s] = true