aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/service/ipc_client.go
diff options
context:
space:
mode:
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