Mercurial > hg > rlgwebd
view rlgwebd-stop @ 213:08665c56c6a0 default tip
Fix race condition related to watching DGL games.
It's possible for a dgamelaunch game to end and cause rlgwebd to stop watching
it before rlgwebd has started watching it.
author | John "Elwin" Edwards |
---|---|
date | Sun, 16 Aug 2020 20:56:18 -0400 |
parents | f06f2d1a5035 |
children |
line wrap: on
line source
#!/usr/bin/env node var net = require('net'); var sockpath = "/var/run/rlgwebd/rlgwebd.sock"; var sock = new net.Socket(); sock.on('error', function (err) { console.log("Cannot connect to " + sockpath + ", rlgwebd already stopped."); process.exit(0); }); sock.connect(sockpath, function () { sock.on('close', function (had_error) { if (process.argv[2] == "debug") console.log("Control socket closed"); }); sock.write("quit\n"); });