aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/app.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/app/app.go')
-rw-r--r--internal/app/app.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/app/app.go b/internal/app/app.go
index 9d1165f4..50d59da9 100644
--- a/internal/app/app.go
+++ b/internal/app/app.go
@@ -1,6 +1,7 @@
package app
import (
+ "net"
"os/exec"
"sync"
)
@@ -18,6 +19,8 @@ type app struct {
seal *appSeal
// underlying fortified child process
cmd *exec.Cmd
+ // wayland connection if wayland mediation is enabled
+ wayland *net.UnixConn
// error returned waiting for process
wait error