File tree 3 files changed +8
-9
lines changed
Userland/Libraries/LibSQL
3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -39,14 +39,6 @@ Environment=TERM=xterm
39
39
KeepAlive =true
40
40
SystemModes =text
41
41
42
- [SQLServer]
43
- Socket =/tmp/portal/sql
44
- SocketPermissions =600
45
- Priority =low
46
- Lazy =true
47
- KeepAlive =true
48
- User =anon
49
-
50
42
[CrashDaemon]
51
43
KeepAlive =true
52
44
User =anon
Original file line number Diff line number Diff line change @@ -77,6 +77,13 @@ Lazy=true
77
77
MultiInstance =true
78
78
AcceptSocketConnections =true
79
79
80
+ [SQLServer]
81
+ Socket =/tmp/user/%uid/portal/sql
82
+ SocketPermissions =600
83
+ Priority =low
84
+ Lazy =true
85
+ KeepAlive =true
86
+
80
87
[LaunchServer]
81
88
Socket =/tmp/user/%uid/portal/launch
82
89
SocketPermissions =600
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ namespace SQL {
16
16
class SQLClient
17
17
: public IPC::ConnectionToServer<SQLClientEndpoint, SQLServerEndpoint>
18
18
, public SQLClientEndpoint {
19
- IPC_CLIENT_CONNECTION (SQLClient, " /tmp/portal/sql" sv)
19
+ IPC_CLIENT_CONNECTION (SQLClient, " /tmp/user/%uid/ portal/sql" sv)
20
20
virtual ~SQLClient () = default ;
21
21
22
22
Function<void (int , String const &)> on_connected;
You can’t perform that action at this time.
0 commit comments